Advertisement
memberhero

Rage Lego script

Dec 15th, 2017
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. --Lego script inspired by a video
  2. --made by basstracker1970
  3. lego = Instance.new("Part")
  4. lego.BrickColor = BrickColor.new("Really red")
  5. lego.Parent = game.Workspace
  6. lego.Touched:connect(function(hit)
  7. hit.Parent.Head.face.Texture = "rbxassetid://746538382"
  8. sound = Instance.new("Sound")
  9. sound.SoundId = "rbxassetid://1102543935"
  10. sound.Parent = game.Workspace
  11. sound:Play()
  12. wait(6)
  13. explode = Instance.new("Explosion",game.Workspace)
  14. explode.Position = hit.Parent.Head.Position
  15. explode.BlastRadius = 57
  16. explode.BlastPressure = 600000
  17. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement