SHOW:
|
|
- or go back to the newest paste.
1 | -- Energize by illremember, fe animations | |
2 | -- DO NOT COPY AND CLAIM AS OWN, if you are using some of the script for your own, credit is highly appreciated! | |
3 | -- Thank you, and enjoy. | |
4 | ||
5 | -- Objects | |
6 | ||
7 | local Energize = Instance.new("ScreenGui") -- The actual GUI | |
8 | local SideFrame = Instance.new("Frame") -- Visible when GUI is closed | |
9 | local OpenGUI = Instance.new("TextButton") -- Part of SideFrame | |
10 | local SideFrameTitle = Instance.new("TextLabel") -- Part of SideFrame | |
11 | local MainFrame = Instance.new("Frame") -- All of the stuff on the main frame | |
12 | local GuiBottomFrame = Instance.new("Frame") -- Part of Active Frame | |
13 | local Credits = Instance.new("TextLabel") -- Credits to illremember, hello there | |
14 | local ScrollingFrame = Instance.new("ScrollingFrame") -- The scrolling frame of animations | |
15 | local CheckR = Instance.new("TextLabel") -- Check if R15 or R6 | |
16 | local ScrollingFrameR15 = Instance.new("ScrollingFrame") -- The scrolling frame of R15 animations | |
17 | ||
18 | local CrazySlash = Instance.new("TextButton")--COMPLETE | |
19 | local Open = Instance.new("TextButton")--COMPLETE | |
20 | local R15Spinner = Instance.new("TextButton")--COMPLETE | |
21 | local ArmsOut = Instance.new("TextButton")--COMPLETE | |
22 | local FloatSlash = Instance.new("TextButton")--COMPLETE | |
23 | local WeirdZombie = Instance.new("TextButton")--COMPLETE | |
24 | local DownSlash = Instance.new("TextButton")--COMPLETE | |
25 | local Pull = Instance.new("TextButton")--COMPLETE | |
26 | local CircleArm = Instance.new("TextButton")--COMPLETE | |
27 | local Bend = Instance.new("TextButton")--COMPLETE | |
28 | local RotateSlash = Instance.new("TextButton")--COMPLETE | |
29 | local FlingArms = Instance.new("TextButton")--COMPLETE | |
30 | ||
31 | local FullSwing = Instance.new("TextButton")--COMPLETE | |
32 | local GlitchLevitate = Instance.new("TextButton")--COMPLETE | |
33 | local MoonDance = Instance.new("TextButton")--COMPLETE | |
34 | local FullPunch = Instance.new("TextButton")--COMPLETE | |
35 | local Crouch = Instance.new("TextButton")--COMPLETE | |
36 | local SpinDance = Instance.new("TextButton")--COMPLETE | |
37 | local FloorFaint = Instance.new("TextButton")--COMPLETE | |
38 | local JumpingJacks = Instance.new("TextButton")--COMPLETE | |
39 | local Spinner = Instance.new("TextButton")--COMPLETE | |
40 | local MegaInsane = Instance.new("TextButton")--COMPLETE | |
41 | local ArmDetach = Instance.new("TextButton")--COMPLETE | |
42 | local WeirdMove = Instance.new("TextButton")--COMPLETE | |
43 | local Faint = Instance.new("TextButton")--COMPLETE | |
44 | local CloneIllusion = Instance.new("TextButton")--COMPLETE | |
45 | local Levitate = Instance.new("TextButton")--COMPLETE | |
46 | local DinoWalk = Instance.new("TextButton")--COMPLETE | |
47 | local FloorCrawl = Instance.new("TextButton")--COMPLETE | |
48 | local SwordSlam = Instance.new("TextButton")--COMPLETE | |
49 | local LoopHead = Instance.new("TextButton")--COMPLETE | |
50 | local HeroJump = Instance.new("TextButton")--COMPLETE | |
51 | local Insane = Instance.new("TextButton")--COMPLETE | |
52 | local FloatingHead = Instance.new("TextButton")--COMPLETE | |
53 | local HeadThrow = Instance.new("TextButton")--COMPLETE | |
54 | local MovingDance = Instance.new("TextButton")--COMPLETE | |
55 | local SuperPunch = Instance.new("TextButton")--COMPLETE | |
56 | local ArmTurbine = Instance.new("TextButton")--COMPLETE | |
57 | local Dab = Instance.new("TextButton")--COMPLETE | |
58 | local FloatSit = Instance.new("TextButton")--COMPLETE | |
59 | local SuperFaint = Instance.new("TextButton")--COMPLETE | |
60 | local BarrelRoll = Instance.new("TextButton")--COMPLETE | |
61 | local Scared = Instance.new("TextButton")--COMPLETE | |
62 | local InsaneArms = Instance.new("TextButton")--COMPLETE | |
63 | local SwordSlice = Instance.new("TextButton")--COMPLETE | |
64 | local SpinDance2 = Instance.new("TextButton")--COMPLETE | |
65 | local BowDown = Instance.new("TextButton")--COMPLETE | |
66 | local LoopSlam = Instance.new("TextButton")--COMPLETE | |
67 | ||
68 | local GuiTopFrame = Instance.new("Frame") -- Top of the main frame | |
69 | local CloseGUI = Instance.new("TextButton") -- To close the GUI | |
70 | local Title = Instance.new("TextLabel") -- Actual title of GUI, Energize | |
71 | ||
72 | -- Properties | |
73 | ||
74 | Energize.Name = "Energize" | |
75 | Energize.Parent = game.Players.LocalPlayer.PlayerGui | |
76 | ||
77 | SideFrame.Name = "SideFrame" | |
78 | SideFrame.Parent = Energize | |
79 | SideFrame.Active = true | |
80 | SideFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412) | |
81 | SideFrame.Draggable = true | |
82 | SideFrame.Position = UDim2.new(0, 376, 0, 125) | |
83 | SideFrame.Size = UDim2.new(0, 460, 0, 32) | |
84 | SideFrame.Visible = false | |
85 | ||
86 | OpenGUI.Name = "OpenGUI" | |
87 | OpenGUI.Parent = SideFrame | |
88 | OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1) | |
89 | OpenGUI.BackgroundTransparency = 1 | |
90 | OpenGUI.Position = UDim2.new(0, 426, 0, 0) | |
91 | OpenGUI.Size = UDim2.new(0, 34, 0, 32) | |
92 | OpenGUI.Font = Enum.Font.SourceSans | |
93 | OpenGUI.FontSize = Enum.FontSize.Size48 | |
94 | OpenGUI.Text = "X" | |
95 | OpenGUI.TextColor3 = Color3.new(0.333333, 0, 0) | |
96 | OpenGUI.TextSize = 40 | |
97 | OpenGUI.TextWrapped = true | |
98 | ||
99 | SideFrameTitle.Name = "SideFrameTitle" | |
100 | SideFrameTitle.Parent = SideFrame | |
101 | SideFrameTitle.BackgroundColor3 = Color3.new(1, 1, 1) | |
102 | SideFrameTitle.BackgroundTransparency = 1 | |
103 | SideFrameTitle.Position = UDim2.new(0, 170, 0, 0) | |
104 | SideFrameTitle.Size = UDim2.new(0, 119, 0, 31) | |
105 | SideFrameTitle.Font = Enum.Font.Arial | |
106 | SideFrameTitle.FontSize = Enum.FontSize.Size24 | |
107 | SideFrameTitle.Text = "Energize" | |
108 | SideFrameTitle.TextSize = 21 | |
109 | SideFrameTitle.TextStrokeColor3 = Color3.new(0.27451, 0.92549, 0.905882) | |
110 | SideFrameTitle.TextStrokeTransparency = 0.69999998807907 | |
111 | ||
112 | MainFrame.Name = "MainFrame" | |
113 | MainFrame.Parent = Energize | |
114 | MainFrame.Active = true | |
115 | MainFrame.BackgroundColor3 = Color3.new(1, 1, 1) | |
116 | MainFrame.BackgroundTransparency = 1 | |
117 | MainFrame.Draggable = true | |
118 | MainFrame.Position = UDim2.new(0, 376, 0, 125) | |
119 | MainFrame.Size = UDim2.new(0, 444, 0, 280) | |
120 | ||
121 | GuiBottomFrame.Name = "Gui BottomFrame" | |
122 | GuiBottomFrame.Parent = MainFrame | |
123 | GuiBottomFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412) | |
124 | GuiBottomFrame.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137) | |
125 | GuiBottomFrame.Position = UDim2.new(0, 0, 0, 247) | |
126 | GuiBottomFrame.Size = UDim2.new(0, 460, 0, 32) | |
127 | ||
128 | Credits.Name = "Credits" | |
129 | Credits.Parent = GuiBottomFrame | |
130 | Credits.BackgroundColor3 = Color3.new(1, 1, 1) | |
131 | Credits.BackgroundTransparency = 1 | |
132 | Credits.Size = UDim2.new(0, 460, 0, 32) | |
133 | Credits.FontSize = Enum.FontSize.Size14 | |
134 | Credits.Text = "By illremember FE Animations Gui" | |
135 | Credits.TextColor3 = Color3.new(0.219608, 0.219608, 0.219608) | |
136 | Credits.TextSize = 14 | |
137 | Credits.TextStrokeColor3 = Color3.new(0.141176, 0.870588, 0.713726) | |
138 | Credits.TextStrokeTransparency = 0.69999998807907 | |
139 | Credits.TextWrapped = true | |
140 | ||
141 | ScrollingFrame.Parent = MainFrame | |
142 | ScrollingFrame.BackgroundColor3 = Color3.new(1, 0.564706, 0.564706) | |
143 | ScrollingFrame.Position = UDim2.new(0, 0, 0, 32) | |
144 | ScrollingFrame.Size = UDim2.new(0, 460, 0, 215) | |
145 | ScrollingFrame.ScrollBarThickness = 13 | |
146 | ||
147 | FullSwing.Name = "FullSwing" | |
148 | FullSwing.Parent = ScrollingFrame | |
149 | FullSwing.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
150 | FullSwing.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
151 | FullSwing.Position = UDim2.new(0, 17, 0, 322) | |
152 | FullSwing.Size = UDim2.new(0, 119, 0, 34) | |
153 | FullSwing.Font = Enum.Font.Highway | |
154 | FullSwing.FontSize = Enum.FontSize.Size24 | |
155 | FullSwing.Text = "Full Swing" | |
156 | FullSwing.TextSize = 20 | |
157 | FullSwing.TextWrapped = true | |
158 | ||
159 | GlitchLevitate.Name = "GlitchLevitate" | |
160 | GlitchLevitate.Parent = ScrollingFrame | |
161 | GlitchLevitate.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
162 | GlitchLevitate.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
163 | GlitchLevitate.Position = UDim2.new(0, 319, 0, 322) | |
164 | GlitchLevitate.Size = UDim2.new(0, 119, 0, 34) | |
165 | GlitchLevitate.Font = Enum.Font.Highway | |
166 | GlitchLevitate.FontSize = Enum.FontSize.Size24 | |
167 | GlitchLevitate.Text = "Glitch Levitate" | |
168 | GlitchLevitate.TextSize = 20 | |
169 | GlitchLevitate.TextWrapped = true | |
170 | ||
171 | MoonDance.Name = "MoonDance" | |
172 | MoonDance.Parent = ScrollingFrame | |
173 | MoonDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
174 | MoonDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
175 | MoonDance.Position = UDim2.new(0, 319, 0, 280) | |
176 | MoonDance.Size = UDim2.new(0, 119, 0, 34) | |
177 | MoonDance.Font = Enum.Font.Highway | |
178 | MoonDance.FontSize = Enum.FontSize.Size24 | |
179 | MoonDance.Text = "Moon Dance" | |
180 | MoonDance.TextSize = 20 | |
181 | MoonDance.TextWrapped = true | |
182 | ||
183 | FullPunch.Name = "FullPunch" | |
184 | FullPunch.Parent = ScrollingFrame | |
185 | FullPunch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
186 | FullPunch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
187 | FullPunch.Position = UDim2.new(0, 17, 0, 280) | |
188 | FullPunch.Size = UDim2.new(0, 119, 0, 34) | |
189 | FullPunch.Font = Enum.Font.Highway | |
190 | FullPunch.FontSize = Enum.FontSize.Size24 | |
191 | FullPunch.Text = "Full Punch" | |
192 | FullPunch.TextSize = 20 | |
193 | FullPunch.TextWrapped = true | |
194 | ||
195 | Crouch.Name = "Crouch" | |
196 | Crouch.Parent = ScrollingFrame | |
197 | Crouch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
198 | Crouch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
199 | Crouch.Position = UDim2.new(0, 168, 0, 280) | |
200 | Crouch.Size = UDim2.new(0, 119, 0, 34) | |
201 | Crouch.Font = Enum.Font.Highway | |
202 | Crouch.FontSize = Enum.FontSize.Size24 | |
203 | Crouch.Text = "Crouch" | |
204 | Crouch.TextSize = 20 | |
205 | Crouch.TextWrapped = true | |
206 | ||
207 | SpinDance.Name = "SpinDance" | |
208 | SpinDance.Parent = ScrollingFrame | |
209 | SpinDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
210 | SpinDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
211 | SpinDance.Position = UDim2.new(0, 168, 0, 236) | |
212 | SpinDance.Size = UDim2.new(0, 119, 0, 34) | |
213 | SpinDance.Font = Enum.Font.Highway | |
214 | SpinDance.FontSize = Enum.FontSize.Size24 | |
215 | SpinDance.Text = "Spin Dance" | |
216 | SpinDance.TextSize = 20 | |
217 | SpinDance.TextWrapped = true | |
218 | ||
219 | FloorFaint.Name = "FloorFaint" | |
220 | FloorFaint.Parent = ScrollingFrame | |
221 | FloorFaint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
222 | FloorFaint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
223 | FloorFaint.Position = UDim2.new(0, 17, 0, 236) | |
224 | FloorFaint.Size = UDim2.new(0, 119, 0, 34) | |
225 | FloorFaint.Font = Enum.Font.Highway | |
226 | FloorFaint.FontSize = Enum.FontSize.Size24 | |
227 | FloorFaint.Text = "Floor Faint" | |
228 | FloorFaint.TextSize = 20 | |
229 | FloorFaint.TextWrapped = true | |
230 | ||
231 | JumpingJacks.Name = "JumpingJacks" | |
232 | JumpingJacks.Parent = ScrollingFrame | |
233 | JumpingJacks.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
234 | JumpingJacks.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
235 | JumpingJacks.Position = UDim2.new(0, 319, 0, 236) | |
236 | JumpingJacks.Size = UDim2.new(0, 119, 0, 34) | |
237 | JumpingJacks.Font = Enum.Font.Highway | |
238 | JumpingJacks.FontSize = Enum.FontSize.Size24 | |
239 | JumpingJacks.Text = "Jumping Jacks" | |
240 | JumpingJacks.TextSize = 20 | |
241 | JumpingJacks.TextWrapped = true | |
242 | ||
243 | Spinner.Name = "Spinner" | |
244 | Spinner.Parent = ScrollingFrame | |
245 | Spinner.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
246 | Spinner.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
247 | Spinner.Position = UDim2.new(0, 17, 0, 192) | |
248 | Spinner.Size = UDim2.new(0, 119, 0, 34) | |
249 | Spinner.Font = Enum.Font.Highway | |
250 | Spinner.FontSize = Enum.FontSize.Size24 | |
251 | Spinner.Text = "Spinner" | |
252 | Spinner.TextSize = 20 | |
253 | Spinner.TextWrapped = true | |
254 | ||
255 | MegaInsane.Name = "MegaInsane" | |
256 | MegaInsane.Parent = ScrollingFrame | |
257 | MegaInsane.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
258 | MegaInsane.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
259 | MegaInsane.Position = UDim2.new(0, 168, 0, 192) | |
260 | MegaInsane.Size = UDim2.new(0, 119, 0, 34) | |
261 | MegaInsane.Font = Enum.Font.Highway | |
262 | MegaInsane.FontSize = Enum.FontSize.Size24 | |
263 | MegaInsane.Text = "Mega Insane" | |
264 | MegaInsane.TextSize = 20 | |
265 | MegaInsane.TextWrapped = true | |
266 | ||
267 | ArmDetach.Name = "ArmDetach" | |
268 | ArmDetach.Parent = ScrollingFrame | |
269 | ArmDetach.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
270 | ArmDetach.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
271 | ArmDetach.Position = UDim2.new(0, 319, 0, 192) | |
272 | ArmDetach.Size = UDim2.new(0, 119, 0, 34) | |
273 | ArmDetach.Font = Enum.Font.Highway | |
274 | ArmDetach.FontSize = Enum.FontSize.Size24 | |
275 | ArmDetach.Text = "Arm Detach" | |
276 | ArmDetach.TextSize = 20 | |
277 | ArmDetach.TextWrapped = true | |
278 | ||
279 | WeirdMove.Name = "WeirdMove" | |
280 | WeirdMove.Parent = ScrollingFrame | |
281 | WeirdMove.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
282 | WeirdMove.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
283 | WeirdMove.Position = UDim2.new(0, 168, 0, 148) | |
284 | WeirdMove.Size = UDim2.new(0, 119, 0, 34) | |
285 | WeirdMove.Font = Enum.Font.Highway | |
286 | WeirdMove.FontSize = Enum.FontSize.Size24 | |
287 | WeirdMove.Text = "Weird Move" | |
288 | WeirdMove.TextSize = 20 | |
289 | WeirdMove.TextWrapped = true | |
290 | ||
291 | Faint.Name = "Faint" | |
292 | Faint.Parent = ScrollingFrame | |
293 | Faint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
294 | Faint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
295 | Faint.Position = UDim2.new(0, 17, 0, 148) | |
296 | Faint.Size = UDim2.new(0, 119, 0, 34) | |
297 | Faint.Font = Enum.Font.Highway | |
298 | Faint.FontSize = Enum.FontSize.Size24 | |
299 | Faint.Text = "Faint" | |
300 | Faint.TextSize = 20 | |
301 | Faint.TextWrapped = true | |
302 | ||
303 | CloneIllusion.Name = "CloneIllusion" | |
304 | CloneIllusion.Parent = ScrollingFrame | |
305 | CloneIllusion.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
306 | CloneIllusion.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
307 | CloneIllusion.Position = UDim2.new(0, 319, 0, 148) | |
308 | CloneIllusion.Size = UDim2.new(0, 119, 0, 34) | |
309 | CloneIllusion.Font = Enum.Font.Highway | |
310 | CloneIllusion.FontSize = Enum.FontSize.Size24 | |
311 | CloneIllusion.Text = "Clone Illusion" | |
312 | CloneIllusion.TextSize = 20 | |
313 | CloneIllusion.TextWrapped = true | |
314 | ||
315 | Levitate.Name = "Levitate" | |
316 | Levitate.Parent = ScrollingFrame | |
317 | Levitate.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
318 | Levitate.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
319 | Levitate.Position = UDim2.new(0, 17, 0, 104) | |
320 | Levitate.Size = UDim2.new(0, 119, 0, 34) | |
321 | Levitate.Font = Enum.Font.Highway | |
322 | Levitate.FontSize = Enum.FontSize.Size24 | |
323 | Levitate.Text = "Levitate" | |
324 | Levitate.TextSize = 20 | |
325 | Levitate.TextWrapped = true | |
326 | ||
327 | DinoWalk.Name = "DinoWalk" | |
328 | DinoWalk.Parent = ScrollingFrame | |
329 | DinoWalk.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
330 | DinoWalk.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
331 | DinoWalk.Position = UDim2.new(0, 168, 0, 104) | |
332 | DinoWalk.Size = UDim2.new(0, 119, 0, 34) | |
333 | DinoWalk.Font = Enum.Font.Highway | |
334 | DinoWalk.FontSize = Enum.FontSize.Size24 | |
335 | DinoWalk.Text = "Dino Walk" | |
336 | DinoWalk.TextSize = 20 | |
337 | DinoWalk.TextWrapped = true | |
338 | ||
339 | FloorCrawl.Name = "FloorCrawl" | |
340 | FloorCrawl.Parent = ScrollingFrame | |
341 | FloorCrawl.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
342 | FloorCrawl.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
343 | FloorCrawl.Position = UDim2.new(0, 319, 0, 104) | |
344 | FloorCrawl.Size = UDim2.new(0, 119, 0, 34) | |
345 | FloorCrawl.Font = Enum.Font.Highway | |
346 | FloorCrawl.FontSize = Enum.FontSize.Size24 | |
347 | FloorCrawl.Text = "Floor Crawl" | |
348 | FloorCrawl.TextSize = 20 | |
349 | FloorCrawl.TextWrapped = true | |
350 | ||
351 | SwordSlam.Name = "SwordSlam" | |
352 | SwordSlam.Parent = ScrollingFrame | |
353 | SwordSlam.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
354 | SwordSlam.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
355 | SwordSlam.Position = UDim2.new(0, 319, 0, 60) | |
356 | SwordSlam.Size = UDim2.new(0, 119, 0, 34) | |
357 | SwordSlam.Font = Enum.Font.Highway | |
358 | SwordSlam.FontSize = Enum.FontSize.Size24 | |
359 | SwordSlam.Text = "Sword Slam" | |
360 | SwordSlam.TextSize = 20 | |
361 | SwordSlam.TextWrapped = true | |
362 | ||
363 | LoopHead.Name = "LoopHead" | |
364 | LoopHead.Parent = ScrollingFrame | |
365 | LoopHead.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
366 | LoopHead.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
367 | LoopHead.Position = UDim2.new(0, 168, 0, 60) | |
368 | LoopHead.Size = UDim2.new(0, 119, 0, 34) | |
369 | LoopHead.Font = Enum.Font.Highway | |
370 | LoopHead.FontSize = Enum.FontSize.Size24 | |
371 | LoopHead.Text = "Loop Head" | |
372 | LoopHead.TextSize = 20 | |
373 | LoopHead.TextWrapped = true | |
374 | ||
375 | HeroJump.Name = "HeroJump" | |
376 | HeroJump.Parent = ScrollingFrame | |
377 | HeroJump.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
378 | HeroJump.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
379 | HeroJump.Position = UDim2.new(0, 17, 0, 60) | |
380 | HeroJump.Size = UDim2.new(0, 119, 0, 34) | |
381 | HeroJump.Font = Enum.Font.Highway | |
382 | HeroJump.FontSize = Enum.FontSize.Size24 | |
383 | HeroJump.Text = "Hero Jump" | |
384 | HeroJump.TextSize = 20 | |
385 | HeroJump.TextWrapped = true | |
386 | ||
387 | Insane.Name = "Insane" | |
388 | Insane.Parent = ScrollingFrame | |
389 | Insane.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
390 | Insane.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
391 | Insane.Position = UDim2.new(0, 319, 0, 16) | |
392 | Insane.Size = UDim2.new(0, 119, 0, 34) | |
393 | Insane.Font = Enum.Font.Highway | |
394 | Insane.FontSize = Enum.FontSize.Size24 | |
395 | Insane.Text = "Insane" | |
396 | Insane.TextSize = 20 | |
397 | Insane.TextWrapped = true | |
398 | ||
399 | FloatingHead.Name = "FloatingHead" | |
400 | FloatingHead.Parent = ScrollingFrame | |
401 | FloatingHead.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
402 | FloatingHead.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
403 | FloatingHead.Position = UDim2.new(0, 168, 0, 16) | |
404 | FloatingHead.Size = UDim2.new(0, 119, 0, 34) | |
405 | FloatingHead.Font = Enum.Font.Highway | |
406 | FloatingHead.FontSize = Enum.FontSize.Size24 | |
407 | FloatingHead.Text = "Floating Head" | |
408 | FloatingHead.TextSize = 20 | |
409 | FloatingHead.TextWrapped = true | |
410 | ||
411 | HeadThrow.Name = "HeadThrow" | |
412 | HeadThrow.Parent = ScrollingFrame | |
413 | HeadThrow.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
414 | HeadThrow.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
415 | HeadThrow.Position = UDim2.new(0, 17, 0, 16) | |
416 | HeadThrow.Size = UDim2.new(0, 119, 0, 34) | |
417 | HeadThrow.Font = Enum.Font.Highway | |
418 | HeadThrow.FontSize = Enum.FontSize.Size24 | |
419 | HeadThrow.Text = "Head Throw" | |
420 | HeadThrow.TextSize = 20 | |
421 | HeadThrow.TextWrapped = true | |
422 | ||
423 | MovingDance.Name = "MovingDance" | |
424 | MovingDance.Parent = ScrollingFrame | |
425 | MovingDance.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
426 | MovingDance.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
427 | MovingDance.Position = UDim2.new(0, 168, 0, 324) | |
428 | MovingDance.Size = UDim2.new(0, 119, 0, 34) | |
429 | MovingDance.Font = Enum.Font.Highway | |
430 | MovingDance.FontSize = Enum.FontSize.Size24 | |
431 | MovingDance.Text = "Moving Dance" | |
432 | MovingDance.TextSize = 20 | |
433 | MovingDance.TextWrapped = true | |
434 | ||
435 | SuperPunch.Name = "SuperPunch" | |
436 | SuperPunch.Parent = ScrollingFrame | |
437 | SuperPunch.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
438 | SuperPunch.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
439 | SuperPunch.Position = UDim2.new(0, 168, 0, 366) | |
440 | SuperPunch.Size = UDim2.new(0, 119, 0, 34) | |
441 | SuperPunch.Font = Enum.Font.Highway | |
442 | SuperPunch.FontSize = Enum.FontSize.Size24 | |
443 | SuperPunch.Text = "Super Punch" | |
444 | SuperPunch.TextSize = 20 | |
445 | SuperPunch.TextWrapped = true | |
446 | ||
447 | ArmTurbine.Name = "ArmTurbine" | |
448 | ArmTurbine.Parent = ScrollingFrame | |
449 | ArmTurbine.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
450 | ArmTurbine.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
451 | ArmTurbine.Position = UDim2.new(0, 319, 0, 366) | |
452 | ArmTurbine.Size = UDim2.new(0, 119, 0, 34) | |
453 | ArmTurbine.Font = Enum.Font.Highway | |
454 | ArmTurbine.FontSize = Enum.FontSize.Size24 | |
455 | ArmTurbine.Text = "Arm Turbine" | |
456 | ArmTurbine.TextSize = 20 | |
457 | ArmTurbine.TextWrapped = true | |
458 | ||
459 | Dab.Name = "Dab" | |
460 | Dab.Parent = ScrollingFrame | |
461 | Dab.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
462 | Dab.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
463 | Dab.Position = UDim2.new(0, 17, 0, 366) | |
464 | Dab.Size = UDim2.new(0, 119, 0, 34) | |
465 | Dab.Font = Enum.Font.Highway | |
466 | Dab.FontSize = Enum.FontSize.Size24 | |
467 | Dab.Text = "Dab" | |
468 | Dab.TextSize = 20 | |
469 | Dab.TextWrapped = true | |
470 | ||
471 | FloatSit.Name = "FloatSit" | |
472 | FloatSit.Parent = ScrollingFrame | |
473 | FloatSit.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
474 | FloatSit.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
475 | FloatSit.Position = UDim2.new(0, 168, 0, 410) | |
476 | FloatSit.Size = UDim2.new(0, 119, 0, 34) | |
477 | FloatSit.Font = Enum.Font.Highway | |
478 | FloatSit.FontSize = Enum.FontSize.Size24 | |
479 | FloatSit.Text = "Float Sit" | |
480 | FloatSit.TextSize = 20 | |
481 | FloatSit.TextWrapped = true | |
482 | ||
483 | SuperFaint.Name = "SuperFaint" | |
484 | SuperFaint.Parent = ScrollingFrame | |
485 | SuperFaint.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
486 | SuperFaint.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
487 | SuperFaint.Position = UDim2.new(0, 17, 0, 498) | |
488 | SuperFaint.Size = UDim2.new(0, 119, 0, 34) | |
489 | SuperFaint.Font = Enum.Font.Highway | |
490 | SuperFaint.FontSize = Enum.FontSize.Size24 | |
491 | SuperFaint.Text = "Super Faint" | |
492 | SuperFaint.TextSize = 20 | |
493 | SuperFaint.TextWrapped = true | |
494 | ||
495 | BarrelRoll.Name = "BarrelRoll" | |
496 | BarrelRoll.Parent = ScrollingFrame | |
497 | BarrelRoll.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
498 | BarrelRoll.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
499 | BarrelRoll.Position = UDim2.new(0, 319, 0, 410) | |
500 | BarrelRoll.Size = UDim2.new(0, 119, 0, 34) | |
501 | BarrelRoll.Font = Enum.Font.Highway | |
502 | BarrelRoll.FontSize = Enum.FontSize.Size24 | |
503 | BarrelRoll.Text = "Barrel Roll" | |
504 | BarrelRoll.TextSize = 20 | |
505 | BarrelRoll.TextWrapped = true | |
506 | ||
507 | Scared.Name = "Scared" | |
508 | Scared.Parent = ScrollingFrame | |
509 | Scared.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
510 | Scared.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
511 | Scared.Position = UDim2.new(0, 319, 0, 454) | |
512 | Scared.Size = UDim2.new(0, 119, 0, 34) | |
513 | Scared.Font = Enum.Font.Highway | |
514 | Scared.FontSize = Enum.FontSize.Size24 | |
515 | Scared.Text = "Scared" | |
516 | Scared.TextSize = 20 | |
517 | Scared.TextWrapped = true | |
518 | ||
519 | InsaneArms.Name = "InsaneArms" | |
520 | InsaneArms.Parent = ScrollingFrame | |
521 | InsaneArms.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
522 | InsaneArms.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
523 | InsaneArms.Position = UDim2.new(0, 17, 0, 454) | |
524 | InsaneArms.Size = UDim2.new(0, 119, 0, 34) | |
525 | InsaneArms.Font = Enum.Font.Highway | |
526 | InsaneArms.FontSize = Enum.FontSize.Size24 | |
527 | InsaneArms.Text = "Insane Arms" | |
528 | InsaneArms.TextSize = 20 | |
529 | InsaneArms.TextWrapped = true | |
530 | ||
531 | SwordSlice.Name = "SwordSlice" | |
532 | SwordSlice.Parent = ScrollingFrame | |
533 | SwordSlice.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
534 | SwordSlice.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
535 | SwordSlice.Position = UDim2.new(0, 168, 0, 454) | |
536 | SwordSlice.Size = UDim2.new(0, 119, 0, 34) | |
537 | SwordSlice.Font = Enum.Font.Highway | |
538 | SwordSlice.FontSize = Enum.FontSize.Size24 | |
539 | SwordSlice.Text = "Sword Slice" | |
540 | SwordSlice.TextSize = 20 | |
541 | SwordSlice.TextWrapped = true | |
542 | ||
543 | SpinDance2.Name = "SpinDance2" | |
544 | SpinDance2.Parent = ScrollingFrame | |
545 | SpinDance2.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
546 | SpinDance2.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
547 | SpinDance2.Position = UDim2.new(0, 168, 0, 498) | |
548 | SpinDance2.Size = UDim2.new(0, 119, 0, 34) | |
549 | SpinDance2.Font = Enum.Font.Highway | |
550 | SpinDance2.FontSize = Enum.FontSize.Size24 | |
551 | SpinDance2.Text = "Spin Dance 2" | |
552 | SpinDance2.TextSize = 20 | |
553 | SpinDance2.TextWrapped = true | |
554 | ||
555 | BowDown.Name = "BowDown" | |
556 | BowDown.Parent = ScrollingFrame | |
557 | BowDown.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
558 | BowDown.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
559 | BowDown.Position = UDim2.new(0, 319, 0, 498) | |
560 | BowDown.Size = UDim2.new(0, 119, 0, 34) | |
561 | BowDown.Font = Enum.Font.Highway | |
562 | BowDown.FontSize = Enum.FontSize.Size24 | |
563 | BowDown.Text = "Bow Down" | |
564 | BowDown.TextSize = 20 | |
565 | BowDown.TextWrapped = true | |
566 | ||
567 | LoopSlam.Name = "LoopSlam" | |
568 | LoopSlam.Parent = ScrollingFrame | |
569 | LoopSlam.BackgroundColor3 = Color3.new(0.886275, 0.776471, 0.368627) | |
570 | LoopSlam.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
571 | LoopSlam.Position = UDim2.new(0, 17, 0, 410) | |
572 | LoopSlam.Size = UDim2.new(0, 119, 0, 34) | |
573 | LoopSlam.Font = Enum.Font.Highway | |
574 | LoopSlam.FontSize = Enum.FontSize.Size24 | |
575 | LoopSlam.Text = "Loop Slam" | |
576 | LoopSlam.TextSize = 20 | |
577 | LoopSlam.TextWrapped = true | |
578 | ||
579 | GuiTopFrame.Name = "Gui TopFrame" | |
580 | GuiTopFrame.Parent = MainFrame | |
581 | GuiTopFrame.BackgroundColor3 = Color3.new(1, 0.329412, 0.329412) | |
582 | GuiTopFrame.BorderColor3 = Color3.new(0.243137, 0.243137, 0.243137) | |
583 | GuiTopFrame.Size = UDim2.new(0, 460, 0, 32) | |
584 | ||
585 | CloseGUI.Name = "CloseGUI" | |
586 | CloseGUI.Parent = GuiTopFrame | |
587 | CloseGUI.BackgroundColor3 = Color3.new(1, 1, 1) | |
588 | CloseGUI.BackgroundTransparency = 1 | |
589 | CloseGUI.Position = UDim2.new(0, 426, 0, 0) | |
590 | CloseGUI.Size = UDim2.new(0, 34, 0, 32) | |
591 | CloseGUI.Font = Enum.Font.SourceSans | |
592 | CloseGUI.FontSize = Enum.FontSize.Size48 | |
593 | CloseGUI.Text = "X" | |
594 | CloseGUI.TextColor3 = Color3.new(0.333333, 0, 0) | |
595 | CloseGUI.TextSize = 40 | |
596 | CloseGUI.TextWrapped = true | |
597 | ||
598 | Title.Name = "Title" | |
599 | Title.Parent = GuiTopFrame | |
600 | Title.BackgroundColor3 = Color3.new(1, 1, 1) | |
601 | Title.BackgroundTransparency = 1 | |
602 | Title.Size = UDim2.new(0, 460, 0, 32) | |
603 | Title.FontSize = Enum.FontSize.Size14 | |
604 | Title.Text = "Energize" | |
605 | Title.TextColor3 = Color3.new(0.164706, 0.164706, 0.164706) | |
606 | Title.TextSize = 14 | |
607 | Title.TextStrokeColor3 = Color3.new(0.384314, 0.917647, 1) | |
608 | Title.TextStrokeTransparency = 0.69999998807907 | |
609 | Title.TextWrapped = true | |
610 | ||
611 | CheckR.Name = "CheckR" | |
612 | CheckR.Parent = GuiTopFrame | |
613 | CheckR.BackgroundColor3 = Color3.new(1, 1, 1) | |
614 | CheckR.BackgroundTransparency = 1 | |
615 | CheckR.Size = UDim2.new(0, 171, 0, 32) | |
616 | CheckR.Font = Enum.Font.SourceSansBold | |
617 | CheckR.FontSize = Enum.FontSize.Size14 | |
618 | CheckR.Text = "Text" | |
619 | CheckR.TextScaled = true | |
620 | CheckR.TextSize = 14 | |
621 | CheckR.TextWrapped = true | |
622 | ||
623 | ScrollingFrameR15.Name = "ScrollingFrameR15" | |
624 | ScrollingFrameR15.Parent = MainFrame | |
625 | ScrollingFrameR15.BackgroundColor3 = Color3.new(1, 0.564706, 0.564706) | |
626 | ScrollingFrameR15.Position = UDim2.new(0, 0, 0, 32) | |
627 | ScrollingFrameR15.Size = UDim2.new(0, 460, 0, 215) | |
628 | ScrollingFrameR15.Visible = false | |
629 | ScrollingFrameR15.ScrollBarThickness = 13 | |
630 | ||
631 | CrazySlash.Name = "CrazySlash" | |
632 | CrazySlash.Parent = ScrollingFrameR15 | |
633 | CrazySlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157) | |
634 | CrazySlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
635 | CrazySlash.Position = UDim2.new(0, 17, 0, 16) | |
636 | CrazySlash.Size = UDim2.new(0, 119, 0, 34) | |
637 | CrazySlash.Font = Enum.Font.Highway | |
638 | CrazySlash.FontSize = Enum.FontSize.Size24 | |
639 | CrazySlash.Text = "CrazySlash" | |
640 | CrazySlash.TextSize = 20 | |
641 | CrazySlash.TextWrapped = true | |
642 | ||
643 | Open.Name = "Open" | |
644 | Open.Parent = ScrollingFrameR15 | |
645 | Open.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157) | |
646 | Open.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
647 | Open.Position = UDim2.new(0, 168, 0, 16) | |
648 | Open.Size = UDim2.new(0, 119, 0, 34) | |
649 | Open.Font = Enum.Font.Highway | |
650 | Open.FontSize = Enum.FontSize.Size24 | |
651 | Open.Text = "Open" | |
652 | Open.TextSize = 20 | |
653 | Open.TextWrapped = true | |
654 | ||
655 | R15Spinner.Name = "R15Spinner" | |
656 | R15Spinner.Parent = ScrollingFrameR15 | |
657 | R15Spinner.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157) | |
658 | R15Spinner.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
659 | R15Spinner.Position = UDim2.new(0, 17, 0, 60) | |
660 | R15Spinner.Size = UDim2.new(0, 119, 0, 34) | |
661 | R15Spinner.Font = Enum.Font.Highway | |
662 | R15Spinner.FontSize = Enum.FontSize.Size24 | |
663 | R15Spinner.Text = "Spinner" | |
664 | R15Spinner.TextSize = 20 | |
665 | R15Spinner.TextWrapped = true | |
666 | ||
667 | ArmsOut.Name = "ArmsOut" | |
668 | ArmsOut.Parent = ScrollingFrameR15 | |
669 | ArmsOut.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157) | |
670 | ArmsOut.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
671 | ArmsOut.Position = UDim2.new(0, 319, 0, 16) | |
672 | ArmsOut.Size = UDim2.new(0, 119, 0, 34) | |
673 | ArmsOut.Font = Enum.Font.Highway | |
674 | ArmsOut.FontSize = Enum.FontSize.Size24 | |
675 | ArmsOut.Text = "ArmsOut" | |
676 | ArmsOut.TextSize = 20 | |
677 | ArmsOut.TextWrapped = true | |
678 | ||
679 | FloatSlash.Name = "FloatSlash" | |
680 | FloatSlash.Parent = ScrollingFrameR15 | |
681 | FloatSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157) | |
682 | FloatSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
683 | FloatSlash.Position = UDim2.new(0, 168, 0, 148) | |
684 | FloatSlash.Size = UDim2.new(0, 119, 0, 34) | |
685 | FloatSlash.Font = Enum.Font.Highway | |
686 | FloatSlash.FontSize = Enum.FontSize.Size24 | |
687 | FloatSlash.Text = "FloatSlash" | |
688 | FloatSlash.TextSize = 20 | |
689 | FloatSlash.TextWrapped = true | |
690 | ||
691 | WeirdZombie.Name = "WeirdZombie" | |
692 | WeirdZombie.Parent = ScrollingFrameR15 | |
693 | WeirdZombie.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157) | |
694 | WeirdZombie.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
695 | WeirdZombie.Position = UDim2.new(0, 17, 0, 148) | |
696 | WeirdZombie.Size = UDim2.new(0, 119, 0, 34) | |
697 | WeirdZombie.Font = Enum.Font.Highway | |
698 | WeirdZombie.FontSize = Enum.FontSize.Size24 | |
699 | WeirdZombie.Text = "WeirdZombie" | |
700 | WeirdZombie.TextSize = 20 | |
701 | WeirdZombie.TextWrapped = true | |
702 | ||
703 | DownSlash.Name = "DownSlash" | |
704 | DownSlash.Parent = ScrollingFrameR15 | |
705 | DownSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157) | |
706 | DownSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
707 | DownSlash.Position = UDim2.new(0, 319, 0, 148) | |
708 | DownSlash.Size = UDim2.new(0, 119, 0, 34) | |
709 | DownSlash.Font = Enum.Font.Highway | |
710 | DownSlash.FontSize = Enum.FontSize.Size24 | |
711 | DownSlash.Text = "DownSlash" | |
712 | DownSlash.TextSize = 20 | |
713 | DownSlash.TextWrapped = true | |
714 | ||
715 | Pull.Name = "Pull" | |
716 | Pull.Parent = ScrollingFrameR15 | |
717 | Pull.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157) | |
718 | Pull.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
719 | Pull.Position = UDim2.new(0, 17, 0, 104) | |
720 | Pull.Size = UDim2.new(0, 119, 0, 34) | |
721 | Pull.Font = Enum.Font.Highway | |
722 | Pull.FontSize = Enum.FontSize.Size24 | |
723 | Pull.Text = "Pull" | |
724 | Pull.TextSize = 20 | |
725 | Pull.TextWrapped = true | |
726 | ||
727 | CircleArm.Name = "CircleArm" | |
728 | CircleArm.Parent = ScrollingFrameR15 | |
729 | CircleArm.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157) | |
730 | CircleArm.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
731 | CircleArm.Position = UDim2.new(0, 168, 0, 104) | |
732 | CircleArm.Size = UDim2.new(0, 119, 0, 34) | |
733 | CircleArm.Font = Enum.Font.Highway | |
734 | CircleArm.FontSize = Enum.FontSize.Size24 | |
735 | CircleArm.Text = "CircleArm" | |
736 | CircleArm.TextSize = 20 | |
737 | CircleArm.TextWrapped = true | |
738 | ||
739 | Bend.Name = "Bend" | |
740 | Bend.Parent = ScrollingFrameR15 | |
741 | Bend.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157) | |
742 | Bend.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
743 | Bend.Position = UDim2.new(0, 319, 0, 104) | |
744 | Bend.Size = UDim2.new(0, 119, 0, 34) | |
745 | Bend.Font = Enum.Font.Highway | |
746 | Bend.FontSize = Enum.FontSize.Size24 | |
747 | Bend.Text = "Bend" | |
748 | Bend.TextSize = 20 | |
749 | Bend.TextWrapped = true | |
750 | ||
751 | RotateSlash.Name = "RotateSlash" | |
752 | RotateSlash.Parent = ScrollingFrameR15 | |
753 | RotateSlash.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157) | |
754 | RotateSlash.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
755 | RotateSlash.Position = UDim2.new(0, 319, 0, 60) | |
756 | RotateSlash.Size = UDim2.new(0, 119, 0, 34) | |
757 | RotateSlash.Font = Enum.Font.Highway | |
758 | RotateSlash.FontSize = Enum.FontSize.Size24 | |
759 | RotateSlash.Text = "RotateSlash" | |
760 | RotateSlash.TextSize = 20 | |
761 | RotateSlash.TextWrapped = true | |
762 | ||
763 | FlingArms.Name = "FlingArms" | |
764 | FlingArms.Parent = ScrollingFrameR15 | |
765 | FlingArms.BackgroundColor3 = Color3.new(0.682353, 0.701961, 0.792157) | |
766 | FlingArms.BorderColor3 = Color3.new(0.313726, 0.313726, 0.313726) | |
767 | FlingArms.Position = UDim2.new(0, 168, 0, 60) | |
768 | FlingArms.Size = UDim2.new(0, 119, 0, 34) | |
769 | FlingArms.Font = Enum.Font.Highway | |
770 | FlingArms.FontSize = Enum.FontSize.Size24 | |
771 | FlingArms.Text = "FlingArms" | |
772 | FlingArms.TextSize = 20 | |
773 | FlingArms.TextWrapped = true | |
774 | ||
775 | -- Buttons | |
776 | col = Color3.new(0.886275, 0.776471, 0.368627) | |
777 | loc = Color3.new(1, 0.906471, 0.568627) | |
778 | rcol = Color3.new(0.682353, 0.701961, 0.792157) | |
779 | rloc = Color3.new(0.882353, 0.901961, 0.992157) | |
780 | ||
781 | CloseGUI.MouseButton1Click:connect(function() | |
782 | MainFrame.Visible = false | |
783 | SideFrame.Visible = true | |
784 | SideFrame.Position = MainFrame.Position | |
785 | end) | |
786 | ||
787 | OpenGUI.MouseButton1Click:connect(function() | |
788 | MainFrame.Visible = true | |
789 | SideFrame.Visible = false | |
790 | MainFrame.Position = SideFrame.Position | |
791 | end) | |
792 | ||
793 | if (game:GetService"Players".LocalPlayer.Character:WaitForChild("Humanoid").RigType == Enum.HumanoidRigType.R15) then | |
794 | ScrollingFrame.Visible = false | |
795 | ScrollingFrameR15.Visible = true | |
796 | CheckR.Text = "Showing R15 Animations" | |
797 | else | |
798 | ScrollingFrame.Visible = true | |
799 | ScrollingFrameR15.Visible = false | |
800 | CheckR.Text = "Showing R6 Animations" | |
801 | end | |
802 | ||
803 | local Anim = Instance.new("Animation") | |
804 | Anim.AnimationId = "rbxassetid://35154961" | |
805 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
806 | local HeadThrowACTIVE = false | |
807 | HeadThrow.MouseButton1Click:connect(function() | |
808 | HeadThrowACTIVE = not HeadThrowACTIVE | |
809 | if HeadThrowACTIVE then | |
810 | HeadThrow.BackgroundColor3 = loc | |
811 | while wait() do | |
812 | if track.IsPlaying == false then | |
813 | if HeadThrowACTIVE then | |
814 | track:Play(.1, 1, 1) | |
815 | end | |
816 | end | |
817 | end | |
818 | else | |
819 | track:Stop() | |
820 | HeadThrow.BackgroundColor3 = col | |
821 | end | |
822 | end) | |
823 | ||
824 | local Anim = Instance.new("Animation") | |
825 | Anim.AnimationId = "rbxassetid://121572214" | |
826 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
827 | local FloatingHeadACTIVE = false | |
828 | FloatingHead.MouseButton1Click:connect(function() | |
829 | FloatingHeadACTIVE = not FloatingHeadACTIVE | |
830 | if FloatingHeadACTIVE then | |
831 | track:Play(.1, 1, 1) | |
832 | FloatingHead.BackgroundColor3 = loc | |
833 | else | |
834 | track:Stop() | |
835 | FloatingHead.BackgroundColor3 = col | |
836 | end | |
837 | end) | |
838 | ||
839 | local Anim = Instance.new("Animation") | |
840 | Anim.AnimationId = "rbxassetid://182724289" | |
841 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
842 | local CrouchACTIVE = false | |
843 | Crouch.MouseButton1Click:connect(function() | |
844 | CrouchACTIVE = not CrouchACTIVE | |
845 | if CrouchACTIVE then | |
846 | track:Play(.1, 1, 1) | |
847 | Crouch.BackgroundColor3 = loc | |
848 | else | |
849 | track:Stop() | |
850 | Crouch.BackgroundColor3 = col | |
851 | end | |
852 | end) | |
853 | ||
854 | local Anim = Instance.new("Animation") | |
855 | Anim.AnimationId = "rbxassetid://282574440" | |
856 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
857 | local FloorCrawlACTIVE = false | |
858 | FloorCrawl.MouseButton1Click:connect(function() | |
859 | FloorCrawlACTIVE = not FloorCrawlACTIVE | |
860 | if FloorCrawlACTIVE then | |
861 | track:Play(.1, 1, 1) | |
862 | FloorCrawl.BackgroundColor3 = loc | |
863 | else | |
864 | track:Stop() | |
865 | FloorCrawl.BackgroundColor3 = col | |
866 | end | |
867 | end) | |
868 | ||
869 | local Anim = Instance.new("Animation") | |
870 | Anim.AnimationId = "rbxassetid://204328711" | |
871 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
872 | local DinoWalkACTIVE = false | |
873 | DinoWalk.MouseButton1Click:connect(function() | |
874 | DinoWalkACTIVE = not DinoWalkACTIVE | |
875 | if DinoWalkACTIVE then | |
876 | track:Play(.1, 1, 1) | |
877 | DinoWalk.BackgroundColor3 = loc | |
878 | else | |
879 | track:Stop() | |
880 | DinoWalk.BackgroundColor3 = col | |
881 | end | |
882 | end) | |
883 | ||
884 | local Anim = Instance.new("Animation") | |
885 | Anim.AnimationId = "rbxassetid://429681631" | |
886 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
887 | local JumpingJacksACTIVE = false | |
888 | JumpingJacks.MouseButton1Click:connect(function() | |
889 | JumpingJacksACTIVE = not JumpingJacksACTIVE | |
890 | if JumpingJacksACTIVE then | |
891 | track:Play(.1, 1, 1) | |
892 | JumpingJacks.BackgroundColor3 = loc | |
893 | else | |
894 | track:Stop() | |
895 | JumpingJacks.BackgroundColor3 = col | |
896 | end | |
897 | end) | |
898 | ||
899 | local Anim = Instance.new("Animation") | |
900 | Anim.AnimationId = "rbxassetid://35154961" | |
901 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
902 | local LoopHeadACTIVE = false | |
903 | LoopHead.MouseButton1Click:connect(function() | |
904 | LoopHeadACTIVE = not LoopHeadACTIVE | |
905 | if LoopHeadACTIVE then | |
906 | LoopHead.BackgroundColor3 = loc | |
907 | while wait() do | |
908 | if track.IsPlaying == false then | |
909 | if LoopHeadACTIVE then | |
910 | track:Play(.5, 1, 1e6) | |
911 | end | |
912 | end | |
913 | end | |
914 | else | |
915 | track:Stop() | |
916 | LoopHead.BackgroundColor3 = col | |
917 | end | |
918 | end) | |
919 | ||
920 | local Anim = Instance.new("Animation") | |
921 | Anim.AnimationId = "rbxassetid://184574340" | |
922 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
923 | local HeroJumpACTIVE = false | |
924 | HeroJump.MouseButton1Click:connect(function() | |
925 | HeroJumpACTIVE = not HeroJumpACTIVE | |
926 | if HeroJumpACTIVE then | |
927 | HeroJump.BackgroundColor3 = loc | |
928 | while wait() do | |
929 | if track.IsPlaying == false then | |
930 | if HeroJumpACTIVE then | |
931 | track:Play(.1, 1, 1) | |
932 | end | |
933 | end | |
934 | end | |
935 | else | |
936 | track:Stop() | |
937 | HeroJump.BackgroundColor3 = col | |
938 | end | |
939 | end) | |
940 | ||
941 | local Anim = Instance.new("Animation") | |
942 | Anim.AnimationId = "rbxassetid://181526230" | |
943 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
944 | local FaintACTIVE = false | |
945 | Faint.MouseButton1Click:connect(function() | |
946 | FaintACTIVE = not FaintACTIVE | |
947 | if FaintACTIVE then | |
948 | track:Play(.1, 1, 1) | |
949 | Faint.BackgroundColor3 = loc | |
950 | else | |
951 | track:Stop() | |
952 | Faint.BackgroundColor3 = col | |
953 | end | |
954 | end) | |
955 | ||
956 | local Anim = Instance.new("Animation") | |
957 | Anim.AnimationId = "rbxassetid://181525546" | |
958 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
959 | local FloorFaintACTIVE = false | |
960 | FloorFaint.MouseButton1Click:connect(function() | |
961 | FloorFaintACTIVE = not FloorFaintACTIVE | |
962 | if FloorFaintACTIVE then | |
963 | FloorFaint.BackgroundColor3 = loc | |
964 | while wait() do | |
965 | if track.IsPlaying == false then | |
966 | if FloorFaintACTIVE then | |
967 | track:Play(.1, 1, 2) | |
968 | end | |
969 | end | |
970 | end | |
971 | else | |
972 | track:Stop() | |
973 | FloorFaint.BackgroundColor3 = col | |
974 | end | |
975 | end) | |
976 | ||
977 | local Anim = Instance.new("Animation") | |
978 | Anim.AnimationId = "rbxassetid://181525546" | |
979 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
980 | local SuperFaintACTIVE = false | |
981 | SuperFaint.MouseButton1Click:connect(function() | |
982 | SuperFaintACTIVE = not SuperFaintACTIVE | |
983 | if SuperFaintACTIVE then | |
984 | SuperFaint.BackgroundColor3 = loc | |
985 | while wait() do | |
986 | if track.IsPlaying == false then | |
987 | if SuperFaintACTIVE then | |
988 | track:Play(.1, 0.5, 40) | |
989 | end | |
990 | end | |
991 | end | |
992 | else | |
993 | track:Stop() | |
994 | SuperFaint.BackgroundColor3 = col | |
995 | end | |
996 | end) | |
997 | ||
998 | local Anim = Instance.new("Animation") | |
999 | Anim.AnimationId = "rbxassetid://313762630" | |
1000 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1001 | local LevitateACTIVE = false | |
1002 | Levitate.MouseButton1Click:connect(function() | |
1003 | LevitateACTIVE = not LevitateACTIVE | |
1004 | if LevitateACTIVE then | |
1005 | track:Play(.1, 1, 1) | |
1006 | Levitate.BackgroundColor3 = loc | |
1007 | else | |
1008 | track:Stop() | |
1009 | Levitate.BackgroundColor3 = col | |
1010 | end | |
1011 | end) | |
1012 | ||
1013 | local Anim = Instance.new("Animation") | |
1014 | Anim.AnimationId = "rbxassetid://183412246" | |
1015 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1016 | local DabACTIVE = false | |
1017 | Dab.MouseButton1Click:connect(function() | |
1018 | DabACTIVE = not DabACTIVE | |
1019 | if DabACTIVE then | |
1020 | Dab.BackgroundColor3 = loc | |
1021 | while wait() do | |
1022 | if track.IsPlaying == false then | |
1023 | if DabACTIVE then | |
1024 | track:Play(.1, 1, 1) | |
1025 | end | |
1026 | end | |
1027 | end | |
1028 | else | |
1029 | track:Stop() | |
1030 | Dab.BackgroundColor3 = col | |
1031 | end | |
1032 | end) | |
1033 | ||
1034 | local Anim = Instance.new("Animation") | |
1035 | Anim.AnimationId = "rbxassetid://188632011" | |
1036 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1037 | local SpinACTIVE = false | |
1038 | Spinner.MouseButton1Click:connect(function() | |
1039 | SpinACTIVE = not SpinACTIVE | |
1040 | if SpinACTIVE then | |
1041 | Spinner.BackgroundColor3 = loc | |
1042 | while wait() do | |
1043 | if track.IsPlaying == false then | |
1044 | if SpinACTIVE then | |
1045 | track:Play(.1, 1, 2) | |
1046 | end | |
1047 | end | |
1048 | end | |
1049 | else | |
1050 | track:Stop() | |
1051 | Spinner.BackgroundColor3 = col | |
1052 | end | |
1053 | end) | |
1054 | ||
1055 | local Anim = Instance.new("Animation") | |
1056 | Anim.AnimationId = "rbxassetid://179224234" | |
1057 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1058 | local FloatSitACTIVE = false | |
1059 | FloatSit.MouseButton1Click:connect(function() | |
1060 | FloatSitACTIVE = not FloatSitACTIVE | |
1061 | if FloatSitACTIVE then | |
1062 | track:Play(.1, 1, 1) | |
1063 | FloatSit.BackgroundColor3 = loc | |
1064 | else | |
1065 | track:Stop() | |
1066 | FloatSit.BackgroundColor3 = col | |
1067 | end | |
1068 | end) | |
1069 | ||
1070 | local Anim = Instance.new("Animation") | |
1071 | Anim.AnimationId = "rbxassetid://429703734" | |
1072 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1073 | local MovingDanceACTIVE = false | |
1074 | MovingDance.MouseButton1Click:connect(function() | |
1075 | MovingDanceACTIVE = not MovingDanceACTIVE | |
1076 | if MovingDanceACTIVE then | |
1077 | MovingDance.BackgroundColor3 = loc | |
1078 | while wait() do | |
1079 | if track.IsPlaying == false then | |
1080 | if MovingDanceACTIVE then | |
1081 | track:Play(.1, 1, 1) | |
1082 | end | |
1083 | end | |
1084 | end | |
1085 | else | |
1086 | track:Stop() | |
1087 | MovingDance.BackgroundColor3 = col | |
1088 | end | |
1089 | end) | |
1090 | ||
1091 | local Anim = Instance.new("Animation") | |
1092 | Anim.AnimationId = "rbxassetid://215384594" | |
1093 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1094 | local WeirdMoveACTIVE = false | |
1095 | WeirdMove.MouseButton1Click:connect(function() | |
1096 | WeirdMoveACTIVE = not WeirdMoveACTIVE | |
1097 | if WeirdMoveACTIVE then | |
1098 | track:Play(.1, 1, 1) | |
1099 | WeirdMove.BackgroundColor3 = loc | |
1100 | else | |
1101 | track:Stop() | |
1102 | WeirdMove.BackgroundColor3 = col | |
1103 | end | |
1104 | end) | |
1105 | ||
1106 | local Anim = Instance.new("Animation") | |
1107 | Anim.AnimationId = "rbxassetid://215384594" | |
1108 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1109 | local CloneIllusionACTIVE = false | |
1110 | CloneIllusion.MouseButton1Click:connect(function() | |
1111 | CloneIllusionACTIVE = not CloneIllusionACTIVE | |
1112 | if CloneIllusionACTIVE then | |
1113 | track:Play(.5, 1, 1e7) | |
1114 | CloneIllusion.BackgroundColor3 = loc | |
1115 | else | |
1116 | track:Stop() | |
1117 | CloneIllusion.BackgroundColor3 = col | |
1118 | end | |
1119 | end) | |
1120 | ||
1121 | local Anim = Instance.new("Animation") | |
1122 | Anim.AnimationId = "rbxassetid://313762630" | |
1123 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1124 | local GlitchLevitateACTIVE = false | |
1125 | GlitchLevitate.MouseButton1Click:connect(function() | |
1126 | GlitchLevitateACTIVE = not GlitchLevitateACTIVE | |
1127 | if GlitchLevitateACTIVE then | |
1128 | track:Play(.5, 1, 1e7) | |
1129 | GlitchLevitate.BackgroundColor3 = loc | |
1130 | else | |
1131 | track:Stop() | |
1132 | GlitchLevitate.BackgroundColor3 = col | |
1133 | end | |
1134 | end) | |
1135 | ||
1136 | local Anim = Instance.new("Animation") | |
1137 | Anim.AnimationId = "rbxassetid://429730430" | |
1138 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1139 | local SpinDanceACTIVE = false | |
1140 | SpinDance.MouseButton1Click:connect(function() | |
1141 | SpinDanceACTIVE = not SpinDanceACTIVE | |
1142 | if SpinDanceACTIVE then | |
1143 | SpinDance.BackgroundColor3 = loc | |
1144 | while wait() do | |
1145 | if track.IsPlaying == false then | |
1146 | if SpinDanceACTIVE then | |
1147 | track:Play(.1, 1, 1) | |
1148 | end | |
1149 | end | |
1150 | end | |
1151 | else | |
1152 | track:Stop() | |
1153 | SpinDance.BackgroundColor3 = col | |
1154 | end | |
1155 | end) | |
1156 | ||
1157 | local Anim = Instance.new("Animation") | |
1158 | Anim.AnimationId = "rbxassetid://45834924" | |
1159 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1160 | local MoonDanceACTIVE = false | |
1161 | MoonDance.MouseButton1Click:connect(function() | |
1162 | MoonDanceACTIVE = not MoonDanceACTIVE | |
1163 | if MoonDanceACTIVE then | |
1164 | MoonDance.BackgroundColor3 = loc | |
1165 | while wait() do | |
1166 | if track.IsPlaying == false then | |
1167 | if MoonDanceACTIVE then | |
1168 | track:Play(.1, 1, 1) | |
1169 | end | |
1170 | end | |
1171 | end | |
1172 | else | |
1173 | track:Stop() | |
1174 | MoonDance.BackgroundColor3 = col | |
1175 | end | |
1176 | end) | |
1177 | ||
1178 | local Anim = Instance.new("Animation") | |
1179 | Anim.AnimationId = "rbxassetid://204062532" | |
1180 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1181 | local FullPunchACTIVE = false | |
1182 | FullPunch.MouseButton1Click:connect(function() | |
1183 | FullPunchACTIVE = not FullPunchACTIVE | |
1184 | if FullPunchACTIVE then | |
1185 | FullPunch.BackgroundColor3 = loc | |
1186 | while wait() do | |
1187 | if track.IsPlaying == false then | |
1188 | if FullPunchACTIVE then | |
1189 | track:Play(.1, 1, 1) | |
1190 | end | |
1191 | end | |
1192 | end | |
1193 | else | |
1194 | track:Stop() | |
1195 | FullPunch.BackgroundColor3 = col | |
1196 | end | |
1197 | end) | |
1198 | ||
1199 | local Anim = Instance.new("Animation") | |
1200 | Anim.AnimationId = "rbxassetid://186934910" | |
1201 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1202 | local SpinDance2ACTIVE = false | |
1203 | SpinDance2.MouseButton1Click:connect(function() | |
1204 | SpinDance2ACTIVE = not SpinDance2ACTIVE | |
1205 | if SpinDance2ACTIVE then | |
1206 | SpinDance2.BackgroundColor3 = loc | |
1207 | while wait() do | |
1208 | if track.IsPlaying == false then | |
1209 | if SpinDance2ACTIVE then | |
1210 | track:Play(.1, 1, 1) | |
1211 | end | |
1212 | end | |
1213 | end | |
1214 | else | |
1215 | track:Stop() | |
1216 | SpinDance2.BackgroundColor3 = col | |
1217 | end | |
1218 | end) | |
1219 | ||
1220 | local Anim = Instance.new("Animation") | |
1221 | Anim.AnimationId = "rbxassetid://204292303" | |
1222 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1223 | local BowDownACTIVE = false | |
1224 | BowDown.MouseButton1Click:connect(function() | |
1225 | BowDownACTIVE = not BowDownACTIVE | |
1226 | if BowDownACTIVE then | |
1227 | BowDown.BackgroundColor3 = loc | |
1228 | while wait() do | |
1229 | if track.IsPlaying == false then | |
1230 | if BowDownACTIVE then | |
1231 | track:Play(.1, 1, 3) | |
1232 | end | |
1233 | end | |
1234 | end | |
1235 | else | |
1236 | track:Stop() | |
1237 | BowDown.BackgroundColor3 = col | |
1238 | end | |
1239 | end) | |
1240 | ||
1241 | local Anim = Instance.new("Animation") | |
1242 | Anim.AnimationId = "rbxassetid://204295235" | |
1243 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1244 | local SwordSlamACTIVE = false | |
1245 | SwordSlam.MouseButton1Click:connect(function() | |
1246 | SwordSlamACTIVE = not SwordSlamACTIVE | |
1247 | if SwordSlamACTIVE then | |
1248 | SwordSlam.BackgroundColor3 = loc | |
1249 | while wait() do | |
1250 | if track.IsPlaying == false then | |
1251 | if SwordSlamACTIVE then | |
1252 | track:Play(.1, 1, 1) | |
1253 | end | |
1254 | end | |
1255 | end | |
1256 | else | |
1257 | track:Stop() | |
1258 | SwordSlam.BackgroundColor3 = col | |
1259 | end | |
1260 | end) | |
1261 | ||
1262 | local Anim = Instance.new("Animation") | |
1263 | Anim.AnimationId = "rbxassetid://204295235" | |
1264 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1265 | local LoopSlamACTIVE = false | |
1266 | LoopSlam.MouseButton1Click:connect(function() | |
1267 | LoopSlamACTIVE = not LoopSlamACTIVE | |
1268 | if LoopSlamACTIVE then | |
1269 | LoopSlam.BackgroundColor3 = loc | |
1270 | while wait() do | |
1271 | if track.IsPlaying == false then | |
1272 | if LoopSlamACTIVE then | |
1273 | track:Play(.1, 1, 1e4) | |
1274 | end | |
1275 | end | |
1276 | end | |
1277 | else | |
1278 | track:Stop() | |
1279 | LoopSlam.BackgroundColor3 = col | |
1280 | end | |
1281 | end) | |
1282 | ||
1283 | local Anim = Instance.new("Animation") | |
1284 | Anim.AnimationId = "rbxassetid://184574340" | |
1285 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1286 | local MegaInsaneACTIVE = false | |
1287 | MegaInsane.MouseButton1Click:connect(function() | |
1288 | MegaInsaneACTIVE = not MegaInsaneACTIVE | |
1289 | if MegaInsaneACTIVE then | |
1290 | MegaInsane.BackgroundColor3 = loc | |
1291 | while wait() do | |
1292 | if track.IsPlaying == false then | |
1293 | if MegaInsaneACTIVE then | |
1294 | track:Play(.1, 0.5, 40) | |
1295 | end | |
1296 | end | |
1297 | end | |
1298 | else | |
1299 | track:Stop() | |
1300 | MegaInsane.BackgroundColor3 = col | |
1301 | end | |
1302 | end) | |
1303 | ||
1304 | local Anim = Instance.new("Animation") | |
1305 | Anim.AnimationId = "rbxassetid://126753849" | |
1306 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1307 | local SuperPunchACTIVE = false | |
1308 | SuperPunch.MouseButton1Click:connect(function() | |
1309 | SuperPunchACTIVE = not SuperPunchACTIVE | |
1310 | if SuperPunchACTIVE then | |
1311 | SuperPunch.BackgroundColor3 = loc | |
1312 | while wait() do | |
1313 | if track.IsPlaying == false then | |
1314 | if SuperPunchACTIVE then | |
1315 | track:Play(.1, 1, 3) | |
1316 | end | |
1317 | end | |
1318 | end | |
1319 | else | |
1320 | track:Stop() | |
1321 | SuperPunch.BackgroundColor3 = col | |
1322 | end | |
1323 | end) | |
1324 | ||
1325 | local Anim = Instance.new("Animation") | |
1326 | Anim.AnimationId = "rbxassetid://218504594" | |
1327 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1328 | local FullSwingACTIVE = false | |
1329 | FullSwing.MouseButton1Click:connect(function() | |
1330 | FullSwingACTIVE = not FullSwingACTIVE | |
1331 | if FullSwingACTIVE then | |
1332 | FullSwing.BackgroundColor3 = loc | |
1333 | while wait() do | |
1334 | if track.IsPlaying == false then | |
1335 | if FullSwingACTIVE then | |
1336 | track:Play(.1, 1, 1) | |
1337 | end | |
1338 | end | |
1339 | end | |
1340 | else | |
1341 | track:Stop() | |
1342 | FullSwing.BackgroundColor3 = col | |
1343 | end | |
1344 | end) | |
1345 | ||
1346 | local Anim = Instance.new("Animation") | |
1347 | Anim.AnimationId = "rbxassetid://259438880" | |
1348 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1349 | local ArmTurbineACTIVE = false | |
1350 | ArmTurbine.MouseButton1Click:connect(function() | |
1351 | ArmTurbineACTIVE = not ArmTurbineACTIVE | |
1352 | if ArmTurbineACTIVE then | |
1353 | track:Play(.1, 1, 1e3) | |
1354 | ArmTurbine.BackgroundColor3 = loc | |
1355 | else | |
1356 | track:Stop() | |
1357 | ArmTurbine.BackgroundColor3 = col | |
1358 | end | |
1359 | end) | |
1360 | ||
1361 | local Anim = Instance.new("Animation") | |
1362 | Anim.AnimationId = "rbxassetid://136801964" | |
1363 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1364 | local BarrelRollACTIVE = false | |
1365 | BarrelRoll.MouseButton1Click:connect(function() | |
1366 | BarrelRollACTIVE = not BarrelRollACTIVE | |
1367 | if BarrelRollACTIVE then | |
1368 | BarrelRoll.BackgroundColor3 = loc | |
1369 | while wait() do | |
1370 | if track.IsPlaying == false then | |
1371 | if BarrelRollACTIVE then | |
1372 | track:Play(.1, 1, 1) | |
1373 | end | |
1374 | end | |
1375 | end | |
1376 | else | |
1377 | track:Stop() | |
1378 | BarrelRoll.BackgroundColor3 = col | |
1379 | end | |
1380 | end) | |
1381 | ||
1382 | local Anim = Instance.new("Animation") | |
1383 | Anim.AnimationId = "rbxassetid://180612465" | |
1384 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1385 | local ScaredACTIVE = false | |
1386 | Scared.MouseButton1Click:connect(function() | |
1387 | ScaredACTIVE = not ScaredACTIVE | |
1388 | if ScaredACTIVE then | |
1389 | Scared.BackgroundColor3 = loc | |
1390 | while wait() do | |
1391 | if track.IsPlaying == false then | |
1392 | if ScaredACTIVE then | |
1393 | track:Play(.1, 1, 1) | |
1394 | end | |
1395 | end | |
1396 | end | |
1397 | else | |
1398 | track:Stop() | |
1399 | Scared.BackgroundColor3 = col | |
1400 | end | |
1401 | end) | |
1402 | ||
1403 | local Anim = Instance.new("Animation") | |
1404 | Anim.AnimationId = "rbxassetid://33796059" | |
1405 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1406 | local InsaneACTIVE = false | |
1407 | Insane.MouseButton1Click:connect(function() | |
1408 | InsaneACTIVE = not InsaneACTIVE | |
1409 | if InsaneACTIVE then | |
1410 | track:Play(.1, 1, 1e8) | |
1411 | Insane.BackgroundColor3 = loc | |
1412 | else | |
1413 | track:Stop() | |
1414 | Insane.BackgroundColor3 = col | |
1415 | end | |
1416 | end) | |
1417 | ||
1418 | local Anim = Instance.new("Animation") | |
1419 | Anim.AnimationId = "rbxassetid://33169583" | |
1420 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1421 | local ArmDetachACTIVE = false | |
1422 | ArmDetach.MouseButton1Click:connect(function() | |
1423 | ArmDetachACTIVE = not ArmDetachACTIVE | |
1424 | if ArmDetachACTIVE then | |
1425 | ArmDetach.BackgroundColor3 = loc | |
1426 | while wait() do | |
1427 | if track.IsPlaying == false then | |
1428 | if ArmDetachACTIVE then | |
1429 | track:Play(.1, 1, 1e6) | |
1430 | end | |
1431 | end | |
1432 | end | |
1433 | else | |
1434 | track:Stop() | |
1435 | ArmDetach.BackgroundColor3 = col | |
1436 | end | |
1437 | end) | |
1438 | ||
1439 | local Anim = Instance.new("Animation") | |
1440 | Anim.AnimationId = "rbxassetid://35978879" | |
1441 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1442 | local SwordSliceACTIVE = false | |
1443 | SwordSlice.MouseButton1Click:connect(function() | |
1444 | SwordSliceACTIVE = not SwordSliceACTIVE | |
1445 | if SwordSliceACTIVE then | |
1446 | track:Play(.1, 1, 1) | |
1447 | SwordSlice.BackgroundColor3 = loc | |
1448 | else | |
1449 | track:Stop() | |
1450 | SwordSlice.BackgroundColor3 = col | |
1451 | end | |
1452 | end) | |
1453 | ||
1454 | local Anim = Instance.new("Animation") | |
1455 | Anim.AnimationId = "rbxassetid://27432691" | |
1456 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1457 | local InsaneArmsACTIVE = false | |
1458 | InsaneArms.MouseButton1Click:connect(function() | |
1459 | InsaneArmsACTIVE = not InsaneArmsACTIVE | |
1460 | if InsaneArmsACTIVE then | |
1461 | InsaneArms.BackgroundColor3 = loc | |
1462 | while wait() do | |
1463 | if track.IsPlaying == false then | |
1464 | if InsaneArmsACTIVE then | |
1465 | track:Play(.1, 1, 1e4) | |
1466 | end | |
1467 | end | |
1468 | end | |
1469 | else | |
1470 | track:Stop() | |
1471 | InsaneArms.BackgroundColor3 = col | |
1472 | end | |
1473 | end) | |
1474 | -- R15 | |
1475 | local Anim = Instance.new("Animation") | |
1476 | Anim.AnimationId = "rbxassetid://674871189" | |
1477 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1478 | local CrazySlashACTIVE = false | |
1479 | CrazySlash.MouseButton1Click:connect(function() | |
1480 | CrazySlashACTIVE = not CrazySlashACTIVE | |
1481 | if CrazySlashACTIVE then | |
1482 | CrazySlash.BackgroundColor3 = rloc | |
1483 | while wait() do | |
1484 | if track.IsPlaying == false then | |
1485 | if CrazySlashACTIVE then | |
1486 | track:Play(.1, 1, 1) | |
1487 | end | |
1488 | end | |
1489 | end | |
1490 | else | |
1491 | track:Stop() | |
1492 | CrazySlash.BackgroundColor3 = rcol | |
1493 | end | |
1494 | end) | |
1495 | ||
1496 | local Anim = Instance.new("Animation") | |
1497 | Anim.AnimationId = "rbxassetid://582855105" | |
1498 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1499 | local OpenACTIVE = false | |
1500 | Open.MouseButton1Click:connect(function() | |
1501 | OpenACTIVE = not OpenACTIVE | |
1502 | if OpenACTIVE then | |
1503 | Open.BackgroundColor3 = rloc | |
1504 | while wait() do | |
1505 | if track.IsPlaying == false then | |
1506 | if OpenACTIVE then | |
1507 | track:Play(.1, 1, 1) | |
1508 | end | |
1509 | end | |
1510 | end | |
1511 | else | |
1512 | track:Stop() | |
1513 | Open.BackgroundColor3 = rcol | |
1514 | end | |
1515 | end) | |
1516 | ||
1517 | local Anim = Instance.new("Animation") | |
1518 | Anim.AnimationId = "rbxassetid://754658275" | |
1519 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1520 | local R15SpinnerACTIVE = false | |
1521 | R15Spinner.MouseButton1Click:connect(function() | |
1522 | R15SpinnerACTIVE = not R15SpinnerACTIVE | |
1523 | if R15SpinnerACTIVE then | |
1524 | R15Spinner.BackgroundColor3 = rloc | |
1525 | while wait() do | |
1526 | if track.IsPlaying == false then | |
1527 | if R15SpinnerACTIVE then | |
1528 | track:Play(.1, 1, 1) | |
1529 | end | |
1530 | end | |
1531 | end | |
1532 | else | |
1533 | track:Stop() | |
1534 | R15Spinner.BackgroundColor3 = rcol | |
1535 | end | |
1536 | end) | |
1537 | ||
1538 | local Anim = Instance.new("Animation") | |
1539 | Anim.AnimationId = "rbxassetid://582384156" | |
1540 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1541 | local ArmsOutACTIVE = false | |
1542 | ArmsOut.MouseButton1Click:connect(function() | |
1543 | ArmsOutACTIVE = not ArmsOutACTIVE | |
1544 | if ArmsOutACTIVE then | |
1545 | ArmsOut.BackgroundColor3 = rloc | |
1546 | while wait() do | |
1547 | if track.IsPlaying == false then | |
1548 | if ArmsOutACTIVE then | |
1549 | track:Play(.1, 1, 1) | |
1550 | end | |
1551 | end | |
1552 | end | |
1553 | else | |
1554 | track:Stop() | |
1555 | ArmsOut.BackgroundColor3 = rcol | |
1556 | end | |
1557 | end) | |
1558 | ||
1559 | local Anim = Instance.new("Animation") | |
1560 | Anim.AnimationId = "rbxassetid://717879555" | |
1561 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1562 | local FloatSlashACTIVE = false | |
1563 | FloatSlash.MouseButton1Click:connect(function() | |
1564 | FloatSlashACTIVE = not FloatSlashACTIVE | |
1565 | if FloatSlashACTIVE then | |
1566 | FloatSlash.BackgroundColor3 = rloc | |
1567 | while wait() do | |
1568 | if track.IsPlaying == false then | |
1569 | if FloatSlashACTIVE then | |
1570 | track:Play(.1, 1, 1) | |
1571 | end | |
1572 | end | |
1573 | end | |
1574 | else | |
1575 | track:Stop() | |
1576 | FloatSlash.BackgroundColor3 = rcol | |
1577 | end | |
1578 | end) | |
1579 | ||
1580 | local Anim = Instance.new("Animation") | |
1581 | Anim.AnimationId = "rbxassetid://708553116" | |
1582 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1583 | WeirdZombieACTIVE = false | |
1584 | WeirdZombie.MouseButton1Click:connect(function() | |
1585 | WeirdZombieACTIVE = not WeirdZombieACTIVE | |
1586 | if WeirdZombieACTIVE then | |
1587 | WeirdZombie.BackgroundColor3 = rloc | |
1588 | while wait() do | |
1589 | if track.IsPlaying == false then | |
1590 | if WeirdZombieACTIVE then | |
1591 | track:Play(.1, 1, 1) | |
1592 | end | |
1593 | end | |
1594 | end | |
1595 | else | |
1596 | track:Stop() | |
1597 | WeirdZombie.BackgroundColor3 = rcol | |
1598 | end | |
1599 | end) | |
1600 | ||
1601 | local Anim = Instance.new("Animation") | |
1602 | Anim.AnimationId = "rbxassetid://746398327" | |
1603 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1604 | DownSlashACTIVE = false | |
1605 | DownSlash.MouseButton1Click:connect(function() | |
1606 | DownSlashACTIVE = not DownSlashACTIVE | |
1607 | if DownSlashACTIVE then | |
1608 | DownSlash.BackgroundColor3 = rloc | |
1609 | while wait() do | |
1610 | if track.IsPlaying == false then | |
1611 | if DownSlashACTIVE then | |
1612 | track:Play(.1, 1, 1) | |
1613 | end | |
1614 | end | |
1615 | end | |
1616 | else | |
1617 | track:Stop() | |
1618 | DownSlash.BackgroundColor3 = rcol | |
1619 | end | |
1620 | end) | |
1621 | ||
1622 | local Anim = Instance.new("Animation") | |
1623 | Anim.AnimationId = "rbxassetid://675025795" | |
1624 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1625 | PullACTIVE = false | |
1626 | Pull.MouseButton1Click:connect(function() | |
1627 | PullACTIVE = not PullACTIVE | |
1628 | if PullACTIVE then | |
1629 | Pull.BackgroundColor3 = rloc | |
1630 | while wait() do | |
1631 | if track.IsPlaying == false then | |
1632 | if PullACTIVE then | |
1633 | track:Play(.1, 1, 1) | |
1634 | end | |
1635 | end | |
1636 | end | |
1637 | else | |
1638 | track:Stop() | |
1639 | Pull.BackgroundColor3 = rcol | |
1640 | end | |
1641 | end) | |
1642 | ||
1643 | local Anim = Instance.new("Animation") | |
1644 | Anim.AnimationId = "rbxassetid://698251653" | |
1645 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1646 | CircleArmACTIVE = false | |
1647 | CircleArm.MouseButton1Click:connect(function() | |
1648 | CircleArmACTIVE = not CircleArmACTIVE | |
1649 | if CircleArmACTIVE then | |
1650 | CircleArm.BackgroundColor3 = rloc | |
1651 | while wait() do | |
1652 | if track.IsPlaying == false then | |
1653 | if CircleArmACTIVE then | |
1654 | track:Play(.1, 1, 1) | |
1655 | end | |
1656 | end | |
1657 | end | |
1658 | else | |
1659 | track:Stop() | |
1660 | CircleArm.BackgroundColor3 = rcol | |
1661 | end | |
1662 | end) | |
1663 | ||
1664 | local Anim = Instance.new("Animation") | |
1665 | Anim.AnimationId = "rbxassetid://696096087" | |
1666 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1667 | BendACTIVE = false | |
1668 | Bend.MouseButton1Click:connect(function() | |
1669 | BendACTIVE = not BendACTIVE | |
1670 | if BendACTIVE then | |
1671 | Bend.BackgroundColor3 = rloc | |
1672 | while wait() do | |
1673 | if track.IsPlaying == false then | |
1674 | if BendACTIVE then | |
1675 | track:Play(.1, 1, 1) | |
1676 | end | |
1677 | end | |
1678 | end | |
1679 | else | |
1680 | track:Stop() | |
1681 | Bend.BackgroundColor3 = rcol | |
1682 | end | |
1683 | end) | |
1684 | ||
1685 | local Anim = Instance.new("Animation") | |
1686 | Anim.AnimationId = "rbxassetid://675025570" | |
1687 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1688 | RotateSlashACTIVE = false | |
1689 | RotateSlash.MouseButton1Click:connect(function() | |
1690 | RotateSlashACTIVE = not RotateSlashACTIVE | |
1691 | if RotateSlashACTIVE then | |
1692 | RotateSlash.BackgroundColor3 = rloc | |
1693 | while wait() do | |
1694 | if track.IsPlaying == false then | |
1695 | if RotateSlashACTIVE then | |
1696 | track:Play(.1, 1, 1) | |
1697 | end | |
1698 | end | |
1699 | end | |
1700 | else | |
1701 | track:Stop() | |
1702 | RotateSlash.BackgroundColor3 = rcol | |
1703 | end | |
1704 | end) | |
1705 | ||
1706 | local Anim = Instance.new("Animation") | |
1707 | Anim.AnimationId = "rbxassetid://754656200" | |
1708 | local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim) | |
1709 | FlingArmsACTIVE = false | |
1710 | FlingArms.MouseButton1Click:connect(function() | |
1711 | FlingArmsACTIVE = not FlingArmsACTIVE | |
1712 | if FlingArmsACTIVE then | |
1713 | FlingArms.BackgroundColor3 = rloc | |
1714 | while wait() do | |
1715 | if track.IsPlaying == false then | |
1716 | if FlingArmsACTIVE then | |
1717 | track:Play(.1, 1, 10) | |
1718 | end | |
1719 | end | |
1720 | end | |
1721 | else | |
1722 | track:Stop() | |
1723 | FlingArms.BackgroundColor3 = rcol | |
1724 | end | |
1725 | end) | |
1726 | ||
1727 | -- Finished update! |