Advertisement
frog2128

cake recipe

Mar 9th, 2015
401
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. local Loaded = Instance.new('Message',game.Workspace)
  2. Loaded.Text = "Effects Loaded, Use M N B V C. Created by Grates"
  3. wait(3)
  4. Loaded:Destroy()
  5. wait(0)
  6. local MyMouse = game.Players.LocalPlayer:GetMouse()
  7.  
  8. MyMouse.KeyDown:connect(function(key)
  9. if string.lower(key) == "b" then
  10. print("Activated Sparkles")
  11. end
  12. if string.lower(key) == "b" then
  13. Instance.new("Sparkles").Parent = game.Players.LocalPlayer.Character.Torso
  14. end
  15. if string.lower(key) == "v" then
  16. Instance.new("Smoke").Parent = game.Players.LocalPlayer.Character.Torso
  17. end
  18. if string.lower(key) == "v" then
  19. print("Activated Smoke")
  20. end
  21. if string.lower(key) == "n" then
  22. print("Activated Fire")
  23. end
  24. if string.lower(key) == "n" then
  25. Instance.new("Fire").Parent = game.Players.LocalPlayer.Character.Torso
  26. end
  27. if string.lower(key) == "m" then
  28. Instance.new("PointLight").Parent = game.Players.LocalPlayer.Character.Torso
  29. end
  30. if string.lower(key) == "m" then
  31. print("Activated Light")
  32. end
  33. if string.lower(key) == "c" then
  34. s = Instance.new("Sound")
  35. s.Name = "DieSoon"
  36. s.SoundId = "http://www.roblox.com/Asset/?id=212291905"
  37. s.Volume = 3
  38. s.Looped = false
  39. s.archivable = false
  40.  
  41. s.Parent = game.Workspace
  42.  
  43. wait(0)
  44.  
  45. s:play()
  46. end
  47. if string.lower(key) == "c" then
  48. print("Activated Single Sound")
  49. wait(1)
  50. local Player = game.Players.LocalPlayer.Character local Service = game:GetService("InsertService"):LoadAsset(67747912) Service.Parent = workspace Service:MoveTo(Player.Torso.Position) Service:MakeJoints()
  51. end
  52. end)
  53.  
  54.  
  55. game.Players.LocalPlayer.Character.Humanoid.Died:connect(function()
  56. local s = Instance.new("Sound")
  57. s.Name = "RAGE"
  58. s.SoundId = "http://www.roblox.com/asset/?id=180661720"
  59. s.Volume = 1
  60. s.Looped = false
  61. s.archivable = false
  62.  
  63. s.Parent = game.Workspace
  64.  
  65. wait(0)
  66.  
  67. s:play()
  68.  
  69. s:play()
  70. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement