Prephy

hahaboom

Apr 13th, 2021 (edited)
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.51 KB | None | 0 0
  1. player = owner
  2. remote = Instance.new("RemoteEvent",player.Backpack) remote.Name="hahaboom"
  3.  
  4. NLS([[
  5. player = game.Players.LocalPlayer
  6. mouse = player:GetMouse()
  7. remote = player.Backpack:waitForChild("hahaboom")
  8.  
  9. mouse.Button1Down:Connect(function(WHAT)
  10. remote:FireServer(mouse.Hit)
  11. end)
  12. ]],owner.Backpack)
  13.  
  14. remote.OnServerEvent:Connect(function(pl, pos)
  15. local booms = Instance.new("Explosion",workspace)  booms.Position=pos.Position booms.BlastRadius = 10
  16.     booms.BlastPressure = 99999999 booms.Visible=true
  17. end)
Add Comment
Please, Sign In to add comment