Categories > Exploiting > Scripts >

scripts for anything that isn't patched

Posts: 1

Threads: 1

Joined: Jun, 2018

Reputation: 0

Posted

Any speed kill aura or infinity health scripts please
  • 0

NichIsBack

dickholeinurmom

Posts: 18

Threads: 3

Joined: Feb, 2018

Reputation: 0

Replied

prison life kill aura 


CONTROLS:
K - Toggle Kill Aura on and/or off
Shift - Sprint in the game to run close enough to people to destroy them
'/e dance' - The Roblox emote you can do while destroying everyone around you.

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:FireServer(plr)
end
end
end
end
  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )