SHOW:
|
|
- or go back to the newest paste.
1 | plr = game.Players.LocalPlayer | |
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 |
7 | + | x.BlastRadius = 1000000000000000000000000000000000000 |
8 | x.BlastPressure = 9e9 | |
9 | - | end |
9 | + | |
10 | -- how to use? Just Left Click it gonna explode on u click XD |