Advertisement
Axprotss

My script test#2

Aug 15th, 2022
1,016
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | None | 0 0
  1. local NewPart = Instance.new('Part')
  2. local Explode = Instance.new('Explosion')
  3.  
  4. --main
  5.  
  6. NewPart.Position = Vector3.new(-53.561,7,32.296)
  7. NewPart.Size = Vector3.new(4, 4, 4)
  8. NewPart.Material = Enum.Material.ForceField
  9. NewPart.BrickColor = BrickColor.new('Really red')
  10.  
  11.  
  12. NewPart.Touched:Connect(function()
  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