Advertisement
Animescapetower

Untitled

Mar 3rd, 2018
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. --[[
  2.  
  3. ANIME CUBE DON'T TRUST THE ANIMES
  4. ]]
  5. character = game.Players.LocalPlayer.Character
  6. local player = game.Players.LocalPlayer
  7. local humanoid = player.Character.Humanoid
  8. local mouse = player:GetMouse()
  9.  
  10. local model = Instance.new("Model")
  11. model.Parent = character
  12.  
  13. local p = Instance.new("Part")
  14. p.Name = "Potion"
  15. p.Transparency = 0
  16. p.FormFactor = Enum.FormFactor.Custom
  17. p.Locked = true
  18. p.CanCollide = false
  19. p.Size = Vector3.new(2,2,2)
  20. p.TopSurface = Enum.SurfaceType.Smooth
  21. p.BottomSurface = Enum.SurfaceType.Smooth
  22. p.Anchored = true
  23. p.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0) -- So it won't weigh down the player
  24. p.Parent = model
  25. local p2 = Instance.new("Part")
  26. p2.Name = "Potion2"
  27. p2.Transparency = 0.5
  28. p2.Material = Enum.Material.Neon
  29. p2.FormFactor = Enum.FormFactor.Custom
  30. p2.BrickColor = BrickColor.Red()
  31. p2.CanCollide = false
  32. p2.Locked = true
  33. p2.Size = Vector3.new(6,6,6)
  34. p2.TopSurface = Enum.SurfaceType.Smooth
  35. p2.BottomSurface = Enum.SurfaceType.Smooth
  36. p2.Anchored = true
  37. p2.CustomPhysicalProperties = PhysicalProperties.new(0,0,0,0,0) -- So it won't weigh down the player
  38. p2.Parent = model
  39.  
  40. fire = Instance.new("Fire")
  41. fire.SecondaryColor = character.Head.Color
  42. fire.Color = character.Torso.Color
  43. fire.Size = 3
  44. fire.Heat = 20
  45. fire.Parent = p2
  46.  
  47. sound = Instance.new("Sound")
  48. sound.PlaybackSpeed = 1
  49. sound.Volume = 4
  50. sound.SoundId = "rbxassetid://0"--normal sound - 1343510795
  51. sound.MaxDistance = 150
  52. sound.EmitterSize = 200
  53. sound.Parent = model
  54. sound:Play()
  55. sound.Looped = true
  56.  
  57. mouse.KeyDown:connect(function(key)
  58. if key == "x" then-- Press x for sound
  59. sound.SoundId = "rbxassetid://914274168"
  60. elseif key == "b" then--Change sound - key b
  61. sound.SoundId = "rbxassetid://203731322"
  62. elseif key == "n" then--Change sound - key n
  63. sound.SoundId = "rbxassetid://211179158"
  64. elseif key == "r" then--Change sound - key r
  65. sound.SoundId = "rbxassetid://219406628"
  66. elseif key == "q" then--Change pitch - key q
  67. sound.Pitch = sound.Pitch + 0.1
  68. elseif key == "m" then--Mute - key m
  69. sound.Volume = 0
  70.  
  71. elseif key == "h" then --Lower Pitch - key n
  72. sound.Pitch = sound.Pitch - 0.1
  73. elseif key == "v" then --Change volume - key v
  74. sound.Volume = sound.Volume + 1
  75. elseif key == "c" then --Lower Volume - key c
  76. sound.Volume = sound.Volume - 1
  77. elseif key == "z" then --Normal Everything - key z
  78. sound.Pitch = 1
  79. sound.Volume = 4
  80. sound.SoundId = "rbxassetid://914274168"
  81.  
  82. elseif key == "h" then --Unmute - key h
  83. sound.Volume = 4
  84.  
  85.  
  86.  
  87. elseif key == "e" then
  88. if player.Name == "FuntimeArtic" or "Animescapetower" then
  89. sound.SoundId = "rbxassetid://1343510795"
  90.  
  91.  
  92.  
  93.  
  94.  
  95. end
  96. end
  97. end)
  98.  
  99. while true do
  100. wait(0.03)
  101. p2.CFrame = p2.CFrame * CFrame.fromEulerAnglesXYZ(0, math.pi/200, 0)
  102. p.CFrame = p.CFrame * CFrame.fromEulerAnglesXYZ(0, math.pi/400, 0)
  103. end
  104.  
  105. --[[ Help and the creators<
  106. <Made by anime
  107. <DON'T CHANGE ANYTHINGS - Well you can just take the risk
  108. <Don't claim this to be yours
  109.  
  110. AND DON'T CALL THIS THE ANIME CUBE lol
  111. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement