Advertisement
Eliquimzzz

Auto clicker script by ArceusModz

Jan 20th, 2022
1,588
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. game:GetService("StarterGui"):SetCore("SendNotification",{
  2. Title = "Creds to ArceusModz",
  3. Text = "Sub to ArceusModz And Eliaquimzzz too",
  4.  
  5. Button1 = "Sure",
  6. Button2 = "No lol",
  7. Duration = 30
  8. })
  9.  
  10.  
  11. --Subscribe To ArceusMODZ--
  12. -- If Any Error Happened Let me Know--
  13.  
  14. --// Setting \--
  15. local range = 1000
  16.  
  17. --// Variable \--
  18. local player = game:GetService("Players").LocalPlayer
  19.  
  20. --// Script \--
  21. game:GetService("RunService").RenderStepped:Connect(function()
  22. local p = game.Players:GetPlayers()
  23. for i = 2, #p do local v = p[i].Character
  24. if v and v:FindFirstChild("Humanoid") and v.Humanoid.Health > 0 and v:FindFirstChild("HumanoidRootPart") and player:DistanceFromCharacter(v.HumanoidRootPart.Position) <= range then
  25. local tool = player.Character and player.Character:FindFirstChildOfClass("Tool")
  26. if tool and tool:FindFirstChild("Handle") then
  27. tool:Activate()
  28. for i,v in next, v:GetChildren() do
  29. if v:IsA("BasePart") then
  30. firetouchinterest(tool.Handle,v,0)
  31. firetouchinterest(tool.Handle,v,1)
  32. end
  33. end
  34. end
  35. end
  36. end
  37. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement