probanana

Drift Paradise Autofarm

Mar 13th, 2023
762
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. local args = {
  2. [1] = "500kfavs"
  3. }
  4.  
  5. game:GetService("ReplicatedStorage").InsertCode:InvokeServer(unpack(args))
  6. wait(1)
  7. local args = {
  8. [1] = "190klikes"
  9. }
  10.  
  11. game:GetService("ReplicatedStorage").InsertCode:InvokeServer(unpack(args))
  12. wait(0.5)
  13. getgenv().Loop = true --change to false if you want to turn off autofarm
  14. local Part = Instance.new("Part")
  15. Part.Position = Vector3.new(0,5000,0)
  16. Part.Anchored = true
  17. Part.CanCollide = true
  18. Part.Color = Color3.new(27, 42, 53)
  19. Part.Material = "Pavement"
  20. Part.Parent = Workspace
  21. Part.Size = Vector3.new(9e9,0,9e9)
  22. while getgenv().Loop do
  23. local Player = game.Players.LocalPlayer
  24. local Workspace = game:GetService("Workspace")
  25. local vehicle = Workspace:FindFirstChild(Player.Name .. "Car",true)
  26. local destinationCFrame = CFrame.new(0,5004,0)
  27. local teleportDelay = 1.5
  28. game:GetService("VirtualInputManager"):SendKeyEvent(true, Enum.KeyCode.W, false, game)
  29. function teleportToDestination()
  30. vehicle:SetPrimaryPartCFrame(destinationCFrame)
  31. wait(teleportDelay)
  32. end
  33.  
  34. teleportToDestination()
  35. end
Add Comment
Please, Sign In to add comment