Advertisement
doge57589

Rat script

Jul 10th, 2020
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. local mouse = game:GetService("Players").LocalPlayer:GetMouse()
  2. mouse.KeyDown:connect(function(key)
  3. if key == 'f' then
  4.  
  5.  
  6. local damage = 101
  7. local humanoid = mouse.Target
  8. local bool = false
  9. if humanoid.Parent:FindFirstChild("Humanoid") then
  10.  
  11. local Remote = game:GetService("ReplicatedStorage").GunRemotes.TakeDamage
  12. Remote:FireServer(humanoid.Parent.Humanoid, damage, bool)
  13. end
  14. end
  15. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement