The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Driving Empire [BETA] script pastebin roblox
By LINK GAME on 2024-09-19 08:00 am | Syntax: LUA | Views: 16



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local Player = game.Players.LocalPlayer
  2. local Character = Player.Character
  3. local Humanoid = Character:FindFirstChildWhichIsA("Humanoid")
  4.  
  5. _G.AutoFarm = true
  6.  
  7. local Refill_Teleport = game.Workspace:FindFirstChild("Game"):FindFirstChild("PresentEvent"):FindFirstChild("Pickup")
  8. local DropOffs = game.Workspace:FindFirstChild("Game"):FindFirstChild("PresentEvent"):FindFirstChild("Dropoffs"):GetChildren()
  9.  
  10. function makePlayerWalk()
  11.    Humanoid:Move(Vector3.new(-20, -20, 0))
  12.    Humanoid:Move(Vector3.new(-10, -10, 0))
  13.    Humanoid:Move(Vector3.new(-20, -20, 0))
  14.    Humanoid:Move(Vector3.new(-10, -10, 0))
  15. end
  16.  
  17. function findDropOff()
  18.    for i,v in pairs(DropOffs) do
  19.        if v.Main.Beam.Enabled == true then
  20.            Character.HumanoidRootPart.CFrame = CFrame.new(v.Position)
  21.        end
  22.    end
  23. end
  24.  
  25. while _G.AutoFarm == true do
  26.    wait()
  27.    Character.HumanoidRootPart.CFrame = CFrame.new(Refill_Teleport.Position)
  28.    wait(7)
  29.    makePlayerWalk()
  30.    wait(20)
  31.    findDropOff()
  32. end