Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Lego script inspired by a video
- --made by basstracker1970
- lego = Instance.new("Part")
- lego.BrickColor = BrickColor.new("Really red")
- lego.Parent = game.Workspace
- lego.Touched:connect(function(hit)
- hit.Parent.Head.face.Texture = "rbxassetid://746538382"
- sound = Instance.new("Sound")
- sound.SoundId = "rbxassetid://1102543935"
- sound.Parent = game.Workspace
- sound:Play()
- wait(6)
- explode = Instance.new("Explosion",game.Workspace)
- explode.Position = hit.Parent.Head.Position
- explode.BlastRadius = 57
- explode.BlastPressure = 600000
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement