imodex

Animal Simulator Script

Oct 2nd, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. _G.loopkill = true -- false to stop the script
  2.  
  3. while _G.loopkill do
  4. wait()
  5. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  6. pcall(function()
  7. if v ~= game:GetService("Players").LocalPlayer then
  8. local A_1 = v.Character.Humanoid
  9. local Event = game:GetService("ReplicatedStorage").OnSuccessfulHit
  10. Event:FireServer(A_1)
  11. end
  12. end)
  13. end
  14. end
Add Comment
Please, Sign In to add comment