Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. plr = game.Players.scorpion67890
  2. mouse = plr:GetMouse()
  3. --This has to be a local script.
  4. function onClicked()
  5. local x = Instance.new("Explosion", Workspace)--This means create new explosion in the workspace.
  6. x.Position = mouse.Hit.p
  7. x.BlastRadius = 15
  8. x.BlastPressure = 9e9
  9. end
  10. mouse.Button1Down:connect(onClicked)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement