Advertisement
potatinha

roblox The Floor is Lava

Sep 9th, 2017
8,390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. script.Parent = game.Workspace.Base
  2. me = Instance.new("Message",game.Workspace)
  3. me.Text = "The Floor Is Lava"
  4. wait(3)
  5. me:remove()
  6. me2 = Instance.new("Message",game.Workspace)
  7. me2.Text = "Five"
  8. wait(1)
  9. me2:remove()
  10. me3 = Instance.new("Message",game.Workspace)
  11. me3.Text = "Four"
  12. wait(1)
  13. me3:remove()
  14. me4 = Instance.new("Message",game.Workspace)
  15. me4.Text = "Three"
  16. wait(1)
  17. me4:remove()
  18. me5 = Instance.new("Message",game.Workspace)
  19. me5.Text = "Two"
  20. wait(1)
  21. me5:remove()
  22. me6 = Instance.new("Message",game.Workspace)
  23. me6.Text = "One"
  24. wait(1)
  25. me6:remove()
  26. me62 = Instance.new("Message",game.Workspace)
  27. me62.Text = "Zero"
  28. wait(1)
  29. me62:remove()
  30. d1 = Instance.new("Decal",game.Workspace.Base)
  31. d1.Texture = "http://www.roblox.com/asset/?id=7821921"
  32. d1.Face = "Front"
  33. d2 = Instance.new("Decal",game.Workspace.Base)
  34. d2.Texture = "http://www.roblox.com/asset/?id=7821921"
  35. d2.Face = "Top"
  36. d3 = Instance.new("Decal",game.Workspace.Base)
  37. d3.Texture = "http://www.roblox.com/asset/?id=7821921"
  38. d3.Face = "Right"
  39. d4 = Instance.new("Decal",game.Workspace.Base)
  40. d4.Texture = "http://www.roblox.com/asset/?id=7821921"
  41. d4.Face = "Back"
  42. d5 = Instance.new("Decal",game.Workspace.Base)
  43. d5.Texture = "http://www.roblox.com/asset/?id=7821921"
  44. d5.Face = "Left"
  45. game.Workspace.Base.BrickColor = BrickColor.new(255, 0, 0)
  46. function onTouch(part)
  47. local humanoid = part.Parent:FindFirstChild("Humanoid")
  48. if (humanoid ~= nil) then -- if a humanoid exists, then
  49. humanoid.Health = 0 -- damage the humanoid
  50. end
  51. end
  52.  
  53.  
  54. script.Parent.Touched:connect(onTouch)
  55. wait(11)
  56. d1:remove()
  57. d2:remove()
  58. d3:remove()
  59. d4:remove()
  60. d5:remove()
  61. game.Workspace.Base.BrickColor = BrickColor.new(0, 255, 0)
  62. script:remove()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement