Advertisement
Marcsosa

Untitled

Mar 9th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. mouse = plr:GetMouse()
  2. --This has to be a local script.
  3. function onClicked()
  4. local x = Instance.new("Explosion", Workspace)--This means create new explosion in the workspace.
  5. x.Position = mouse.Hit.p
  6. x.BlastRadius = 5
  7. x.BlastPressure = 99999999999
  8. end
  9. mouse.Button1Down:connect(onClicked)
  10. -- how to use? Just Left Click it gonna explode on u click XD
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement