Gostrondude

Untitled

Nov 26th, 2017
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. mouse = game.Players.LocalPlayer:getMouse()
  2. script.Parent.Activated:connect(function()
  3. local explosion = Instance.new("Explosion", workspace)
  4. explosion.Position = mouse.hit.p
  5. explosion.BlastRadius = 100 --originally 4
  6. end)
  7. script.Parent.Equipped:connect(function()
  8. Instance.new("ForceField", script.Parent.Parent)
  9. end)
  10. script.Parent.Unequipped:connect(function()
  11. script.Parent.Parent.Parent.Character.ForceField:Destroy()
  12. end)
Advertisement
Add Comment
Please, Sign In to add comment