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