From venuslock, 1 Week ago, written in Lua.
Embed
  1. --SCRIPT 1
  2. --auto farm crates
  3. --teleport to players
  4. --auto kill
  5. loadstring(game:HttpGet(('https://pastefy.app/fHcvAsCS/raw'),true))()
  6.  
  7.  
  8. --SCRIPT 2
  9. -- lol this script is made temporary for the in game event
  10. -- so dont expect any good quality
  11.  
  12. game:GetService("Players").LocalPlayer.Idled:connect(function()
  13.         game:GetService("VirtualUser"):ClickButton2(Vector2.new())
  14. end)
  15.  
  16.  
  17. game:GetService("Players").LocalPlayer.PlayerScripts:WaitForChild("ClientManager",20):Destroy() -- to prevent from in game anti afk
  18. game:GetService("Players").LocalPlayer.PlayerGui:WaitForChild("UI",20):Destroy()
  19. game:GetService("Players").LocalPlayer.PlayerGui:WaitForChild("PopUp",20):Destroy()
  20. print("script started omGGG!!!!") -- pro debug real
  21.  
  22. local Char = Game.Players.LocalPlayer.Character or game.Players.LocalPlayer.CharacterAdded:Wait()
  23. local Humanoid = Char:FindFirstChildOfClass("Humanoid") or Char:WaitForChild("Humanoid",20)
  24. game:GetService("ReplicatedStorage").RemoteEvents.Spectate:FireServer()
  25. function GoToSafeSpot()
  26. local Char = Game.Players.LocalPlayer.Character
  27. local PFS = game:GetService("PathfindingService")
  28. local function getPath(destination)
  29. local path = PFS:CreatePath()
  30.         path:ComputeAsync(Char.HumanoidRootPart.Position, destination)
  31.         return path
  32. end
  33.  
  34. local function pathFindTo(destination)
  35.         local path = getPath(destination)
  36.        
  37.                 for i,waypoint in pairs(path:GetWaypoints()) do
  38.  
  39.                         if waypoint.Action == Enum.PathWaypointAction.Jump then
  40.                                 Humanoid.Jump =true
  41.                         end
  42.  
  43.                         Humanoid:MoveTo(waypoint.Position)
  44.                         Humanoid.MoveToFinished:Wait()
  45.  
  46.                 end
  47.                 end
  48.         pathFindTo(Vector3.new(473.946533203125, 3.5, 66.75997161865234))
  49. end
  50. task.spawn(function()
  51. GoToSafeSpot()
  52. while task.wait(5) do
  53.     task.spawn(function()
  54. GoToSafeSpot()
  55. end)
  56. end
  57. end)
  58. workspace.ChildAdded:Connect(function(Child)
  59.         if Child.Name == "ArcadeBunnyCrate" then
  60.                 print("Trying to get it")
  61.                 repeat
  62.                 print("Tried")
  63.                 task.spawn(function()
  64.                 for i,v in pairs(Child:GetChildren()) do
  65.                         if v:IsA("Part") or v:IsA("BasePart") or v:IsA("MeshPart") then
  66.                                         v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  67.                 end
  68.                 end
  69.         end)
  70.                         task.wait()
  71.                         until Child == nil or task.wait(2.5)
  72.         end
  73. end)

captcha