Advertisement
aesnike

e

Oct 25th, 2024
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. _G.Farmd = true
  2. noclip = true
  3. game:GetService('RunService').Stepped:connect(function()
  4. if noclip then
  5. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  6. end
  7. end)
  8. plr = game.Players.LocalPlayer
  9. mouse = plr:GetMouse()
  10. mouse.KeyDown:connect(function(key)
  11.  
  12. if key == "o" then
  13. noclip = not noclip
  14. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  15. end
  16. end)
  17.  
  18. game.ReplicatedStorage.remotes.changeStartValue:FireServer()
  19. while _G.Farmd do
  20. wait(3)
  21. for a,b in pairs(game.Workspace:GetChildren()) do
  22. if b:IsA("Folder") then
  23. for c,d in pairs(b:GetChildren()) do
  24. if d:FindFirstChild("enemyFolder") then
  25. for e,f in pairs(d.enemyFolder:GetChildren()) do
  26. if f:FindFirstChild("HumanoidRootPart") and f:FindFirstChild("Humanoid") then
  27.  
  28. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(f.HumanoidRootPart.Position + Vector3.new(0,6,0),f.HumanoidRootPart.Position)
  29.  
  30.  
  31. wait()
  32.  
  33. end
  34. end
  35. end
  36. end
  37. end
  38. end
  39. end
  40. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement