Advertisement
madzachary13

ROBLOX HUGE EXPLOSION SCRIPT CLICK TO EXPLODE

Feb 25th, 2020
5,588
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. plr = game.Players.LocalPlayer
  2. mouse = plr:GetMouse()
  3. function onClicked()
  4. local x = Instance.new("Explosion", workspace)
  5. x.Position = mouse.Hit.p
  6. x.BlastRadius = 167
  7. x.BlastPressure = 9e9
  8. end
  9. mouse.Button1Down:connect(onClicked)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement