Upscalefanatic3

[FE] Animations Script #2

Mar 12th, 2018
1,248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.34 KB | None | 0 0
  1. local Gui = Instance.new("ScreenGui", game.CoreGui)
  2. Gui.Name = "FE Animations"
  3. local Background = Instance.new("Frame",Gui)
  4. Background.Name = "Background"
  5. Background.Active = true
  6. Background.BackgroundColor3 = Color3.fromRGB(220,220,255)
  7. Background.Transparency = 0.3
  8. Background.BorderSizePixel = 5
  9. Background.Draggable = true
  10. Background.Position = UDim2.new(0,300,0,300)
  11. Background.Size = UDim2.new(0,345,0,190)
  12. local Title = Instance.new("TextLabel",Background)
  13. Title.BackgroundTransparency = 1
  14. Title.Position = UDim2.new(0,0,0,-80)
  15. Title.Size = UDim2.new(0,290,1,0)
  16. Title.Font = "SourceSansLight"
  17. Title.FontSize = "Size18"
  18. Title.Text = "FE Animations [by illremember]"
  19. Title.TextColor3 = Color3.fromRGB(20,20,25)
  20.  
  21. local Chop = Instance.new("TextButton", Background)
  22. Chop.Name = "Chop"
  23. Chop.BackgroundColor3 = Color3.fromRGB(20,20,20)
  24. Chop.BackgroundTransparency = 0.1
  25. Chop.BorderSizePixel = 0
  26. Chop.Position = UDim2.new(0,120,0,30)
  27. Chop.Size = UDim2.new(0,100,0,30)
  28. Chop.Font = "SourceSansItalic"
  29. Chop.FontSize = "Size18"
  30. Chop.Text = "Chop"
  31. Chop.TextColor3 = Color3.fromRGB(230,230,230)
  32. Chop.TextWrapped = true
  33.  
  34. local Dance = Chop:Clone()
  35. Dance.Name = "Dance"
  36. Dance.Parent = Background
  37. Dance.Position = UDim2.new(0,120,0,70)
  38. Dance.Text = "Dance"
  39.  
  40. local ArmsOut = Chop:Clone()
  41. ArmsOut.Name = "ArmsOut"
  42. ArmsOut.Parent = Background
  43. ArmsOut.Position = UDim2.new(0,10,0,110)
  44. ArmsOut.Text = "ArmsOut"
  45.  
  46. local Stab = Chop:Clone()
  47. Stab.Name = "Stab"
  48. Stab.Parent = Background
  49. Stab.Position = UDim2.new(0,10,0,30)
  50. Stab.Text = "Stab"
  51.  
  52. local SmellyRun = Chop:Clone()
  53. SmellyRun.Name = "SmellyRun"
  54. SmellyRun.Parent = Background
  55. SmellyRun.Position = UDim2.new(0,10,0,70)
  56. SmellyRun.Text = "SmellyRun"
  57.  
  58. local rando = Chop:Clone()
  59. rando.Name = "rando"
  60. rando.Parent = Background
  61. rando.Position = UDim2.new(0,120,0,110)
  62. rando.Text = "rando"
  63.  
  64. local hmm = Chop:Clone()
  65. hmm.Name = "hmm"
  66. hmm.Parent = Background
  67. hmm.Position = UDim2.new(0,120,0,150)
  68. hmm.Text = "hmm"
  69.  
  70. local Kick = Chop:Clone()
  71. Kick.Name = "Kick"
  72. Kick.Parent = Background
  73. Kick.Position = UDim2.new(0,10,0,150)
  74. Kick.Size = UDim2.new(0,100,0,30)
  75. Kick.Text = "Kick"
  76.  
  77. local Flying = Chop:Clone()
  78. Flying.Name = "Flying"
  79. Flying.Parent = Background
  80. Flying.Position = UDim2.new(0,230,0,30)
  81. Flying.Size = UDim2.new(0,100,0,30)
  82. Flying.Text = "Flying"
  83.  
  84. local Arms = Chop:Clone()
  85. Arms.Name = "Arms"
  86. Arms.Parent = Background
  87. Arms.Position = UDim2.new(0,230,0,70)
  88. Arms.Size = UDim2.new(0,100,0,30)
  89. Arms.Text = "Arms"
  90.  
  91. local Sword = Chop:Clone()
  92. Sword.Name = "Sword"
  93. Sword.Parent = Background
  94. Sword.Position = UDim2.new(0,230,0,110)
  95. Sword.Size = UDim2.new(0,100,0,30)
  96. Sword.Text = "Sword"
  97.  
  98. local Insane = Chop:Clone()
  99. Insane.Name = "Insane"
  100. Insane.Parent = Background
  101. Insane.Position = UDim2.new(0,230,0,150)
  102. Insane.Size = UDim2.new(0,100,0,30)
  103. Insane.Text = "Insane"
  104.  
  105. --
  106. local plr = game.Players.LocalPlayer
  107.  
  108. local mouse = plr:GetMouse()
  109.  
  110. lpc = game.Players.LocalPlayer.Character
  111.  
  112. weld1 = Instance.new("Weld")
  113.  
  114. Chop.MouseButton1Down:connect(function()
  115. local gg = mouse.Target
  116. if gg ~= nil then
  117. for i,v in pairs(game.Players:GetPlayers()) do
  118. AnimationId = "33169596"
  119. local Anim = Instance.new("Animation")
  120. Anim.AnimationId = "rbxassetid://"..AnimationId
  121. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  122. k:Play()
  123. k:AdjustSpeed(1)
  124. end
  125. end
  126. end)
  127.  
  128. Insane.MouseButton1Down:connect(function()
  129. local gg = mouse.Target
  130. if gg ~= nil then
  131. for i,v in pairs(game.Players:GetPlayers()) do
  132. AnimationId = "33796059"
  133. local Anim = Instance.new("Animation")
  134. Anim.AnimationId = "rbxassetid://"..AnimationId
  135. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  136. k:Play()
  137. k:AdjustSpeed(10000)
  138. end
  139. end
  140. end)
  141.  
  142. Arms.MouseButton1Down:connect(function()
  143. local gg = mouse.Target
  144. if gg ~= nil then
  145. for i,v in pairs(game.Players:GetPlayers()) do
  146. AnimationId = "33169583"
  147. local Anim = Instance.new("Animation")
  148. Anim.AnimationId = "rbxassetid://"..AnimationId
  149. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  150. k:Play()
  151. k:AdjustSpeed(1)
  152. end
  153. end
  154. end)
  155.  
  156. Sword.MouseButton1Click:connect(function()
  157. local gg = mouse.Target
  158. if gg ~= nil then
  159. for i,v in pairs(game.Players:GetPlayers()) do
  160. AnimationId = "35978879"
  161. local Anim = Instance.new("Animation")
  162. Anim.AnimationId = "rbxassetid://"..AnimationId
  163. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  164. k:Play()
  165. k:AdjustSpeed(1)
  166. end
  167. end
  168. end)
  169.  
  170. hmm.MouseButton1Down:connect(function()
  171. local gg = mouse.Target
  172. if gg ~= nil then
  173. for i,v in pairs(game.Players:GetPlayers()) do
  174. AnimationId = "33855276"
  175. local Anim = Instance.new("Animation")
  176. Anim.AnimationId = "rbxassetid://"..AnimationId
  177. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  178. k:Play()
  179. k:AdjustSpeed(1)
  180. end
  181. end
  182. end)
  183.  
  184. rando.MouseButton1Down:connect(function()
  185. local gg = mouse.Target
  186. if gg ~= nil then
  187. for i,v in pairs(game.Players:GetPlayers()) do
  188. AnimationId = "48977286"
  189. local Anim = Instance.new("Animation")
  190. Anim.AnimationId = "rbxassetid://"..AnimationId
  191. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  192. k:Play()
  193. k:AdjustSpeed(1)
  194. end
  195. end
  196. end)
  197.  
  198. Dance.MouseButton1Down:connect(function()
  199. local gg = mouse.Target
  200. if gg ~= nil then
  201. for i,v in pairs(game.Players:GetPlayers()) do
  202. AnimationId = "35654637"
  203. local Anim = Instance.new("Animation")
  204. Anim.AnimationId = "rbxassetid://"..AnimationId
  205. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  206. k:Play()
  207. k:AdjustSpeed(1)
  208. end
  209. end
  210. end)
  211.  
  212. Stab.MouseButton1Down:connect(function()
  213. local gg = mouse.Target
  214. if gg ~= nil then
  215. for i,v in pairs(game.Players:GetPlayers()) do
  216. AnimationId = "66703241"
  217. local Anim = Instance.new("Animation")
  218. Anim.AnimationId = "rbxassetid://"..AnimationId
  219. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  220. k:Play()
  221. k:AdjustSpeed(1)
  222. end
  223. end
  224. end)
  225.  
  226. Kick.MouseButton1Down:connect(function()
  227. local gg = mouse.Target
  228. if gg ~= nil then
  229. for i,v in pairs(game.Players:GetPlayers()) do
  230. AnimationId = "45737360"
  231. local Anim = Instance.new("Animation")
  232. Anim.AnimationId = "rbxassetid://"..AnimationId
  233. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  234. k:Play()
  235. k:AdjustSpeed(1)
  236. end
  237. end
  238. end)
  239.  
  240. Flying.MouseButton1Down:connect(function()
  241. local gg = mouse.Target
  242. if gg ~= nil then
  243. for i,v in pairs(game.Players:GetPlayers()) do
  244. AnimationId = "46196309"
  245. local Anim = Instance.new("Animation")
  246. Anim.AnimationId = "rbxassetid://"..AnimationId
  247. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  248. k:Play()
  249. k:AdjustSpeed(0.001)
  250. end
  251. end
  252. end)
  253.  
  254. SmellyRun.MouseButton1Down:connect(function()
  255. local gg = mouse.Target
  256. if gg ~= nil then
  257. for i,v in pairs(game.Players:GetPlayers()) do
  258. AnimationId = "30235165"
  259. local Anim = Instance.new("Animation")
  260. Anim.AnimationId = "rbxassetid://"..AnimationId
  261. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  262. k:Play()
  263. k:AdjustSpeed(1)
  264. end
  265. end
  266. end)
  267.  
  268. ArmsOut.MouseButton1Down:connect(function()
  269. local gg = mouse.Target
  270. if gg ~= nil then
  271. for i,v in pairs(game.Players:GetPlayers()) do
  272. AnimationId = "27432691"
  273. local Anim = Instance.new("Animation")
  274. Anim.AnimationId = "rbxassetid://"..AnimationId
  275. local k = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  276. k:Play()
  277. k:AdjustSpeed(1)
  278. end
  279. end
  280. end)
Add Comment
Please, Sign In to add comment