Advertisement
Axprotss

My script test

Aug 15th, 2022
975
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | Gaming | 0 0
  1. local NewPart = Instance.new('Part')
  2. local Explode = Instance.new('Explosion')
  3.  
  4. --main
  5.  
  6. NewPart.Name = "donttouchme"
  7. NewPart.Size = Vector3.new(4, 4, 4)
  8. NewPart.Material = Enum.Material.ForceField
  9. NewPart.BrickColor = BrickColor.new('Really red')
  10.  
  11.  
  12. game.Workspace.donttouchme.Touched:Connect(function()-- explode
  13.     Explode.Position = NewPart.Position
  14.     Explode.Parent = game.Workspace
  15.     Explode.BlastPressure = 10000
  16.     Explode.BlastRadius = 10
  17. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement