Advertisement
Nakatoshi045

Flowey Message

Jan 17th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. game.Lighting.Ambient = Color3.new(0,0,0)
  2. local s = Instance.new("Sound")
  3.  
  4. s.Name = "Sound"
  5. s.SoundId = "http://www.roblox.com/asset/?id=317393485"
  6. s.Volume = 0.8
  7. s.Pitch = 0.9
  8. s.Looped = true
  9. s.archivable = false
  10.  
  11. s.Parent = game.Workspace
  12.  
  13. wait()
  14.  
  15. s:play()
  16.  
  17. local s = Instance.new("Sound")
  18.  
  19. s.Name = "Sound"
  20. s.SoundId = "http://www.roblox.com/Undertale-Floweys-Theme-item?id=317393485"
  21. s.Volume = 1
  22. s.Pitch = 0.9
  23. s.Looped = true
  24. s.archivable = false
  25.  
  26. s.Parent = game.Workspace
  27.  
  28. wait()
  29.  
  30. s:play()
  31.  
  32. print ("Loop cycle start")
  33. game.Lighting.TimeOfDay = "18:00:00"
  34. wait()
  35. while true do
  36. wait(12)
  37. msg = Instance.new("Message")
  38. msg.Parent = game.Workspace
  39. msg.Text = "HOWDY!"
  40. wait(6)
  41. msg:remove()
  42. wait(3)
  43. msg = Instance.new("Message")
  44. msg.Parent = game.Workspace
  45. msg.Text = "IM FLOWEY!"
  46. wait(3)
  47. msg:remove()
  48. wait(2)
  49. msg = Instance.new("Message")
  50. msg.Parent = game.Workspace
  51. msg.Text = "IN THIS GAME... IT'S KILL OR BE KILLED!"
  52. wait(6)
  53. msg:remove()
  54. wait(3)
  55. msg = Instance.new("Message")
  56. msg.Parent = game.Workspace
  57. msg.Text = "YOU WILL BE IN HELL!"
  58. wait(3)
  59. msg:remove()
  60. wait(2)
  61. msg = Instance.new("Message")
  62. msg.Parent = game.Workspace
  63. msg.Text = "I'LL TEAR YOU INTO BLOODY PIECES!"
  64. wait(3)
  65. msg:remove()
  66. wait(2)
  67. msg = Instance.new("Message")
  68. msg.Parent = game.Workspace
  69. msg.Text = "I'LL KILL YOU!"
  70. wait(6)
  71. msg:remove()
  72. wait(3)
  73. msg = Instance.new("Message")
  74. msg.Parent = game.Workspace
  75. msg.Text = "MUHAWUHAUHAHHAHWA!"
  76. wait(2)
  77. msg:remove()
  78. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement