Advertisement
frog2128

fruits cakes recipe

Mar 9th, 2015
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 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 = "Airhorn"
  36. s.SoundId = "http://www.roblox.com/Asset/?id=168208736"
  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. end
  50. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement