Prison Life Script Kill Aura

Posted on

There are a lot of town and city genre games which are about criminals and police that you can find in Roblox. One of them is Prison Life. Do you like playing this game? Some of you may have tried to play this game and now you need the script for killing aura. Can we find it?

Prison Life is a game in Roblox which was created by Aesthetical on May 2nd, 2014. This game is able to be played by 24 players and now it has been visited more than 1.1 billion times. This game has also been favorited more than 3.7 million times and liked more than 760k times. This game has undergone many changes since it has been in version 2.0. For your information, this game had always topped the front page during v2.0 in 2016 and early 2017 with an average of 10,000 to 20,000 or even 50,000 players per day.


If you play this game, you will have a role. There are three teams in the game and each team has goal which is different. If you are a prisoner, you will have to escape the prison. A lot of ways to escape from brute force to sneaking out of your cell at night. If you become a guard, you have to prevent prisoners from escaping, killing the player or their colleagues or other prisoners. Also, you can arrest the escaped prisoners which are known as criminals. If you become criminal, you can connect to the Prisoner team. This team is unlike the other teams because for being this team you are not able to choose this one as an option when you enter a server. If you want to be a criminal, you have to be prisoner and then escape or touch the criminal spawns as a Guard.

When we talk about this game, you may need the script that can give you kill aura in Prison Life. Based on v3rmillion.net, there is a thread about this. You can have kill aura by using this simple script in Prison Life v2. The controls which are used:

  • K : Toggle Kill Aura on and off
  • Shift : Sprint in the game to run close enough to people to be able to destroy them
  • ‘/e dance’ : The Roblox emote that you are able to do while you are destroying everyone around you

And here is the script code:

mainRemotes = game.ReplicatedStorage

meleeRemote = mainRemotes[‘meleeEvent’]

killAura = true

contextactionservice = game.ContextActionService

function toggleKillAura(actionName, inputState, inputObject)

print(‘Doing the action : ‘ .. actionName)

if inputState == Enum.UserInputState.Begin then

if killAura == true then

killAura = false

else

killAura = true

end

end

end

contextactionservice:BindAction(‘ToggleKillAura’, toggleKillAura, false, Enum.KeyCode.K)

while wait() do

if killAura == true then

for _, plr in pairs (game:GetService(‘Players’):GetChildren()) do

if plr.Name   ̴= game.Players.LocalPlayer.Name then

meleeRemote:FirstServer(plr)

end

end

end

end

You are able to check this script in v3rmillion.net in the thread of Prison Life Instant Kill Aura. In Youtube, there are also some videos which show you how to have Kill Aura and in the description section usually there are links to where you can get the script.

Leave a Reply

Your email address will not be published. Required fields are marked *