Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- mouse = game.Players.LocalPlayer:getMouse()
- script.Parent.Activated:connect(function()
- local explosion = Instance.new("Explosion", workspace)
- explosion.Position = mouse.hit.p
- explosion.BlastRadius = 100 --originally 4
- end)
- script.Parent.Equipped:connect(function()
- Instance.new("ForceField", script.Parent.Parent)
- end)
- script.Parent.Unequipped:connect(function()
- script.Parent.Parent.Parent.Character.ForceField:Destroy()
- end)
Advertisement
Add Comment
Please, Sign In to add comment