Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local NewPart = Instance.new('Part')
- local Explode = Instance.new('Explosion')
- --main
- NewPart.Name = "donttouchme"
- NewPart.Size = Vector3.new(4, 4, 4)
- NewPart.Material = Enum.Material.ForceField
- NewPart.BrickColor = BrickColor.new('Really red')
- game.Workspace.donttouchme.Touched:Connect(function()-- explode
- Explode.Position = NewPart.Position
- Explode.Parent = game.Workspace
- Explode.BlastPressure = 10000
- Explode.BlastRadius = 10
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement