GabeTheDog

Touch me to lag yourself! Script

Mar 13th, 2018
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. tbrick = Instance.new("Part")
  2. tbrick.Parent = workspace
  3. tbrick.Name = "IMTRIGGERED"
  4. tbrick.Size = Vector3.new(3,2,1)
  5. tbrick.Position = Vector3.new(math.random(-300,300),math.random(28,40),math.random(-300,300))
  6. tbrick.Material = "Pebble"
  7. tbrick.BrickColor = BrickColor.new("White")
  8. rt = Instance.new("Decal")
  9. rt.Parent = tbrick
  10. rt.Texture = "http://www.roblox.com/asset/?id=1015432183"
  11. function touchy(hit)
  12. if hit.Parent:FindFirstChild("Humanoid") then
  13. local scream = Instance.new("Sound")
  14. scream.Parent = tbrick
  15. scream.SoundId = "rbxassetid://606862847"
  16. scream:Play()
  17. wait(1)
  18. scream:Destroy()
  19. local explode = Instance.new("Explosion")
  20. explode.Parent = tbrick
  21. explode.Position = tbrick.Position
  22. local sound = Instance.new("Sound")
  23. sound.Parent = tbrick
  24. sound.SoundId = "rbxassetid://133680244"
  25. sound:Play()
  26. wait(10)
  27. sound:Destroy()
  28. end
  29. end
  30. tbrick.Touched:connect(touchy)
Add Comment
Please, Sign In to add comment