Assaulteer_Scripts

RoVille OP Autofarm & Infinite money Script

Apr 3rd, 2022
1,285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. -- Note: Recommed to use in private server! ( May affect your game permissions in public servers )
  2.  
  3. while wait(.75) do
  4. local myTaxi = nil
  5.  
  6. for i,v in pairs(game:GetService("Workspace").Taxis:GetDescendants()) do
  7. if v.Name == "DriveSeat" then
  8. if v:FindFirstChild("SeatWeld") then
  9. if v.SeatWeld.Part1.Parent.Name == game.Players.LocalPlayer.Name then
  10. myTaxi = v.Parent.Parent
  11. print("Found Taxi")
  12. end
  13. end
  14. end
  15. end
  16.  
  17. if myTaxi.Taxi.TaxiTarget.Value ~= Vector3.new(0, 0, 0) then
  18. myTaxi.Taxi:SetPrimaryPartCFrame(CFrame.new(myTaxi.Taxi.TaxiTarget.Value))
  19. else
  20. myTaxi.Taxi:SetPrimaryPartCFrame(CFrame.new(myTaxi.Taxi.TaxiRider.Pos.Value))
  21. end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment