Categories > Exploiting > Scripts >
scripts for anything that isn't patched
Posted
Any speed kill aura or infinity health scripts please
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
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post