Advertisement
rexscripts

Firefighter simulator script – (OP Tool)

Mar 3rd, 2022
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. local Tool = game.Players.LocalPlayer.Backpack:FindFirstChildWhichIsA('Tool') or game.Players.LocalPlayer.Character:FindFirstChildWhichIsA('Tool')
  2.  
  3. -- custom tool stats
  4. if Tool then
  5. local Damage = Tool.Configuration.Damage
  6. local Distance = Tool.Configuration.Distance
  7. local FuelUse = Tool.Configuration.FuelUse
  8. local HitRadius = Tool.Configuration.HitRadius
  9.  
  10. Damage.Value = 9999999999
  11. Distance.Value = 9999
  12. FuelUse.Value = -9999
  13. HitRadius.Value = 999
  14. end
  15.  
  16. -- auto rebirth
  17. coroutine.wrap(function()
  18. while task.wait(1) do
  19. game:GetService("ReplicatedStorage").Remotes.RequestRebirth:InvokeServer()
  20. end
  21. end)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement