Advertisement
IGhostxGamerI

Speed Simulator Gui

Jun 30th, 2018
19,686
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 165.18 KB | None | 0 0
  1. -- for this to work, your character needs to be r6.
  2.  
  3. -- Objects
  4.  
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local Open = Instance.new("TextButton")
  7. local Close = Instance.new("TextButton")
  8. local Noclip = Instance.new("TextButton")
  9. local Win = Instance.new("TextButton")
  10. local Fly = Instance.new("TextButton")
  11. local Gui = Instance.new("TextButton")
  12.  
  13. -- Properties
  14.  
  15. ScreenGui.Parent = game.CoreGui
  16.  
  17. Open.Name = "Open"
  18. Open.Parent = ScreenGui
  19. Open.BackgroundColor3 = Color3.new(0.792157, 0.792157, 0.792157)
  20. Open.BorderSizePixel = 0
  21. Open.Position = UDim2.new(0, 0, 0.647834301, 0)
  22. Open.Size = UDim2.new(0, 191, 0, 38)
  23. Open.Font = Enum.Font.Cartoon
  24. Open.Text = "Open"
  25. Open.TextColor3 = Color3.new(1, 1, 1)
  26. Open.TextScaled = true
  27. Open.TextSize = 14
  28. Open.TextWrapped = true
  29.  
  30. Close.Name = "Close"
  31. Close.Parent = ScreenGui
  32. Close.BackgroundColor3 = Color3.new(0.792157, 0.792157, 0.792157)
  33. Close.BorderSizePixel = 0
  34. Close.Position = UDim2.new(0, 0, 0.749529243, 0)
  35. Close.Size = UDim2.new(0, 191, 0, 38)
  36. Close.Font = Enum.Font.Cartoon
  37. Close.Text = "Close"
  38. Close.TextColor3 = Color3.new(1, 1, 1)
  39. Close.TextScaled = true
  40. Close.TextSize = 14
  41. Close.TextWrapped = true
  42.  
  43. Noclip.Name = "Noclip"
  44. Noclip.Parent = ScreenGui
  45. Noclip.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  46. Noclip.BorderSizePixel = 0
  47. Noclip.Position = UDim2.new(0.273390025, 0, 0.282485873, 0)
  48. Noclip.Size = UDim2.new(0, 190, 0, 40)
  49. Noclip.Visible = false
  50. Noclip.Font = Enum.Font.Cartoon
  51. Noclip.Text = "Noclip"
  52. Noclip.TextColor3 = Color3.new(1, 1, 1)
  53. Noclip.TextScaled = true
  54. Noclip.TextSize = 14
  55. Noclip.TextWrapped = true
  56.  
  57. Win.Name = "Win"
  58. Win.Parent = ScreenGui
  59. Win.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  60. Win.BorderSizePixel = 0
  61. Win.Position = UDim2.new(0.504252732, 0, 0.282485873, 0)
  62. Win.Size = UDim2.new(0, 190, 0, 40)
  63. Win.Visible = false
  64. Win.Font = Enum.Font.Cartoon
  65. Win.Text = "Win"
  66. Win.TextColor3 = Color3.new(1, 1, 1)
  67. Win.TextScaled = true
  68. Win.TextSize = 14
  69. Win.TextWrapped = true
  70.  
  71. Fly.Name = "Fly"
  72. Fly.Parent = ScreenGui
  73. Fly.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  74. Fly.BorderSizePixel = 0
  75. Fly.Position = UDim2.new(0.273390025, 0, 0.357815444, 0)
  76. Fly.Size = UDim2.new(0, 190, 0, 40)
  77. Fly.Visible = false
  78. Fly.Font = Enum.Font.Cartoon
  79. Fly.Text = "Fly (E)"
  80. Fly.TextColor3 = Color3.new(1, 1, 1)
  81. Fly.TextScaled = true
  82. Fly.TextSize = 14
  83. Fly.TextWrapped = true
  84.  
  85. Gui.Name = "Gui"
  86. Gui.Parent = ScreenGui
  87. Gui.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  88. Gui.BorderSizePixel = 0
  89. Gui.Position = UDim2.new(0.504252732, 0, 0.357815444, 0)
  90. Gui.Size = UDim2.new(0, 190, 0, 40)
  91. Gui.Visible = false
  92. Gui.Font = Enum.Font.Cartoon
  93. Gui.Text = "FE Gui"
  94. Gui.TextColor3 = Color3.new(1, 1, 1)
  95. Gui.TextScaled = true
  96. Gui.TextSize = 14
  97. Gui.TextWrapped = true
  98.  
  99. -- Scripts
  100.  
  101. Open.MouseButton1Up:Connect(function()
  102. Noclip.Visible = true
  103. Win.Visible = true
  104. Fly.Visible = true
  105. Gui.Visible = true
  106. end)
  107.  
  108. Close.MouseButton1Up:Connect(function()
  109. Noclip.Visible = false
  110. Win.Visible = false
  111. Fly.Visible = false
  112. Gui.Visible = false
  113. end)
  114.  
  115. Noclip.MouseButton1Up:Connect(function()
  116. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge
  117. game.Players.LocalPlayer.Character.Humanoid.Health = math.huge
  118. while true do
  119. game:GetService("RunService").Stepped:wait()
  120. game.Players.LocalPlayer.Character.Head.CanCollide = false
  121. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  122. end
  123. end)
  124.  
  125. Win.MouseButton1Up:Connect(function()
  126. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(793.77, 8, 222))
  127. end)
  128.  
  129. Fly.MouseButton1Up:Connect(function()
  130. repeat wait() until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  131. local mouse = game.Players.LocalPlayer:GetMouse()
  132. repeat wait() until mouse
  133. local plr = game.Players.LocalPlayer
  134. local torso = plr.Character.Torso
  135. local flying = true
  136. local deb = true
  137. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  138. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  139. local maxspeed = 50
  140. local speed = 0
  141.  
  142. function Fly()
  143. local bg = Instance.new("BodyGyro", torso)
  144. bg.P = 9e4
  145. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  146. bg.cframe = torso.CFrame
  147. local bv = Instance.new("BodyVelocity", torso)
  148. bv.velocity = Vector3.new(0,0.1,0)
  149. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  150. repeat wait()
  151. plr.Character.Humanoid.PlatformStand = true
  152. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  153. speed = speed+.5+(speed/maxspeed)
  154. if speed > maxspeed then
  155. speed = maxspeed
  156. end
  157. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  158. speed = speed-1
  159. if speed < 0 then
  160. speed = 0
  161. end
  162. end
  163. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  164. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  165. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  166. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  167. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  168. else
  169. bv.velocity = Vector3.new(0,0.1,0)
  170. end
  171. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  172. until not flying
  173. ctrl = {f = 0, b = 0, l = 0, r = 0}
  174. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  175. speed = 0
  176. bg:Destroy()
  177. bv:Destroy()
  178. plr.Character.Humanoid.PlatformStand = false
  179. end
  180. mouse.KeyDown:connect(function(key)
  181. if key:lower() == "e" then
  182. if flying then flying = false
  183. else
  184. flying = true
  185. Fly()
  186. end
  187. elseif key:lower() == "w" then
  188. ctrl.f = 1
  189. elseif key:lower() == "s" then
  190. ctrl.b = -1
  191. elseif key:lower() == "a" then
  192. ctrl.l = -1
  193. elseif key:lower() == "d" then
  194. ctrl.r = 1
  195. end
  196. end)
  197. mouse.KeyUp:connect(function(key)
  198. if key:lower() == "w" then
  199. ctrl.f = 0
  200. elseif key:lower() == "s" then
  201. ctrl.b = 0
  202. elseif key:lower() == "a" then
  203. ctrl.l = 0
  204. elseif key:lower() == "d" then
  205. ctrl.r = 0
  206. end
  207. end)
  208. Fly()
  209. end)
  210.  
  211. Gui.MouseButton1Up:Connect(function()
  212. wait(0.3)
  213. -- Objects
  214. -- CREDIT TO xFunnieuss / Timeless for partial (short) names.
  215.  
  216. OPFinality = Instance.new("ScreenGui")
  217. MainFrame = Instance.new("Frame")
  218. TopFrame = Instance.new("Frame")
  219. CloseGUI = Instance.new("TextButton")
  220. MenuEnterFrame = Instance.new("Frame")
  221. Title = Instance.new("TextLabel")
  222. OpenMenu = Instance.new("ImageButton")
  223. Pages = Instance.new("Frame")
  224. Information = Instance.new("Frame")
  225. Image_FE_ENABLED = Instance.new("ImageLabel")
  226. Text_FE_ENABLED = Instance.new("TextLabel")
  227. WhatIsOPFinality = Instance.new("TextLabel")
  228. Text_FE_DISABLED = Instance.new("TextLabel")
  229. OPFin_Description = Instance.new("TextLabel")
  230. OPFin_Warning = Instance.new("TextLabel")
  231. Info_Bar = Instance.new("Frame")
  232. Info_Background = Instance.new("Frame")
  233. Warning_Bar = Instance.new("Frame")
  234. Warning_Background = Instance.new("Frame")
  235. Info_Image = Instance.new("ImageLabel")
  236. Image_FE_DISABLED = Instance.new("ImageLabel")
  237. Warn_Image = Instance.new("ImageLabel")
  238. Others_1 = Instance.new("Frame")
  239. OthersTitle = Instance.new("TextLabel")
  240. Char_Image = Instance.new("ImageLabel")
  241. OthersText = Instance.new("TextLabel")
  242. TXTBOX_PlrName = Instance.new("TextBox")
  243. othersBaseBackground = Instance.new("Frame")
  244. TeleportTo = Instance.new("TextButton")
  245. Annoy = Instance.new("TextButton")
  246. Follow = Instance.new("TextButton")
  247. View = Instance.new("TextButton")
  248. Orbit = Instance.new("TextButton")
  249. HeadWalk = Instance.new("TextButton")
  250. Stick = Instance.new("TextButton")
  251. Spam = Instance.new("TextButton")
  252. Carpet = Instance.new("TextButton")
  253. Others_toPAGE2 = Instance.new("TextButton")
  254. Character_toPAGE2_IMAGE = Instance.new("ImageLabel")
  255. Character_2 = Instance.new("Frame")
  256. CharacterTitle = Instance.new("TextLabel")
  257. CharacterText = Instance.new("TextLabel")
  258. Animations_SPOOKY = Instance.new("Frame")
  259. spookytitle = Instance.new("TextLabel")
  260. headthrow = Instance.new("TextButton")
  261. armsoff = Instance.new("TextButton")
  262. loophead = Instance.new("TextButton")
  263. levitate = Instance.new("TextButton")
  264. headfloat = Instance.new("TextButton")
  265. Character_backPAGE1 = Instance.new("TextButton")
  266. Character_toPAGE1_IMAGE = Instance.new("ImageLabel")
  267. Animations_DANCE = Instance.new("Frame")
  268. dancetitle = Instance.new("TextLabel")
  269. normal = Instance.new("TextButton")
  270. movingdance = Instance.new("TextButton")
  271. insane = Instance.new("TextButton")
  272. happy = Instance.new("TextButton")
  273. spindance = Instance.new("TextButton")
  274. Animations_HEROIC = Instance.new("Frame")
  275. heroictitle = Instance.new("TextLabel")
  276. swordstrike = Instance.new("TextButton")
  277. jumpland = Instance.new("TextButton")
  278. punches = Instance.new("TextButton")
  279. swing = Instance.new("TextButton")
  280. crawl = Instance.new("TextButton")
  281. Char2_Image = Instance.new("ImageLabel")
  282. Character_1 = Instance.new("Frame")
  283. CharacterTitle_2 = Instance.new("TextLabel")
  284. Char_Image_2 = Instance.new("ImageLabel")
  285. CharacterText_2 = Instance.new("TextLabel")
  286. TXTBOX_Stats = Instance.new("TextBox")
  287. BackGroundChar = Instance.new("Frame")
  288. HipHeight = Instance.new("TextButton")
  289. JumpHeight = Instance.new("TextButton")
  290. Speed = Instance.new("TextButton")
  291. TXTBOX_Chat = Instance.new("TextBox")
  292. BackGroundChar2 = Instance.new("Frame")
  293. Chat = Instance.new("TextButton")
  294. Spam_2 = Instance.new("TextButton")
  295. BackGroundChar3 = Instance.new("Frame")
  296. Noclip = Instance.new("TextButton")
  297. Fly = Instance.new("TextButton")
  298. Character_toPAGE2 = Instance.new("TextButton")
  299. Character_toPAGE2_IMAGE_2 = Instance.new("ImageLabel")
  300. Others_2 = Instance.new("Frame")
  301. OthersTitle_2 = Instance.new("TextLabel")
  302. Other_Image2 = Instance.new("ImageLabel")
  303. OthersText_2 = Instance.new("TextLabel")
  304. TXTBOX_PlrName2 = Instance.new("TextBox")
  305. othersBaseBackground2 = Instance.new("Frame")
  306. Flatten = Instance.new("TextButton")
  307. AimHead = Instance.new("TextButton")
  308. Float = Instance.new("TextButton")
  309. Multiple = Instance.new("TextButton")
  310. Animated = Instance.new("TextButton")
  311. SlowAttract = Instance.new("TextButton")
  312. WeirdOrbit = Instance.new("TextButton")
  313. Violent = Instance.new("TextButton")
  314. Max = Instance.new("TextButton")
  315. Others_toPAGE3 = Instance.new("TextButton")
  316. Character_toPAGE3_IMAGE = Instance.new("ImageLabel")
  317. Others_backPAGE1 = Instance.new("TextButton")
  318. Character_toPAGE1_IMAGE_2 = Instance.new("ImageLabel")
  319. Extra_1 = Instance.new("Frame")
  320. Extra_Image = Instance.new("ImageLabel")
  321. ExtraText = Instance.new("TextLabel")
  322. ExtraBaseBackGround1 = Instance.new("Frame")
  323. CrouchRocket = Instance.new("TextButton")
  324. ExtraBaseBackGround1Side = Instance.new("Frame")
  325. CloneIllusion = Instance.new("TextButton")
  326. CoolSpin = Instance.new("TextButton")
  327. JumpRocket = Instance.new("TextButton")
  328. Extra_toPAGE2 = Instance.new("TextButton")
  329. Character_toPAGE2_IMAGE_3 = Instance.new("ImageLabel")
  330. Extra_Title = Instance.new("TextLabel")
  331. ExtraBaseBackGround2 = Instance.new("Frame")
  332. NoLimbs = Instance.new("TextButton")
  333. FEGodmode = Instance.new("TextButton")
  334. BrickHats = Instance.new("TextButton")
  335. RapidPunch = Instance.new("TextButton")
  336. ExtraBaseBackGround2Side = Instance.new("Frame")
  337. ExtraBaseBackGround3 = Instance.new("Frame")
  338. PunchFollow = Instance.new("TextButton")
  339. ArmFollow = Instance.new("TextButton")
  340. Spin = Instance.new("TextButton")
  341. Faint = Instance.new("TextButton")
  342. ExtraBaseBackGround3Side = Instance.new("Frame")
  343. Extra_2 = Instance.new("Frame")
  344. Extra_Image_2 = Instance.new("ImageLabel")
  345. ExtraText_2 = Instance.new("TextLabel")
  346. Extra_Title_2 = Instance.new("TextLabel")
  347. ExtraBaseBackGround2_2 = Instance.new("Frame")
  348. CrouchAttack = Instance.new("TextButton")
  349. WalkThrough = Instance.new("TextButton")
  350. CreepyWatch = Instance.new("TextButton")
  351. SpinAttack = Instance.new("TextButton")
  352. ExtraBaseBackGround2Side_2 = Instance.new("Frame")
  353. TXTBOX_PlrNameEXTRA = Instance.new("TextBox")
  354. _18 = Instance.new("TextButton")
  355. SlamPropulsion = Instance.new("TextButton")
  356. Extra_backPAGE1 = Instance.new("TextButton")
  357. Character_toPAGE1_IMAGE_3 = Instance.new("ImageLabel")
  358. Others_3 = Instance.new("Frame")
  359. OthersTitle_3 = Instance.new("TextLabel")
  360. Other_Image3 = Instance.new("ImageLabel")
  361. OthersText_3 = Instance.new("TextLabel")
  362. TXTBOX_PlrNameOTHER3 = Instance.new("TextBox")
  363. othersBaseBackground3 = Instance.new("Frame")
  364. FreeFall = Instance.new("TextButton")
  365. Attach = Instance.new("TextButton")
  366. Bring = Instance.new("TextButton")
  367. SafeKill = Instance.new("TextButton")
  368. SuperSpin = Instance.new("TextButton")
  369. Kill = Instance.new("TextButton")
  370. Others_backPAGE2 = Instance.new("TextButton")
  371. Character_toPAGE1_IMAGE_4 = Instance.new("ImageLabel")
  372. Games = Instance.new("Frame")
  373. Games_IMAGE = Instance.new("ImageLabel")
  374. GamesText = Instance.new("TextLabel")
  375. Games_TITLE = Instance.new("TextLabel")
  376. Games_IMAGE2 = Instance.new("ImageLabel")
  377. SwordFightingTournament = Instance.new("TextButton")
  378. PlatesOfFateMayhem = Instance.new("TextButton")
  379. GamesText2 = Instance.new("TextLabel")
  380. Frappe = Instance.new("TextButton")
  381. Frappe_2 = Instance.new("TextButton")
  382. MenuFrame = Instance.new("Frame")
  383. Welcome = Instance.new("TextLabel")
  384. NameOfPlayer = Instance.new("TextLabel")
  385. T_Information = Instance.new("TextButton")
  386. T_InfoImage = Instance.new("ImageLabel")
  387. T_Character = Instance.new("TextButton")
  388. T_CharImage = Instance.new("ImageLabel")
  389. T_Games = Instance.new("TextButton")
  390. T_GameImage = Instance.new("ImageLabel")
  391. T_Others = Instance.new("TextButton")
  392. T_OtherImage = Instance.new("ImageLabel")
  393. T_Extra = Instance.new("TextButton")
  394. T_ExtraImage = Instance.new("ImageLabel")
  395. DeleteGUI = Instance.new("TextButton")
  396. DELETEIMAGE = Instance.new("ImageLabel")
  397. Darkness = Instance.new("TextButton")
  398.  
  399. -- Properties
  400.  
  401. OPFinality.Name = "OPFinality"
  402. OPFinality.Parent = game.CoreGui
  403.  
  404. MainFrame.Name = "MainFrame"
  405. MainFrame.Parent = OPFinality
  406. MainFrame.Active = true
  407. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  408. MainFrame.BackgroundTransparency = 1
  409. MainFrame.BorderSizePixel = 0
  410. MainFrame.ClipsDescendants = true
  411. MainFrame.Draggable = true
  412. MainFrame.Position = UDim2.new(0, 402, 0, 162)
  413. MainFrame.Size = UDim2.new(0, 442, 0, 293)
  414.  
  415. TopFrame.Name = "TopFrame"
  416. TopFrame.Parent = MainFrame
  417. TopFrame.BackgroundColor3 = Color3.new(0.752941, 0.223529, 0.168627)
  418. TopFrame.BorderColor3 = Color3.new(0.145098, 0.184314, 0.223529)
  419. TopFrame.BorderSizePixel = 0
  420. TopFrame.Size = UDim2.new(1, 0, 0.0741975307, 0)
  421. TopFrame.ZIndex = 7
  422.  
  423. CloseGUI.Parent = TopFrame
  424. CloseGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  425. CloseGUI.BackgroundTransparency = 1
  426. CloseGUI.Position = UDim2.new(0.951219499, 0, 0, 0)
  427. CloseGUI.Size = UDim2.new(0.048780486, 0, 1.00166667, 0)
  428. CloseGUI.Font = Enum.Font.Cartoon
  429. CloseGUI.FontSize = Enum.FontSize.Size28
  430. CloseGUI.Text = "X"
  431. CloseGUI.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  432. CloseGUI.TextSize = 25
  433. CloseGUI.ZIndex = 8
  434.  
  435. MenuEnterFrame.Name = "MenuEnterFrame"
  436. MenuEnterFrame.Parent = MainFrame
  437. MenuEnterFrame.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
  438. MenuEnterFrame.BorderColor3 = Color3.new(0.145098, 0.184314, 0.223529)
  439. MenuEnterFrame.BorderSizePixel = 0
  440. MenuEnterFrame.Position = UDim2.new(0, 0, 0.0741975307, 0)
  441. MenuEnterFrame.Size = UDim2.new(1, 0, 0.148395061, 0)
  442. MenuEnterFrame.ZIndex = 5
  443.  
  444. Title.Name = "Title"
  445. Title.Parent = MenuEnterFrame
  446. Title.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  447. Title.BackgroundTransparency = 1
  448. Title.Position = UDim2.new(0.341463417, 0, 0, 0)
  449. Title.Size = UDim2.new(0.292682916, 0, 1.00166667, 0)
  450. Title.Font = Enum.Font.SourceSansLight
  451. Title.FontSize = Enum.FontSize.Size32
  452. Title.Text = "OPFinality"
  453. Title.TextColor3 = Color3.new(0.933333, 0.933333, 0.933333)
  454. Title.TextSize = 30
  455. Title.ZIndex = 6
  456.  
  457. OpenMenu.Name = "OpenMenu"
  458. OpenMenu.Parent = MenuEnterFrame
  459. OpenMenu.BackgroundColor3 = Color3.new(1, 1, 1)
  460. OpenMenu.BackgroundTransparency = 1
  461. OpenMenu.Size = UDim2.new(0.0909999982, 0, 1.01999998, 0)
  462. OpenMenu.Image = "http://www.roblox.com/asset/?id=1280184088"
  463. OpenMenu.ZIndex = 6
  464.  
  465. Pages.Name = "Pages"
  466. Pages.Parent = MainFrame
  467. Pages.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  468. Pages.BorderSizePixel = 0
  469. Pages.Position = UDim2.new(0, 0, 0.222592592, 0)
  470. Pages.Size = UDim2.new(1, 0, 0.779074073, 0)
  471.  
  472. Information.Name = "Information"
  473. Information.Parent = Pages
  474. Information.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  475. Information.BorderSizePixel = 0
  476. Information.Size = UDim2.new(1, 0, 1, 0)
  477.  
  478. Image_FE_ENABLED.Name = "Image_FE_ENABLED"
  479. Image_FE_ENABLED.Parent = Information
  480. Image_FE_ENABLED.BackgroundColor3 = Color3.new(1, 1, 1)
  481. Image_FE_ENABLED.BackgroundTransparency = 1
  482. Image_FE_ENABLED.Position = UDim2.new(0.0227242485, 0, 0.0454809628, 0)
  483. Image_FE_ENABLED.Size = UDim2.new(0.136345491, 0, 0.263394117, 0)
  484. Image_FE_ENABLED.Visible = false
  485. Image_FE_ENABLED.Image = "http://www.roblox.com/asset/?id=1281289312"
  486.  
  487. Text_FE_ENABLED.Name = "Text_FE_ENABLED"
  488. Text_FE_ENABLED.Parent = Information
  489. Text_FE_ENABLED.BackgroundColor3 = Color3.new(1, 1, 1)
  490. Text_FE_ENABLED.BackgroundTransparency = 1
  491. Text_FE_ENABLED.Position = UDim2.new(0.158999994, 0, 0.0670000017, 0)
  492. Text_FE_ENABLED.Size = UDim2.new(0.795348704, 0, 0.227404833, 0)
  493. Text_FE_ENABLED.Visible = false
  494. Text_FE_ENABLED.Font = Enum.Font.SourceSansItalic
  495. Text_FE_ENABLED.FontSize = Enum.FontSize.Size24
  496. Text_FE_ENABLED.Text = "This game is Filtering Enabled! Enjoy using OPFinality."
  497. Text_FE_ENABLED.TextSize = 19
  498.  
  499. WhatIsOPFinality.Name = "WhatIsOPFinality"
  500. WhatIsOPFinality.Parent = Information
  501. WhatIsOPFinality.BackgroundColor3 = Color3.new(1, 1, 1)
  502. WhatIsOPFinality.BackgroundTransparency = 1
  503. WhatIsOPFinality.Position = UDim2.new(0.249966726, 0, 0.227404833, 0)
  504. WhatIsOPFinality.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  505. WhatIsOPFinality.Font = Enum.Font.SourceSansBold
  506. WhatIsOPFinality.FontSize = Enum.FontSize.Size28
  507. WhatIsOPFinality.Text = "What is OPFinality?"
  508. WhatIsOPFinality.TextSize = 25
  509.  
  510. Text_FE_DISABLED.Name = "Text_FE_DISABLED"
  511. Text_FE_DISABLED.Parent = Information
  512. Text_FE_DISABLED.BackgroundColor3 = Color3.new(1, 1, 1)
  513. Text_FE_DISABLED.BackgroundTransparency = 1
  514. Text_FE_DISABLED.Position = UDim2.new(0.158999994, 0, 0.0670000017, 0)
  515. Text_FE_DISABLED.Size = UDim2.new(0.545381963, 0, 0.227404833, 0)
  516. Text_FE_DISABLED.Font = Enum.Font.SourceSansItalic
  517. Text_FE_DISABLED.FontSize = Enum.FontSize.Size24
  518. Text_FE_DISABLED.Text = "Oh! This game is Filtering Disabled..."
  519. Text_FE_DISABLED.TextSize = 19
  520.  
  521. OPFin_Description.Name = "OPFin_Description"
  522. OPFin_Description.Parent = Information
  523. OPFin_Description.BackgroundColor3 = Color3.new(1, 1, 1)
  524. OPFin_Description.BackgroundTransparency = 1
  525. OPFin_Description.Position = UDim2.new(0.204999998, 0, 0.388000011, 0)
  526. OPFin_Description.Size = UDim2.new(0.772624433, 0, 0.181923851, 0)
  527. OPFin_Description.ZIndex = 3
  528. OPFin_Description.Font = Enum.Font.SourceSans
  529. OPFin_Description.FontSize = Enum.FontSize.Size18
  530. OPFin_Description.Text = "OPFinality is an FE GUI developed by illremember made for giving you power in Filtering Enabled games."
  531. OPFin_Description.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  532. OPFin_Description.TextSize = 18
  533. OPFin_Description.TextWrapped = true
  534.  
  535. OPFin_Warning.Name = "OPFin_Warning"
  536. OPFin_Warning.Parent = Information
  537. OPFin_Warning.BackgroundColor3 = Color3.new(1, 1, 1)
  538. OPFin_Warning.BackgroundTransparency = 1
  539. OPFin_Warning.Position = UDim2.new(0.0227242485, 0, 0.636733532, 0)
  540. OPFin_Warning.Size = UDim2.new(0.659003198, 0, 0.272885799, 0)
  541. OPFin_Warning.ZIndex = 2
  542. OPFin_Warning.Font = Enum.Font.SourceSans
  543. OPFin_Warning.FontSize = Enum.FontSize.Size18
  544. OPFin_Warning.Text = "If this game is detected as Filtering Disabled, this GUI wont work as well as other scripts would. Consider using a different script."
  545. OPFin_Warning.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  546. OPFin_Warning.TextSize = 18
  547. OPFin_Warning.TextWrapped = true
  548.  
  549. Info_Bar.Name = "Info_Bar"
  550. Info_Bar.Parent = Information
  551. Info_Bar.BackgroundColor3 = Color3.new(0.160784, 0.501961, 0.72549)
  552. Info_Bar.BorderSizePixel = 0
  553. Info_Bar.Position = UDim2.new(0.159069732, 0, 0.363847703, 0)
  554. Info_Bar.Size = UDim2.new(0.0227242485, 0, 0.227404833, 0)
  555.  
  556. Info_Background.Name = "Info_Background"
  557. Info_Background.Parent = Information
  558. Info_Background.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  559. Info_Background.BorderSizePixel = 0
  560. Info_Background.Position = UDim2.new(0.181793988, 0, 0.363847703, 0)
  561. Info_Background.Size = UDim2.new(0.819999993, 0, 0.226999998, 0)
  562. Info_Background.ZIndex = 2
  563.  
  564. Warning_Bar.Name = "Warning_Bar"
  565. Warning_Bar.Parent = Information
  566. Warning_Bar.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  567. Warning_Bar.BorderSizePixel = 0
  568. Warning_Bar.Position = UDim2.new(0.70445168, 0, 0.636733532, 0)
  569. Warning_Bar.Size = UDim2.new(0.0227242485, 0, 0.272885799, 0)
  570.  
  571. Warning_Background.Name = "Warning_Background"
  572. Warning_Background.Parent = Information
  573. Warning_Background.BackgroundColor3 = Color3.new(0.945098, 0.768628, 0.0588235)
  574. Warning_Background.BorderSizePixel = 0
  575. Warning_Background.Position = UDim2.new(0, 0, 0.636733532, 0)
  576. Warning_Background.Size = UDim2.new(0.70445168, 0, 0.272885799, 0)
  577.  
  578. Info_Image.Name = "Info_Image"
  579. Info_Image.Parent = Information
  580. Info_Image.BackgroundColor3 = Color3.new(1, 1, 1)
  581. Info_Image.BackgroundTransparency = 1
  582. Info_Image.Position = UDim2.new(0.0454484969, 0, 0.395091146, 0)
  583. Info_Image.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
  584. Info_Image.Image = "http://www.roblox.com/asset/?id=1281284684"
  585.  
  586. Image_FE_DISABLED.Name = "Image_FE_DISABLED"
  587. Image_FE_DISABLED.Parent = Information
  588. Image_FE_DISABLED.BackgroundColor3 = Color3.new(1, 1, 1)
  589. Image_FE_DISABLED.BackgroundTransparency = 1
  590. Image_FE_DISABLED.Position = UDim2.new(0.0227242485, 0, 0.0454809628, 0)
  591. Image_FE_DISABLED.Size = UDim2.new(0.136345491, 0, 0.263394117, 0)
  592. Image_FE_DISABLED.Image = "http://www.roblox.com/asset/?id=1281290326"
  593.  
  594. Warn_Image.Name = "Warn_Image"
  595. Warn_Image.Parent = Information
  596. Warn_Image.BackgroundColor3 = Color3.new(1, 1, 1)
  597. Warn_Image.BackgroundTransparency = 1
  598. Warn_Image.Position = UDim2.new(0.763000011, 0, 0.677999973, 0)
  599. Warn_Image.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
  600. Warn_Image.Image = "http://www.roblox.com/asset/?id=1281286925"
  601.  
  602. Others_1.Name = "Others_1"
  603. Others_1.Parent = Pages
  604. Others_1.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  605. Others_1.BorderSizePixel = 0
  606. Others_1.Position = UDim2.new(1.00752497, 0, 0, 0)
  607. Others_1.Size = UDim2.new(1, 0, 1, 0)
  608.  
  609. OthersTitle.Name = "OthersTitle"
  610. OthersTitle.Parent = Others_1
  611. OthersTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  612. OthersTitle.BackgroundTransparency = 1
  613. OthersTitle.Position = UDim2.new(0.226410091, 0, 0.0439298227, 0)
  614. OthersTitle.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  615. OthersTitle.Font = Enum.Font.SourceSansBold
  616. OthersTitle.FontSize = Enum.FontSize.Size28
  617. OthersTitle.Text = "Others"
  618. OthersTitle.TextSize = 25
  619.  
  620. Char_Image.Name = "Char_Image"
  621. Char_Image.Parent = Others_1
  622. Char_Image.BackgroundColor3 = Color3.new(1, 1, 1)
  623. Char_Image.BackgroundTransparency = 1
  624. Char_Image.Position = UDim2.new(0.0113205044, 0, 0.153754383, 0)
  625. Char_Image.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
  626. Char_Image.Image = "http://www.roblox.com/asset/?id=1281476978"
  627.  
  628. OthersText.Name = "OthersText"
  629. OthersText.Parent = Others_1
  630. OthersText.BackgroundColor3 = Color3.new(1, 1, 1)
  631. OthersText.BackgroundTransparency = 1
  632. OthersText.Position = UDim2.new(0.101884536, 0, 0.153754383, 0)
  633. OthersText.Size = UDim2.new(0.781114817, 0, 0.175719291, 0)
  634. OthersText.Font = Enum.Font.SourceSansItalic
  635. OthersText.FontSize = Enum.FontSize.Size24
  636. OthersText.Text = "Use a set of basic commands on other players! Enter a name into the textbox, supports partial names."
  637. OthersText.TextSize = 19
  638. OthersText.TextWrapped = true
  639.  
  640. TXTBOX_PlrName.Name = "TXTBOX_PlrName"
  641. TXTBOX_PlrName.Parent = Others_1
  642. TXTBOX_PlrName.BackgroundColor3 = Color3.new(0.956863, 0.968628, 0.972549)
  643. TXTBOX_PlrName.BorderColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  644. TXTBOX_PlrName.BorderSizePixel = 0
  645. TXTBOX_PlrName.Position = UDim2.new(0.249051109, 0, 0.395368397, 0)
  646. TXTBOX_PlrName.Size = UDim2.new(0.520743191, 0, 0.0878596455, 0)
  647. TXTBOX_PlrName.ZIndex = 2
  648. TXTBOX_PlrName.Font = Enum.Font.SourceSans
  649. TXTBOX_PlrName.FontSize = Enum.FontSize.Size14
  650. TXTBOX_PlrName.Text = "Player"
  651. TXTBOX_PlrName.TextScaled = true
  652. TXTBOX_PlrName.TextSize = 14
  653. TXTBOX_PlrName.TextWrapped = true
  654.  
  655. othersBaseBackground.Name = "othersBaseBackground"
  656. othersBaseBackground.Parent = Others_1
  657. othersBaseBackground.BackgroundColor3 = Color3.new(0.160784, 0.501961, 0.72549)
  658. othersBaseBackground.BorderSizePixel = 0
  659. othersBaseBackground.Position = UDim2.new(0.124525554, 0, 0.351438582, 0)
  660. othersBaseBackground.Size = UDim2.new(0.769999981, 0, 0.649999976, 0)
  661.  
  662. TeleportTo.Name = "TeleportTo"
  663. TeleportTo.Parent = othersBaseBackground
  664. TeleportTo.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  665. TeleportTo.BorderSizePixel = 0
  666. TeleportTo.Position = UDim2.new(0.0294333119, 0, 0.27070269, 0)
  667. TeleportTo.Size = UDim2.new(0, 92, 0, 25)
  668. TeleportTo.Font = Enum.Font.SourceSans
  669. TeleportTo.FontSize = Enum.FontSize.Size24
  670. TeleportTo.Text = "Teleport To"
  671. TeleportTo.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  672. TeleportTo.TextSize = 22
  673.  
  674. Annoy.Name = "Annoy"
  675. Annoy.Parent = othersBaseBackground
  676. Annoy.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  677. Annoy.BorderSizePixel = 0
  678. Annoy.Position = UDim2.new(0.0294333119, 0, 0.507567585, 0)
  679. Annoy.Size = UDim2.new(0, 92, 0, 25)
  680. Annoy.Font = Enum.Font.SourceSans
  681. Annoy.FontSize = Enum.FontSize.Size24
  682. Annoy.Text = "Annoy"
  683. Annoy.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  684. Annoy.TextSize = 22
  685.  
  686. Follow.Name = "Follow"
  687. Follow.Parent = othersBaseBackground
  688. Follow.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  689. Follow.BorderSizePixel = 0
  690. Follow.Position = UDim2.new(0.0294333119, 0, 0.744432449, 0)
  691. Follow.Size = UDim2.new(0, 92, 0, 25)
  692. Follow.Font = Enum.Font.SourceSans
  693. Follow.FontSize = Enum.FontSize.Size24
  694. Follow.Text = "Follow"
  695. Follow.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  696. Follow.TextSize = 22
  697.  
  698. View.Name = "View"
  699. View.Parent = othersBaseBackground
  700. View.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  701. View.BorderSizePixel = 0
  702. View.Position = UDim2.new(0.367916405, 0, 0.27070269, 0)
  703. View.Size = UDim2.new(0, 92, 0, 25)
  704. View.Font = Enum.Font.SourceSans
  705. View.FontSize = Enum.FontSize.Size24
  706. View.Text = "View"
  707. View.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  708. View.TextSize = 22
  709.  
  710. Orbit.Name = "Orbit"
  711. Orbit.Parent = othersBaseBackground
  712. Orbit.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  713. Orbit.BorderSizePixel = 0
  714. Orbit.Position = UDim2.new(0.367916405, 0, 0.507567585, 0)
  715. Orbit.Size = UDim2.new(0, 92, 0, 25)
  716. Orbit.Font = Enum.Font.SourceSans
  717. Orbit.FontSize = Enum.FontSize.Size24
  718. Orbit.Text = "Orbit"
  719. Orbit.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  720. Orbit.TextSize = 22
  721.  
  722. HeadWalk.Name = "HeadWalk"
  723. HeadWalk.Parent = othersBaseBackground
  724. HeadWalk.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  725. HeadWalk.BorderSizePixel = 0
  726. HeadWalk.Position = UDim2.new(0.367916405, 0, 0.744432449, 0)
  727. HeadWalk.Size = UDim2.new(0, 92, 0, 25)
  728. HeadWalk.Font = Enum.Font.SourceSans
  729. HeadWalk.FontSize = Enum.FontSize.Size24
  730. HeadWalk.Text = "Head Walk"
  731. HeadWalk.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  732. HeadWalk.TextSize = 22
  733.  
  734. Stick.Name = "Stick"
  735. Stick.Parent = othersBaseBackground
  736. Stick.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  737. Stick.BorderSizePixel = 0
  738. Stick.Position = UDim2.new(0.7063995, 0, 0.27070269, 0)
  739. Stick.Size = UDim2.new(0, 92, 0, 25)
  740. Stick.Font = Enum.Font.SourceSans
  741. Stick.FontSize = Enum.FontSize.Size24
  742. Stick.Text = "Stick"
  743. Stick.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  744. Stick.TextSize = 22
  745.  
  746. Spam.Name = "Spam"
  747. Spam.Parent = othersBaseBackground
  748. Spam.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  749. Spam.BorderSizePixel = 0
  750. Spam.Position = UDim2.new(0.7063995, 0, 0.507567585, 0)
  751. Spam.Size = UDim2.new(0, 92, 0, 25)
  752. Spam.Font = Enum.Font.SourceSans
  753. Spam.FontSize = Enum.FontSize.Size24
  754. Spam.Text = "Spam"
  755. Spam.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  756. Spam.TextSize = 22
  757.  
  758. Carpet.Name = "Carpet"
  759. Carpet.Parent = othersBaseBackground
  760. Carpet.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  761. Carpet.BorderSizePixel = 0
  762. Carpet.Position = UDim2.new(0.7063995, 0, 0.744432449, 0)
  763. Carpet.Size = UDim2.new(0, 92, 0, 25)
  764. Carpet.Font = Enum.Font.SourceSans
  765. Carpet.FontSize = Enum.FontSize.Size24
  766. Carpet.Text = "Carpet"
  767. Carpet.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  768. Carpet.TextSize = 22
  769.  
  770. Others_toPAGE2.Name = "Others_toPAGE2"
  771. Others_toPAGE2.Parent = Others_1
  772. Others_toPAGE2.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  773. Others_toPAGE2.BorderSizePixel = 0
  774. Others_toPAGE2.Position = UDim2.new(0.819999993, 0, 0.0439999998, 0)
  775. Others_toPAGE2.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
  776. Others_toPAGE2.Font = Enum.Font.SourceSansLight
  777. Others_toPAGE2.FontSize = Enum.FontSize.Size24
  778. Others_toPAGE2.Text = "Next"
  779. Others_toPAGE2.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  780. Others_toPAGE2.TextSize = 22
  781.  
  782. Character_toPAGE2_IMAGE.Name = "Character_toPAGE2_IMAGE"
  783. Character_toPAGE2_IMAGE.Parent = Others_toPAGE2
  784. Character_toPAGE2_IMAGE.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  785. Character_toPAGE2_IMAGE.BorderSizePixel = 0
  786. Character_toPAGE2_IMAGE.Position = UDim2.new(0.900659323, 0, 0, 0)
  787. Character_toPAGE2_IMAGE.Size = UDim2.new(0, 25, 0, 25)
  788. Character_toPAGE2_IMAGE.Image = "http://www.roblox.com/asset/?id=1282737326"
  789.  
  790. Character_2.Name = "Character_2"
  791. Character_2.Parent = Pages
  792. Character_2.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  793. Character_2.BorderSizePixel = 0
  794. Character_2.Position = UDim2.new(1, 0, 0, 0)
  795. Character_2.Size = UDim2.new(1, 0, 1, 0)
  796.  
  797. CharacterTitle.Name = "CharacterTitle"
  798. CharacterTitle.Parent = Character_2
  799. CharacterTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  800. CharacterTitle.BackgroundTransparency = 1
  801. CharacterTitle.Position = UDim2.new(0.226410091, 0, 0, 0)
  802. CharacterTitle.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  803. CharacterTitle.Font = Enum.Font.SourceSansBold
  804. CharacterTitle.FontSize = Enum.FontSize.Size28
  805. CharacterTitle.Text = "Character"
  806. CharacterTitle.TextSize = 25
  807.  
  808. CharacterText.Name = "CharacterText"
  809. CharacterText.Parent = Character_2
  810. CharacterText.BackgroundColor3 = Color3.new(1, 1, 1)
  811. CharacterText.BackgroundTransparency = 1
  812. CharacterText.Position = UDim2.new(0.158487067, 0, 0.109824568, 0)
  813. CharacterText.Size = UDim2.new(0.679230273, 0, 0.0878596455, 0)
  814. CharacterText.Font = Enum.Font.SourceSansItalic
  815. CharacterText.FontSize = Enum.FontSize.Size24
  816. CharacterText.Text = "Apply cool animations to your player!"
  817. CharacterText.TextSize = 19
  818. CharacterText.TextWrapped = true
  819.  
  820. Animations_SPOOKY.Name = "Animations_SPOOKY"
  821. Animations_SPOOKY.Parent = Character_2
  822. Animations_SPOOKY.BackgroundColor3 = Color3.new(0.827451, 0.329412, 0)
  823. Animations_SPOOKY.BorderSizePixel = 0
  824. Animations_SPOOKY.Position = UDim2.new(0.101884536, 0, 0.263578951, 0)
  825. Animations_SPOOKY.Size = UDim2.new(0.200000003, 0, 0.735000014, 0)
  826.  
  827. spookytitle.Name = "spookytitle"
  828. spookytitle.Parent = Animations_SPOOKY
  829. spookytitle.BackgroundColor3 = Color3.new(1, 1, 1)
  830. spookytitle.BackgroundTransparency = 1
  831. spookytitle.Position = UDim2.new(0, 0, 0.0298095234, 0)
  832. spookytitle.Size = UDim2.new(0.96661669, 0, 0.149047628, 0)
  833. spookytitle.Font = Enum.Font.SourceSansLight
  834. spookytitle.FontSize = Enum.FontSize.Size28
  835. spookytitle.Text = "Spooky"
  836. spookytitle.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  837. spookytitle.TextSize = 25
  838.  
  839. headthrow.Name = "headthrow"
  840. headthrow.Parent = Animations_SPOOKY
  841. headthrow.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  842. headthrow.BorderSizePixel = 0
  843. headthrow.Position = UDim2.new(0, 0, 0.238476187, 0)
  844. headthrow.Size = UDim2.new(1, 0, 0.119000003, 0)
  845. headthrow.Font = Enum.Font.SourceSans
  846. headthrow.FontSize = Enum.FontSize.Size14
  847. headthrow.Text = "Head Throw"
  848. headthrow.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  849. headthrow.TextScaled = true
  850. headthrow.TextSize = 14
  851. headthrow.TextWrapped = true
  852.  
  853. armsoff.Name = "armsoff"
  854. armsoff.Parent = Animations_SPOOKY
  855. armsoff.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  856. armsoff.BorderSizePixel = 0
  857. armsoff.Position = UDim2.new(0, 0, 0.3875238, 0)
  858. armsoff.Size = UDim2.new(1, 0, 0.119000003, 0)
  859. armsoff.Font = Enum.Font.SourceSans
  860. armsoff.FontSize = Enum.FontSize.Size14
  861. armsoff.Text = "Arms Off"
  862. armsoff.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  863. armsoff.TextScaled = true
  864. armsoff.TextSize = 14
  865. armsoff.TextWrapped = true
  866.  
  867. loophead.Name = "loophead"
  868. loophead.Parent = Animations_SPOOKY
  869. loophead.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  870. loophead.BorderSizePixel = 0
  871. loophead.Position = UDim2.new(0, 0, 0.536571383, 0)
  872. loophead.Size = UDim2.new(1, 0, 0.119000003, 0)
  873. loophead.Font = Enum.Font.SourceSans
  874. loophead.FontSize = Enum.FontSize.Size14
  875. loophead.Text = "Loop Head"
  876. loophead.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  877. loophead.TextScaled = true
  878. loophead.TextSize = 14
  879. loophead.TextWrapped = true
  880.  
  881. levitate.Name = "levitate"
  882. levitate.Parent = Animations_SPOOKY
  883. levitate.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  884. levitate.BorderSizePixel = 0
  885. levitate.Position = UDim2.new(0, 0, 0.685619056, 0)
  886. levitate.Size = UDim2.new(1, 0, 0.119000003, 0)
  887. levitate.Font = Enum.Font.SourceSans
  888. levitate.FontSize = Enum.FontSize.Size14
  889. levitate.Text = "Levitate"
  890. levitate.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  891. levitate.TextScaled = true
  892. levitate.TextSize = 14
  893. levitate.TextWrapped = true
  894.  
  895. headfloat.Name = "headfloat"
  896. headfloat.Parent = Animations_SPOOKY
  897. headfloat.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  898. headfloat.BorderSizePixel = 0
  899. headfloat.Position = UDim2.new(0, 0, 0.834666669, 0)
  900. headfloat.Size = UDim2.new(1, 0, 0.119000003, 0)
  901. headfloat.Font = Enum.Font.SourceSans
  902. headfloat.FontSize = Enum.FontSize.Size14
  903. headfloat.Text = "Head Float"
  904. headfloat.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  905. headfloat.TextScaled = true
  906. headfloat.TextSize = 14
  907. headfloat.TextWrapped = true
  908.  
  909. Character_backPAGE1.Name = "Character_backPAGE1"
  910. Character_backPAGE1.Parent = Character_2
  911. Character_backPAGE1.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  912. Character_backPAGE1.BorderSizePixel = 0
  913. Character_backPAGE1.Position = UDim2.new(0.0679230243, 0, 0.0439298227, 0)
  914. Character_backPAGE1.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
  915. Character_backPAGE1.Font = Enum.Font.SourceSansLight
  916. Character_backPAGE1.FontSize = Enum.FontSize.Size24
  917. Character_backPAGE1.Text = "Prev"
  918. Character_backPAGE1.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  919. Character_backPAGE1.TextSize = 22
  920.  
  921. Character_toPAGE1_IMAGE.Name = "Character_toPAGE1_IMAGE"
  922. Character_toPAGE1_IMAGE.Parent = Character_backPAGE1
  923. Character_toPAGE1_IMAGE.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  924. Character_toPAGE1_IMAGE.BorderSizePixel = 0
  925. Character_toPAGE1_IMAGE.Position = UDim2.new(-0.400293052, 0, 0, 0)
  926. Character_toPAGE1_IMAGE.Size = UDim2.new(0, 25, 0, 25)
  927. Character_toPAGE1_IMAGE.Image = "http://www.roblox.com/asset/?id=1282894968"
  928.  
  929. Animations_DANCE.Name = "Animations_DANCE"
  930. Animations_DANCE.Parent = Character_2
  931. Animations_DANCE.BackgroundColor3 = Color3.new(0.827451, 0.329412, 0)
  932. Animations_DANCE.BorderSizePixel = 0
  933. Animations_DANCE.Position = UDim2.new(0.407538146, 0, 0.263578951, 0)
  934. Animations_DANCE.Size = UDim2.new(0.200000003, 0, 0.735000014, 0)
  935.  
  936. dancetitle.Name = "dancetitle"
  937. dancetitle.Parent = Animations_DANCE
  938. dancetitle.BackgroundColor3 = Color3.new(1, 1, 1)
  939. dancetitle.BackgroundTransparency = 1
  940. dancetitle.Position = UDim2.new(0, 0, 0.0298095234, 0)
  941. dancetitle.Size = UDim2.new(0.96661669, 0, 0.149047628, 0)
  942. dancetitle.Font = Enum.Font.SourceSansLight
  943. dancetitle.FontSize = Enum.FontSize.Size28
  944. dancetitle.Text = "Dance"
  945. dancetitle.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  946. dancetitle.TextSize = 25
  947.  
  948. normal.Name = "normal"
  949. normal.Parent = Animations_DANCE
  950. normal.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  951. normal.BorderSizePixel = 0
  952. normal.Position = UDim2.new(0, 0, 0.238476187, 0)
  953. normal.Size = UDim2.new(1, 0, 0.119000003, 0)
  954. normal.Font = Enum.Font.SourceSans
  955. normal.FontSize = Enum.FontSize.Size14
  956. normal.Text = "Normal"
  957. normal.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  958. normal.TextScaled = true
  959. normal.TextSize = 14
  960. normal.TextWrapped = true
  961.  
  962. movingdance.Name = "movingdance"
  963. movingdance.Parent = Animations_DANCE
  964. movingdance.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  965. movingdance.BorderSizePixel = 0
  966. movingdance.Position = UDim2.new(0, 0, 0.3875238, 0)
  967. movingdance.Size = UDim2.new(1, 0, 0.119000003, 0)
  968. movingdance.Font = Enum.Font.SourceSans
  969. movingdance.FontSize = Enum.FontSize.Size14
  970. movingdance.Text = "Moving Dance"
  971. movingdance.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  972. movingdance.TextScaled = true
  973. movingdance.TextSize = 14
  974. movingdance.TextWrapped = true
  975.  
  976. insane.Name = "insane"
  977. insane.Parent = Animations_DANCE
  978. insane.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  979. insane.BorderSizePixel = 0
  980. insane.Position = UDim2.new(0, 0, 0.834666669, 0)
  981. insane.Size = UDim2.new(1, 0, 0.119000003, 0)
  982. insane.Font = Enum.Font.SourceSans
  983. insane.FontSize = Enum.FontSize.Size14
  984. insane.Text = "Insane"
  985. insane.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  986. insane.TextScaled = true
  987. insane.TextSize = 14
  988. insane.TextWrapped = true
  989.  
  990. happy.Name = "happy"
  991. happy.Parent = Animations_DANCE
  992. happy.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  993. happy.BorderSizePixel = 0
  994. happy.Position = UDim2.new(0, 0, 0.536571383, 0)
  995. happy.Size = UDim2.new(1, 0, 0.119000003, 0)
  996. happy.Font = Enum.Font.SourceSans
  997. happy.FontSize = Enum.FontSize.Size14
  998. happy.Text = "Happy"
  999. happy.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1000. happy.TextScaled = true
  1001. happy.TextSize = 14
  1002. happy.TextWrapped = true
  1003.  
  1004. spindance.Name = "spindance"
  1005. spindance.Parent = Animations_DANCE
  1006. spindance.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  1007. spindance.BorderSizePixel = 0
  1008. spindance.Position = UDim2.new(0, 0, 0.685619056, 0)
  1009. spindance.Size = UDim2.new(1, 0, 0.119000003, 0)
  1010. spindance.Font = Enum.Font.SourceSans
  1011. spindance.FontSize = Enum.FontSize.Size14
  1012. spindance.Text = "Spin Dance"
  1013. spindance.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1014. spindance.TextScaled = true
  1015. spindance.TextSize = 14
  1016. spindance.TextWrapped = true
  1017.  
  1018. Animations_HEROIC.Name = "Animations_HEROIC"
  1019. Animations_HEROIC.Parent = Character_2
  1020. Animations_HEROIC.BackgroundColor3 = Color3.new(0.827451, 0.329412, 0)
  1021. Animations_HEROIC.BorderSizePixel = 0
  1022. Animations_HEROIC.Position = UDim2.new(0.713191807, 0, 0.263578951, 0)
  1023. Animations_HEROIC.Size = UDim2.new(0.200000003, 0, 0.735000014, 0)
  1024.  
  1025. heroictitle.Name = "heroictitle"
  1026. heroictitle.Parent = Animations_HEROIC
  1027. heroictitle.BackgroundColor3 = Color3.new(1, 1, 1)
  1028. heroictitle.BackgroundTransparency = 1
  1029. heroictitle.Position = UDim2.new(0, 0, 0.0298095234, 0)
  1030. heroictitle.Size = UDim2.new(0.96661669, 0, 0.149047628, 0)
  1031. heroictitle.Font = Enum.Font.SourceSansLight
  1032. heroictitle.FontSize = Enum.FontSize.Size28
  1033. heroictitle.Text = "Heroic"
  1034. heroictitle.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1035. heroictitle.TextSize = 25
  1036.  
  1037. swordstrike.Name = "swordstrike"
  1038. swordstrike.Parent = Animations_HEROIC
  1039. swordstrike.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  1040. swordstrike.BorderSizePixel = 0
  1041. swordstrike.Position = UDim2.new(0, 0, 0.238476187, 0)
  1042. swordstrike.Size = UDim2.new(1, 0, 0.119000003, 0)
  1043. swordstrike.Font = Enum.Font.SourceSans
  1044. swordstrike.FontSize = Enum.FontSize.Size14
  1045. swordstrike.Text = "Sword Strike"
  1046. swordstrike.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1047. swordstrike.TextScaled = true
  1048. swordstrike.TextSize = 14
  1049. swordstrike.TextWrapped = true
  1050.  
  1051. jumpland.Name = "jumpland"
  1052. jumpland.Parent = Animations_HEROIC
  1053. jumpland.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  1054. jumpland.BorderSizePixel = 0
  1055. jumpland.Position = UDim2.new(0, 0, 0.3875238, 0)
  1056. jumpland.Size = UDim2.new(1, 0, 0.119000003, 0)
  1057. jumpland.Font = Enum.Font.SourceSans
  1058. jumpland.FontSize = Enum.FontSize.Size14
  1059. jumpland.Text = "Jump Land"
  1060. jumpland.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1061. jumpland.TextScaled = true
  1062. jumpland.TextSize = 14
  1063. jumpland.TextWrapped = true
  1064.  
  1065. punches.Name = "punches"
  1066. punches.Parent = Animations_HEROIC
  1067. punches.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  1068. punches.BorderSizePixel = 0
  1069. punches.Position = UDim2.new(0, 0, 0.834666669, 0)
  1070. punches.Size = UDim2.new(1, 0, 0.119000003, 0)
  1071. punches.Font = Enum.Font.SourceSans
  1072. punches.FontSize = Enum.FontSize.Size14
  1073. punches.Text = "Punches"
  1074. punches.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1075. punches.TextScaled = true
  1076. punches.TextSize = 14
  1077. punches.TextWrapped = true
  1078.  
  1079. swing.Name = "swing"
  1080. swing.Parent = Animations_HEROIC
  1081. swing.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  1082. swing.BorderSizePixel = 0
  1083. swing.Position = UDim2.new(0, 0, 0.536571383, 0)
  1084. swing.Size = UDim2.new(1, 0, 0.119000003, 0)
  1085. swing.Font = Enum.Font.SourceSans
  1086. swing.FontSize = Enum.FontSize.Size14
  1087. swing.Text = "Swing"
  1088. swing.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1089. swing.TextScaled = true
  1090. swing.TextSize = 14
  1091. swing.TextWrapped = true
  1092.  
  1093. crawl.Name = "crawl"
  1094. crawl.Parent = Animations_HEROIC
  1095. crawl.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  1096. crawl.BorderSizePixel = 0
  1097. crawl.Position = UDim2.new(0, 0, 0.685619056, 0)
  1098. crawl.Size = UDim2.new(1, 0, 0.119000003, 0)
  1099. crawl.Font = Enum.Font.SourceSans
  1100. crawl.FontSize = Enum.FontSize.Size14
  1101. crawl.Text = "Crawl"
  1102. crawl.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1103. crawl.TextScaled = true
  1104. crawl.TextSize = 14
  1105. crawl.TextWrapped = true
  1106.  
  1107. Char2_Image.Name = "Char2_Image"
  1108. Char2_Image.Parent = Character_2
  1109. Char2_Image.BackgroundColor3 = Color3.new(1, 1, 1)
  1110. Char2_Image.BackgroundTransparency = 1
  1111. Char2_Image.Position = UDim2.new(0.792435288, 0, 0.0219649114, 0)
  1112. Char2_Image.Size = UDim2.new(0.101884536, 0, 0.197684199, 0)
  1113. Char2_Image.Image = "http://www.roblox.com/asset/?id=1282931168"
  1114.  
  1115. Character_1.Name = "Character_1"
  1116. Character_1.Parent = Pages
  1117. Character_1.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1118. Character_1.BorderSizePixel = 0
  1119. Character_1.Position = UDim2.new(11, 0, 0, 0)
  1120. Character_1.Size = UDim2.new(1, 0, 1, 0)
  1121.  
  1122. CharacterTitle_2.Name = "CharacterTitle"
  1123. CharacterTitle_2.Parent = Character_1
  1124. CharacterTitle_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1125. CharacterTitle_2.BackgroundTransparency = 1
  1126. CharacterTitle_2.Position = UDim2.new(0.226410091, 0, 0, 0)
  1127. CharacterTitle_2.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  1128. CharacterTitle_2.Font = Enum.Font.SourceSansBold
  1129. CharacterTitle_2.FontSize = Enum.FontSize.Size28
  1130. CharacterTitle_2.Text = "Character"
  1131. CharacterTitle_2.TextSize = 25
  1132.  
  1133. Char_Image_2.Name = "Char_Image"
  1134. Char_Image_2.Parent = Character_1
  1135. Char_Image_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1136. Char_Image_2.BackgroundTransparency = 1
  1137. Char_Image_2.Position = UDim2.new(0.0792435333, 0, 0.109824568, 0)
  1138. Char_Image_2.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
  1139. Char_Image_2.Image = "http://www.roblox.com/asset/?id=1281299598"
  1140.  
  1141. CharacterText_2.Name = "CharacterText"
  1142. CharacterText_2.Parent = Character_1
  1143. CharacterText_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1144. CharacterText_2.BackgroundTransparency = 1
  1145. CharacterText_2.Position = UDim2.new(0.147166565, 0, 0.109824568, 0)
  1146. CharacterText_2.Size = UDim2.new(0.679230273, 0, 0.175719291, 0)
  1147. CharacterText_2.Font = Enum.Font.SourceSansItalic
  1148. CharacterText_2.FontSize = Enum.FontSize.Size24
  1149. CharacterText_2.Text = "Change your character's speed and other stats, give yourself fly, noclip and more!"
  1150. CharacterText_2.TextSize = 19
  1151. CharacterText_2.TextWrapped = true
  1152.  
  1153. TXTBOX_Stats.Name = "TXTBOX_Stats"
  1154. TXTBOX_Stats.Parent = Character_1
  1155. TXTBOX_Stats.BackgroundColor3 = Color3.new(0.956863, 0.968628, 0.972549)
  1156. TXTBOX_Stats.BorderColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1157. TXTBOX_Stats.BorderSizePixel = 6
  1158. TXTBOX_Stats.Position = UDim2.new(0.0905640349, 0, 0.373403519, 0)
  1159. TXTBOX_Stats.Size = UDim2.new(0.18112807, 0, 0.0878596455, 0)
  1160. TXTBOX_Stats.Font = Enum.Font.SourceSans
  1161. TXTBOX_Stats.FontSize = Enum.FontSize.Size14
  1162. TXTBOX_Stats.Text = "Number"
  1163. TXTBOX_Stats.TextScaled = true
  1164. TXTBOX_Stats.TextSize = 14
  1165. TXTBOX_Stats.TextWrapped = true
  1166.  
  1167. BackGroundChar.Name = "BackGroundChar"
  1168. BackGroundChar.Parent = Character_1
  1169. BackGroundChar.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1170. BackGroundChar.BorderSizePixel = 0
  1171. BackGroundChar.Position = UDim2.new(0.0769999996, 0, 0.48300001, 0)
  1172. BackGroundChar.Size = UDim2.new(0, 92, 0, 118)
  1173.  
  1174. HipHeight.Name = "HipHeight"
  1175. HipHeight.Parent = BackGroundChar
  1176. HipHeight.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
  1177. HipHeight.BorderSizePixel = 0
  1178. HipHeight.Position = UDim2.new(0, 0, 0.679050863, 0)
  1179. HipHeight.Size = UDim2.new(0, 92, 0, 25)
  1180. HipHeight.Font = Enum.Font.SourceSans
  1181. HipHeight.FontSize = Enum.FontSize.Size24
  1182. HipHeight.Text = "HipHeight"
  1183. HipHeight.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1184. HipHeight.TextSize = 22
  1185.  
  1186. JumpHeight.Name = "JumpHeight"
  1187. JumpHeight.Parent = BackGroundChar
  1188. JumpHeight.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
  1189. JumpHeight.BorderSizePixel = 0
  1190. JumpHeight.Position = UDim2.new(0, 0, 0.381966084, 0)
  1191. JumpHeight.Size = UDim2.new(0, 92, 0, 25)
  1192. JumpHeight.Font = Enum.Font.SourceSans
  1193. JumpHeight.FontSize = Enum.FontSize.Size24
  1194. JumpHeight.Text = "JumpHeight"
  1195. JumpHeight.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1196. JumpHeight.TextSize = 20
  1197.  
  1198. Speed.Name = "Speed"
  1199. Speed.Parent = BackGroundChar
  1200. Speed.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
  1201. Speed.BorderSizePixel = 0
  1202. Speed.Position = UDim2.new(0, 0, 0.0848813578, 0)
  1203. Speed.Size = UDim2.new(0, 92, 0, 25)
  1204. Speed.Font = Enum.Font.SourceSans
  1205. Speed.FontSize = Enum.FontSize.Size24
  1206. Speed.Text = "Speed"
  1207. Speed.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1208. Speed.TextSize = 22
  1209.  
  1210. TXTBOX_Chat.Name = "TXTBOX_Chat"
  1211. TXTBOX_Chat.Parent = Character_1
  1212. TXTBOX_Chat.BackgroundColor3 = Color3.new(0.956863, 0.968628, 0.972549)
  1213. TXTBOX_Chat.BorderColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1214. TXTBOX_Chat.BorderSizePixel = 6
  1215. TXTBOX_Chat.Position = UDim2.new(0.384897143, 0, 0.373403519, 0)
  1216. TXTBOX_Chat.Size = UDim2.new(0.520743191, 0, 0.0878596455, 0)
  1217. TXTBOX_Chat.Font = Enum.Font.SourceSans
  1218. TXTBOX_Chat.FontSize = Enum.FontSize.Size14
  1219. TXTBOX_Chat.Text = "Text for chatting"
  1220. TXTBOX_Chat.TextScaled = true
  1221. TXTBOX_Chat.TextSize = 14
  1222. TXTBOX_Chat.TextWrapped = true
  1223.  
  1224. BackGroundChar2.Name = "BackGroundChar2"
  1225. BackGroundChar2.Parent = Character_1
  1226. BackGroundChar2.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1227. BackGroundChar2.BorderSizePixel = 0
  1228. BackGroundChar2.Position = UDim2.new(0.370000005, 0, 0.48300001, 0)
  1229. BackGroundChar2.Size = UDim2.new(0, 242, 0, 40)
  1230.  
  1231. Chat.Name = "Chat"
  1232. Chat.Parent = BackGroundChar2
  1233. Chat.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
  1234. Chat.BorderSizePixel = 0
  1235. Chat.Position = UDim2.new(0.0620288812, 0, 0.125200003, 0)
  1236. Chat.Size = UDim2.new(0, 92, 0, 25)
  1237. Chat.Font = Enum.Font.SourceSans
  1238. Chat.FontSize = Enum.FontSize.Size24
  1239. Chat.Text = "Chat"
  1240. Chat.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1241. Chat.TextSize = 22
  1242.  
  1243. Spam_2.Name = "Spam"
  1244. Spam_2.Parent = BackGroundChar2
  1245. Spam_2.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
  1246. Spam_2.BorderSizePixel = 0
  1247. Spam_2.Position = UDim2.new(0.558259964, 0, 0.125200003, 0)
  1248. Spam_2.Size = UDim2.new(0, 92, 0, 25)
  1249. Spam_2.Font = Enum.Font.SourceSans
  1250. Spam_2.FontSize = Enum.FontSize.Size24
  1251. Spam_2.Text = "Spam"
  1252. Spam_2.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1253. Spam_2.TextSize = 22
  1254.  
  1255. BackGroundChar3.Name = "BackGroundChar3"
  1256. BackGroundChar3.Parent = Character_1
  1257. BackGroundChar3.BackgroundColor3 = Color3.new(0.0862745, 0.627451, 0.521569)
  1258. BackGroundChar3.BorderSizePixel = 0
  1259. BackGroundChar3.Position = UDim2.new(0.372000009, 0, 0.742999971, 0)
  1260. BackGroundChar3.Size = UDim2.new(0, 242, 0, 43)
  1261.  
  1262. Noclip.Name = "Noclip"
  1263. Noclip.Parent = BackGroundChar3
  1264. Noclip.BackgroundColor3 = Color3.new(0.101961, 0.737255, 0.611765)
  1265. Noclip.BorderSizePixel = 0
  1266. Noclip.Position = UDim2.new(0.558000028, 0, 0.208000004, 0)
  1267. Noclip.Size = UDim2.new(0, 92, 0, 25)
  1268. Noclip.Font = Enum.Font.SourceSans
  1269. Noclip.FontSize = Enum.FontSize.Size24
  1270. Noclip.Text = "Noclip"
  1271. Noclip.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1272. Noclip.TextSize = 22
  1273.  
  1274. Fly.Name = "Fly"
  1275. Fly.Parent = BackGroundChar3
  1276. Fly.BackgroundColor3 = Color3.new(0.101961, 0.737255, 0.611765)
  1277. Fly.BorderSizePixel = 0
  1278. Fly.Position = UDim2.new(0.061999999, 0, 0.208000004, 0)
  1279. Fly.Size = UDim2.new(0, 92, 0, 25)
  1280. Fly.Font = Enum.Font.SourceSans
  1281. Fly.FontSize = Enum.FontSize.Size24
  1282. Fly.Text = "Fly"
  1283. Fly.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1284. Fly.TextSize = 22
  1285.  
  1286. Character_toPAGE2.Name = "Character_toPAGE2"
  1287. Character_toPAGE2.Parent = Character_1
  1288. Character_toPAGE2.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1289. Character_toPAGE2.BorderSizePixel = 0
  1290. Character_toPAGE2.Position = UDim2.new(0.819999993, 0, 0.0439999998, 0)
  1291. Character_toPAGE2.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
  1292. Character_toPAGE2.Font = Enum.Font.SourceSansLight
  1293. Character_toPAGE2.FontSize = Enum.FontSize.Size24
  1294. Character_toPAGE2.Text = "Next"
  1295. Character_toPAGE2.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1296. Character_toPAGE2.TextSize = 22
  1297.  
  1298. Character_toPAGE2_IMAGE_2.Name = "Character_toPAGE2_IMAGE"
  1299. Character_toPAGE2_IMAGE_2.Parent = Character_toPAGE2
  1300. Character_toPAGE2_IMAGE_2.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1301. Character_toPAGE2_IMAGE_2.BorderSizePixel = 0
  1302. Character_toPAGE2_IMAGE_2.Position = UDim2.new(0.900659323, 0, 0, 0)
  1303. Character_toPAGE2_IMAGE_2.Size = UDim2.new(0, 25, 0, 25)
  1304. Character_toPAGE2_IMAGE_2.Image = "http://www.roblox.com/asset/?id=1282737326"
  1305.  
  1306. Others_2.Name = "Others_2"
  1307. Others_2.Parent = Pages
  1308. Others_2.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1309. Others_2.BorderSizePixel = 0
  1310. Others_2.Position = UDim2.new(1, 0, 0, 0)
  1311. Others_2.Size = UDim2.new(1, 0, 1, 0)
  1312.  
  1313. OthersTitle_2.Name = "OthersTitle"
  1314. OthersTitle_2.Parent = Others_2
  1315. OthersTitle_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1316. OthersTitle_2.BackgroundTransparency = 1
  1317. OthersTitle_2.Position = UDim2.new(0.226410091, 0, 0, 0)
  1318. OthersTitle_2.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  1319. OthersTitle_2.Font = Enum.Font.SourceSansBold
  1320. OthersTitle_2.FontSize = Enum.FontSize.Size28
  1321. OthersTitle_2.Text = "Others"
  1322. OthersTitle_2.TextSize = 25
  1323.  
  1324. Other_Image2.Name = "Other_Image2"
  1325. Other_Image2.Parent = Others_2
  1326. Other_Image2.BackgroundColor3 = Color3.new(1, 1, 1)
  1327. Other_Image2.BackgroundTransparency = 1
  1328. Other_Image2.Position = UDim2.new(0.0113205044, 0, 0.197684199, 0)
  1329. Other_Image2.Size = UDim2.new(0.101884536, 0, 0.197684199, 0)
  1330. Other_Image2.Image = "http://www.roblox.com/asset/?id=1284941440"
  1331.  
  1332. OthersText_2.Name = "OthersText"
  1333. OthersText_2.Parent = Others_2
  1334. OthersText_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1335. OthersText_2.BackgroundTransparency = 1
  1336. OthersText_2.Position = UDim2.new(0.203769073, 0, 0.109824568, 0)
  1337. OthersText_2.Size = UDim2.new(0.577345729, 0, 0.175719291, 0)
  1338. OthersText_2.Font = Enum.Font.SourceSansItalic
  1339. OthersText_2.FontSize = Enum.FontSize.Size24
  1340. OthersText_2.Text = "Use rocket propulsion to push, fling, and annoy players!"
  1341. OthersText_2.TextSize = 19
  1342. OthersText_2.TextWrapped = true
  1343.  
  1344. TXTBOX_PlrName2.Name = "TXTBOX_PlrName2"
  1345. TXTBOX_PlrName2.Parent = Others_2
  1346. TXTBOX_PlrName2.BackgroundColor3 = Color3.new(0.956863, 0.968628, 0.972549)
  1347. TXTBOX_PlrName2.BorderColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1348. TXTBOX_PlrName2.BorderSizePixel = 0
  1349. TXTBOX_PlrName2.Position = UDim2.new(0.249051109, 0, 0.395368397, 0)
  1350. TXTBOX_PlrName2.Size = UDim2.new(0.520743191, 0, 0.0878596455, 0)
  1351. TXTBOX_PlrName2.ZIndex = 2
  1352. TXTBOX_PlrName2.Font = Enum.Font.SourceSans
  1353. TXTBOX_PlrName2.FontSize = Enum.FontSize.Size14
  1354. TXTBOX_PlrName2.Text = "Player"
  1355. TXTBOX_PlrName2.TextScaled = true
  1356. TXTBOX_PlrName2.TextSize = 14
  1357. TXTBOX_PlrName2.TextWrapped = true
  1358.  
  1359. othersBaseBackground2.Name = "othersBaseBackground2"
  1360. othersBaseBackground2.Parent = Others_2
  1361. othersBaseBackground2.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  1362. othersBaseBackground2.BorderSizePixel = 0
  1363. othersBaseBackground2.Position = UDim2.new(0.124525554, 0, 0.351438582, 0)
  1364. othersBaseBackground2.Size = UDim2.new(0.769999981, 0, 0.649999976, 0)
  1365.  
  1366. Flatten.Name = "Flatten"
  1367. Flatten.Parent = othersBaseBackground2
  1368. Flatten.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1369. Flatten.BorderSizePixel = 0
  1370. Flatten.Position = UDim2.new(0.0588666238, 0, 0.27070269, 0)
  1371. Flatten.Size = UDim2.new(0, 92, 0, 25)
  1372. Flatten.Font = Enum.Font.SourceSans
  1373. Flatten.FontSize = Enum.FontSize.Size24
  1374. Flatten.Text = "Flatten"
  1375. Flatten.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1376. Flatten.TextSize = 22
  1377.  
  1378. AimHead.Name = "AimHead"
  1379. AimHead.Parent = othersBaseBackground2
  1380. AimHead.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1381. AimHead.BorderSizePixel = 0
  1382. AimHead.Position = UDim2.new(0.367916405, 0, 0.27070269, 0)
  1383. AimHead.Size = UDim2.new(0, 92, 0, 25)
  1384. AimHead.Font = Enum.Font.SourceSans
  1385. AimHead.FontSize = Enum.FontSize.Size24
  1386. AimHead.Text = "Aim Head"
  1387. AimHead.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1388. AimHead.TextSize = 22
  1389.  
  1390. Float.Name = "Float"
  1391. Float.Parent = othersBaseBackground2
  1392. Float.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1393. Float.BorderSizePixel = 0
  1394. Float.Position = UDim2.new(0.0588666238, 0, 0.507567585, 0)
  1395. Float.Size = UDim2.new(0, 92, 0, 25)
  1396. Float.Font = Enum.Font.SourceSans
  1397. Float.FontSize = Enum.FontSize.Size24
  1398. Float.Text = "Float"
  1399. Float.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1400. Float.TextSize = 22
  1401.  
  1402. Multiple.Name = "Multiple"
  1403. Multiple.Parent = othersBaseBackground2
  1404. Multiple.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1405. Multiple.BorderSizePixel = 0
  1406. Multiple.Position = UDim2.new(0.367916405, 0, 0.507567585, 0)
  1407. Multiple.Size = UDim2.new(0, 92, 0, 25)
  1408. Multiple.Font = Enum.Font.SourceSans
  1409. Multiple.FontSize = Enum.FontSize.Size24
  1410. Multiple.Text = "Multiple"
  1411. Multiple.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1412. Multiple.TextSize = 22
  1413.  
  1414. Animated.Name = "Animated"
  1415. Animated.Parent = othersBaseBackground2
  1416. Animated.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1417. Animated.BorderSizePixel = 0
  1418. Animated.Position = UDim2.new(0.67696619, 0, 0.27070269, 0)
  1419. Animated.Size = UDim2.new(0, 92, 0, 25)
  1420. Animated.Font = Enum.Font.SourceSans
  1421. Animated.FontSize = Enum.FontSize.Size24
  1422. Animated.Text = "Animated"
  1423. Animated.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1424. Animated.TextSize = 22
  1425.  
  1426. SlowAttract.Name = "SlowAttract"
  1427. SlowAttract.Parent = othersBaseBackground2
  1428. SlowAttract.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1429. SlowAttract.BorderSizePixel = 0
  1430. SlowAttract.Position = UDim2.new(0.67696619, 0, 0.507567585, 0)
  1431. SlowAttract.Size = UDim2.new(0, 92, 0, 25)
  1432. SlowAttract.Font = Enum.Font.SourceSans
  1433. SlowAttract.FontSize = Enum.FontSize.Size24
  1434. SlowAttract.Text = "SlowAttract"
  1435. SlowAttract.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1436. SlowAttract.TextSize = 22
  1437.  
  1438. WeirdOrbit.Name = "WeirdOrbit"
  1439. WeirdOrbit.Parent = othersBaseBackground2
  1440. WeirdOrbit.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1441. WeirdOrbit.BorderSizePixel = 0
  1442. WeirdOrbit.Position = UDim2.new(0.67696619, 0, 0.744432449, 0)
  1443. WeirdOrbit.Size = UDim2.new(0, 92, 0, 25)
  1444. WeirdOrbit.Font = Enum.Font.SourceSans
  1445. WeirdOrbit.FontSize = Enum.FontSize.Size24
  1446. WeirdOrbit.Text = "Weird Orbit"
  1447. WeirdOrbit.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1448. WeirdOrbit.TextSize = 22
  1449.  
  1450. Violent.Name = "Violent"
  1451. Violent.Parent = othersBaseBackground2
  1452. Violent.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1453. Violent.BorderSizePixel = 0
  1454. Violent.Position = UDim2.new(0.367916405, 0, 0.744432449, 0)
  1455. Violent.Size = UDim2.new(0, 92, 0, 25)
  1456. Violent.Font = Enum.Font.SourceSans
  1457. Violent.FontSize = Enum.FontSize.Size24
  1458. Violent.Text = "Violent"
  1459. Violent.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1460. Violent.TextSize = 22
  1461.  
  1462. Max.Name = "Max"
  1463. Max.Parent = othersBaseBackground2
  1464. Max.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1465. Max.BorderSizePixel = 0
  1466. Max.Position = UDim2.new(0.0588666238, 0, 0.744432449, 0)
  1467. Max.Size = UDim2.new(0, 92, 0, 25)
  1468. Max.Font = Enum.Font.SourceSans
  1469. Max.FontSize = Enum.FontSize.Size24
  1470. Max.Text = "Max"
  1471. Max.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1472. Max.TextSize = 22
  1473.  
  1474. Others_toPAGE3.Name = "Others_toPAGE3"
  1475. Others_toPAGE3.Parent = Others_2
  1476. Others_toPAGE3.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1477. Others_toPAGE3.BorderSizePixel = 0
  1478. Others_toPAGE3.Position = UDim2.new(0.819999993, 0, 0.0439999998, 0)
  1479. Others_toPAGE3.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
  1480. Others_toPAGE3.Font = Enum.Font.SourceSansLight
  1481. Others_toPAGE3.FontSize = Enum.FontSize.Size24
  1482. Others_toPAGE3.Text = "Next"
  1483. Others_toPAGE3.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1484. Others_toPAGE3.TextSize = 22
  1485.  
  1486. Character_toPAGE3_IMAGE.Name = "Character_toPAGE3_IMAGE"
  1487. Character_toPAGE3_IMAGE.Parent = Others_toPAGE3
  1488. Character_toPAGE3_IMAGE.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1489. Character_toPAGE3_IMAGE.BorderSizePixel = 0
  1490. Character_toPAGE3_IMAGE.Position = UDim2.new(0.900659323, 0, 0, 0)
  1491. Character_toPAGE3_IMAGE.Size = UDim2.new(0, 25, 0, 25)
  1492. Character_toPAGE3_IMAGE.Image = "http://www.roblox.com/asset/?id=1282737326"
  1493.  
  1494. Others_backPAGE1.Name = "Others_backPAGE1"
  1495. Others_backPAGE1.Parent = Others_2
  1496. Others_backPAGE1.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1497. Others_backPAGE1.BorderSizePixel = 0
  1498. Others_backPAGE1.Position = UDim2.new(0.0679230243, 0, 0.0439298227, 0)
  1499. Others_backPAGE1.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
  1500. Others_backPAGE1.Font = Enum.Font.SourceSansLight
  1501. Others_backPAGE1.FontSize = Enum.FontSize.Size24
  1502. Others_backPAGE1.Text = "Prev"
  1503. Others_backPAGE1.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1504. Others_backPAGE1.TextSize = 22
  1505.  
  1506. Character_toPAGE1_IMAGE_2.Name = "Character_toPAGE1_IMAGE"
  1507. Character_toPAGE1_IMAGE_2.Parent = Others_backPAGE1
  1508. Character_toPAGE1_IMAGE_2.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1509. Character_toPAGE1_IMAGE_2.BorderSizePixel = 0
  1510. Character_toPAGE1_IMAGE_2.Position = UDim2.new(-0.400293052, 0, 0, 0)
  1511. Character_toPAGE1_IMAGE_2.Size = UDim2.new(0, 25, 0, 25)
  1512. Character_toPAGE1_IMAGE_2.Image = "http://www.roblox.com/asset/?id=1282894968"
  1513.  
  1514. Extra_1.Name = "Extra_1"
  1515. Extra_1.Parent = Pages
  1516. Extra_1.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1517. Extra_1.BorderSizePixel = 0
  1518. Extra_1.Position = UDim2.new(1, 0, 0, 0)
  1519. Extra_1.Size = UDim2.new(1, 0, 1, 0)
  1520.  
  1521. Extra_Image.Name = "Extra_Image"
  1522. Extra_Image.Parent = Extra_1
  1523. Extra_Image.BackgroundColor3 = Color3.new(1, 1, 1)
  1524. Extra_Image.BackgroundTransparency = 1
  1525. Extra_Image.Position = UDim2.new(0.0679230243, 0, 0.0439298227, 0)
  1526. Extra_Image.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
  1527. Extra_Image.Image = "http://www.roblox.com/asset/?id=1281477720"
  1528.  
  1529. ExtraText.Name = "ExtraText"
  1530. ExtraText.Parent = Extra_1
  1531. ExtraText.BackgroundColor3 = Color3.new(1, 1, 1)
  1532. ExtraText.BackgroundTransparency = 1
  1533. ExtraText.Position = UDim2.new(0.158487067, 0, 0.109824568, 0)
  1534. ExtraText.Size = UDim2.new(0.65658927, 0, 0.0878596455, 0)
  1535. ExtraText.Font = Enum.Font.SourceSansItalic
  1536. ExtraText.FontSize = Enum.FontSize.Size24
  1537. ExtraText.Text = "Cool and unique commands for yourself!"
  1538. ExtraText.TextSize = 19
  1539. ExtraText.TextWrapped = true
  1540.  
  1541. ExtraBaseBackGround1.Name = "ExtraBaseBackGround1"
  1542. ExtraBaseBackGround1.Parent = Extra_1
  1543. ExtraBaseBackGround1.BackgroundColor3 = Color3.new(0.945098, 0.768628, 0.0588235)
  1544. ExtraBaseBackGround1.BorderSizePixel = 0
  1545. ExtraBaseBackGround1.Position = UDim2.new(0.0790000036, 0, 0.400000006, 0)
  1546. ExtraBaseBackGround1.Size = UDim2.new(0.25, 0, 0.600000024, 0)
  1547.  
  1548. CrouchRocket.Name = "CrouchRocket"
  1549. CrouchRocket.Parent = ExtraBaseBackGround1
  1550. CrouchRocket.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  1551. CrouchRocket.BorderSizePixel = 0
  1552. CrouchRocket.Position = UDim2.new(0.0901560932, 0, 0.0731094852, 0)
  1553. CrouchRocket.Size = UDim2.new(0, 92, 0, 25)
  1554. CrouchRocket.Font = Enum.Font.SourceSans
  1555. CrouchRocket.FontSize = Enum.FontSize.Size18
  1556. CrouchRocket.Text = "Crouch Rocket"
  1557. CrouchRocket.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1558. CrouchRocket.TextSize = 17
  1559.  
  1560. ExtraBaseBackGround1Side.Name = "ExtraBaseBackGround1Side"
  1561. ExtraBaseBackGround1Side.Parent = ExtraBaseBackGround1
  1562. ExtraBaseBackGround1Side.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  1563. ExtraBaseBackGround1Side.BorderSizePixel = 0
  1564. ExtraBaseBackGround1Side.Position = UDim2.new(0, 0, -0.109664232, 0)
  1565. ExtraBaseBackGround1Side.Size = UDim2.new(1, 0, 0.109999999, 0)
  1566.  
  1567. CloneIllusion.Name = "CloneIllusion"
  1568. CloneIllusion.Parent = ExtraBaseBackGround1
  1569. CloneIllusion.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  1570. CloneIllusion.BorderSizePixel = 0
  1571. CloneIllusion.Position = UDim2.new(0.0901560932, 0, 0.292437941, 0)
  1572. CloneIllusion.Size = UDim2.new(0, 92, 0, 25)
  1573. CloneIllusion.Font = Enum.Font.SourceSans
  1574. CloneIllusion.FontSize = Enum.FontSize.Size18
  1575. CloneIllusion.Text = "Clone Illusion"
  1576. CloneIllusion.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1577. CloneIllusion.TextSize = 17
  1578.  
  1579. CoolSpin.Name = "CoolSpin"
  1580. CoolSpin.Parent = ExtraBaseBackGround1
  1581. CoolSpin.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  1582. CoolSpin.BorderSizePixel = 0
  1583. CoolSpin.Position = UDim2.new(0.0901560932, 0, 0.511766434, 0)
  1584. CoolSpin.Size = UDim2.new(0, 92, 0, 25)
  1585. CoolSpin.Font = Enum.Font.SourceSans
  1586. CoolSpin.FontSize = Enum.FontSize.Size18
  1587. CoolSpin.Text = "Cool Spin"
  1588. CoolSpin.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1589. CoolSpin.TextSize = 17
  1590.  
  1591. JumpRocket.Name = "JumpRocket"
  1592. JumpRocket.Parent = ExtraBaseBackGround1
  1593. JumpRocket.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  1594. JumpRocket.BorderSizePixel = 0
  1595. JumpRocket.Position = UDim2.new(0.0901560932, 0, 0.731094897, 0)
  1596. JumpRocket.Size = UDim2.new(0, 92, 0, 25)
  1597. JumpRocket.Font = Enum.Font.SourceSans
  1598. JumpRocket.FontSize = Enum.FontSize.Size18
  1599. JumpRocket.Text = "Jump Rocket"
  1600. JumpRocket.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1601. JumpRocket.TextSize = 17
  1602.  
  1603. Extra_toPAGE2.Name = "Extra_toPAGE2"
  1604. Extra_toPAGE2.Parent = Extra_1
  1605. Extra_toPAGE2.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1606. Extra_toPAGE2.BorderSizePixel = 0
  1607. Extra_toPAGE2.Position = UDim2.new(0.819999993, 0, 0.0439999998, 0)
  1608. Extra_toPAGE2.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
  1609. Extra_toPAGE2.Font = Enum.Font.SourceSansLight
  1610. Extra_toPAGE2.FontSize = Enum.FontSize.Size24
  1611. Extra_toPAGE2.Text = "Next"
  1612. Extra_toPAGE2.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1613. Extra_toPAGE2.TextSize = 22
  1614.  
  1615. Character_toPAGE2_IMAGE_3.Name = "Character_toPAGE2_IMAGE"
  1616. Character_toPAGE2_IMAGE_3.Parent = Extra_toPAGE2
  1617. Character_toPAGE2_IMAGE_3.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1618. Character_toPAGE2_IMAGE_3.BorderSizePixel = 0
  1619. Character_toPAGE2_IMAGE_3.Position = UDim2.new(0.900659323, 0, 0, 0)
  1620. Character_toPAGE2_IMAGE_3.Size = UDim2.new(0, 25, 0, 25)
  1621. Character_toPAGE2_IMAGE_3.Image = "http://www.roblox.com/asset/?id=1282737326"
  1622.  
  1623. Extra_Title.Name = "Extra_Title"
  1624. Extra_Title.Parent = Extra_1
  1625. Extra_Title.BackgroundColor3 = Color3.new(1, 1, 1)
  1626. Extra_Title.BackgroundTransparency = 1
  1627. Extra_Title.Position = UDim2.new(0.226410091, 0, 0, 0)
  1628. Extra_Title.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  1629. Extra_Title.Font = Enum.Font.SourceSansBold
  1630. Extra_Title.FontSize = Enum.FontSize.Size28
  1631. Extra_Title.Text = "Extra"
  1632. Extra_Title.TextSize = 25
  1633.  
  1634. ExtraBaseBackGround2.Name = "ExtraBaseBackGround2"
  1635. ExtraBaseBackGround2.Parent = Extra_1
  1636. ExtraBaseBackGround2.BackgroundColor3 = Color3.new(0.101961, 0.737255, 0.611765)
  1637. ExtraBaseBackGround2.BorderSizePixel = 0
  1638. ExtraBaseBackGround2.Position = UDim2.new(0.374000013, 0, 0.400000006, 0)
  1639. ExtraBaseBackGround2.Size = UDim2.new(0.25, 0, 0.600000024, 0)
  1640.  
  1641. NoLimbs.Name = "NoLimbs"
  1642. NoLimbs.Parent = ExtraBaseBackGround2
  1643. NoLimbs.BackgroundColor3 = Color3.new(0.0862745, 0.627451, 0.521569)
  1644. NoLimbs.BorderSizePixel = 0
  1645. NoLimbs.Position = UDim2.new(0.0901560932, 0, 0.0731094852, 0)
  1646. NoLimbs.Size = UDim2.new(0, 92, 0, 25)
  1647. NoLimbs.Font = Enum.Font.SourceSans
  1648. NoLimbs.FontSize = Enum.FontSize.Size18
  1649. NoLimbs.Text = "No Limbs"
  1650. NoLimbs.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1651. NoLimbs.TextSize = 17
  1652.  
  1653. FEGodmode.Name = "FE Godmode"
  1654. FEGodmode.Parent = ExtraBaseBackGround2
  1655. FEGodmode.BackgroundColor3 = Color3.new(0.0862745, 0.627451, 0.521569)
  1656. FEGodmode.BorderSizePixel = 0
  1657. FEGodmode.Position = UDim2.new(0.0901560932, 0, 0.292437941, 0)
  1658. FEGodmode.Size = UDim2.new(0, 92, 0, 25)
  1659. FEGodmode.Font = Enum.Font.SourceSans
  1660. FEGodmode.FontSize = Enum.FontSize.Size18
  1661. FEGodmode.Text = "FE Godmode"
  1662. FEGodmode.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1663. FEGodmode.TextSize = 17
  1664.  
  1665. BrickHats.Name = "BrickHats"
  1666. BrickHats.Parent = ExtraBaseBackGround2
  1667. BrickHats.BackgroundColor3 = Color3.new(0.0862745, 0.627451, 0.521569)
  1668. BrickHats.BorderSizePixel = 0
  1669. BrickHats.Position = UDim2.new(0.0901560932, 0, 0.511766434, 0)
  1670. BrickHats.Size = UDim2.new(0, 92, 0, 25)
  1671. BrickHats.Font = Enum.Font.SourceSans
  1672. BrickHats.FontSize = Enum.FontSize.Size18
  1673. BrickHats.Text = "Brick Hats"
  1674. BrickHats.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1675. BrickHats.TextSize = 17
  1676.  
  1677. RapidPunch.Name = "RapidPunch"
  1678. RapidPunch.Parent = ExtraBaseBackGround2
  1679. RapidPunch.BackgroundColor3 = Color3.new(0.0862745, 0.627451, 0.521569)
  1680. RapidPunch.BorderSizePixel = 0
  1681. RapidPunch.Position = UDim2.new(0.0901560932, 0, 0.731094897, 0)
  1682. RapidPunch.Size = UDim2.new(0, 92, 0, 25)
  1683. RapidPunch.Font = Enum.Font.SourceSans
  1684. RapidPunch.FontSize = Enum.FontSize.Size18
  1685. RapidPunch.Text = "RapidPunch"
  1686. RapidPunch.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1687. RapidPunch.TextSize = 17
  1688.  
  1689. ExtraBaseBackGround2Side.Name = "ExtraBaseBackGround2Side"
  1690. ExtraBaseBackGround2Side.Parent = ExtraBaseBackGround2
  1691. ExtraBaseBackGround2Side.BackgroundColor3 = Color3.new(0.0862745, 0.627451, 0.521569)
  1692. ExtraBaseBackGround2Side.BorderSizePixel = 0
  1693. ExtraBaseBackGround2Side.Position = UDim2.new(0, 0, -0.109664232, 0)
  1694. ExtraBaseBackGround2Side.Size = UDim2.new(1, 0, 0.109999999, 0)
  1695.  
  1696. ExtraBaseBackGround3.Name = "ExtraBaseBackGround3"
  1697. ExtraBaseBackGround3.Parent = Extra_1
  1698. ExtraBaseBackGround3.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1699. ExtraBaseBackGround3.BorderSizePixel = 0
  1700. ExtraBaseBackGround3.Position = UDim2.new(0.667999983, 0, 0.400000006, 0)
  1701. ExtraBaseBackGround3.Size = UDim2.new(0.25, 0, 0.600000024, 0)
  1702.  
  1703. PunchFollow.Name = "PunchFollow"
  1704. PunchFollow.Parent = ExtraBaseBackGround3
  1705. PunchFollow.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  1706. PunchFollow.BorderSizePixel = 0
  1707. PunchFollow.Position = UDim2.new(0.0901560932, 0, 0.0731094852, 0)
  1708. PunchFollow.Size = UDim2.new(0, 92, 0, 25)
  1709. PunchFollow.Font = Enum.Font.SourceSans
  1710. PunchFollow.FontSize = Enum.FontSize.Size18
  1711. PunchFollow.Text = "Punch Follow"
  1712. PunchFollow.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1713. PunchFollow.TextSize = 17
  1714.  
  1715. ArmFollow.Name = "ArmFollow"
  1716. ArmFollow.Parent = ExtraBaseBackGround3
  1717. ArmFollow.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  1718. ArmFollow.BorderSizePixel = 0
  1719. ArmFollow.Position = UDim2.new(0.0901560932, 0, 0.292437941, 0)
  1720. ArmFollow.Size = UDim2.new(0, 92, 0, 25)
  1721. ArmFollow.Font = Enum.Font.SourceSans
  1722. ArmFollow.FontSize = Enum.FontSize.Size18
  1723. ArmFollow.Text = "Arm Follow"
  1724. ArmFollow.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1725. ArmFollow.TextSize = 17
  1726.  
  1727. Spin.Name = "Spin"
  1728. Spin.Parent = ExtraBaseBackGround3
  1729. Spin.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  1730. Spin.BorderSizePixel = 0
  1731. Spin.Position = UDim2.new(0.0901560932, 0, 0.511766434, 0)
  1732. Spin.Size = UDim2.new(0, 92, 0, 25)
  1733. Spin.Font = Enum.Font.SourceSans
  1734. Spin.FontSize = Enum.FontSize.Size18
  1735. Spin.Text = "Spin"
  1736. Spin.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1737. Spin.TextSize = 17
  1738.  
  1739. Faint.Name = "Faint"
  1740. Faint.Parent = ExtraBaseBackGround3
  1741. Faint.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  1742. Faint.BorderSizePixel = 0
  1743. Faint.Position = UDim2.new(0.0901560932, 0, 0.731094897, 0)
  1744. Faint.Size = UDim2.new(0, 92, 0, 25)
  1745. Faint.Font = Enum.Font.SourceSans
  1746. Faint.FontSize = Enum.FontSize.Size18
  1747. Faint.Text = "Faint"
  1748. Faint.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1749. Faint.TextSize = 17
  1750.  
  1751. ExtraBaseBackGround3Side.Name = "ExtraBaseBackGround3Side"
  1752. ExtraBaseBackGround3Side.Parent = ExtraBaseBackGround3
  1753. ExtraBaseBackGround3Side.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  1754. ExtraBaseBackGround3Side.BorderSizePixel = 0
  1755. ExtraBaseBackGround3Side.Position = UDim2.new(0, 0, -0.109664232, 0)
  1756. ExtraBaseBackGround3Side.Size = UDim2.new(1, 0, 0.109999999, 0)
  1757.  
  1758. Extra_2.Name = "Extra_2"
  1759. Extra_2.Parent = Pages
  1760. Extra_2.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1761. Extra_2.BorderSizePixel = 0
  1762. Extra_2.Position = UDim2.new(1, 0, 0, 0)
  1763. Extra_2.Size = UDim2.new(1, 0, 1, 0)
  1764.  
  1765. Extra_Image_2.Name = "Extra_Image"
  1766. Extra_Image_2.Parent = Extra_2
  1767. Extra_Image_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1768. Extra_Image_2.BackgroundTransparency = 1
  1769. Extra_Image_2.Position = UDim2.new(0.80375582, 0, 0.0439298227, 0)
  1770. Extra_Image_2.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
  1771. Extra_Image_2.Image = "http://www.roblox.com/asset/?id=1282931168"
  1772.  
  1773. ExtraText_2.Name = "ExtraText"
  1774. ExtraText_2.Parent = Extra_2
  1775. ExtraText_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1776. ExtraText_2.BackgroundTransparency = 1
  1777. ExtraText_2.Position = UDim2.new(0.158487067, 0, 0.109824568, 0)
  1778. ExtraText_2.Size = UDim2.new(0.65658927, 0, 0.175719291, 0)
  1779. ExtraText_2.Font = Enum.Font.SourceSansItalic
  1780. ExtraText_2.FontSize = Enum.FontSize.Size24
  1781. ExtraText_2.Text = "Cool and unique commands for other players!"
  1782. ExtraText_2.TextSize = 19
  1783. ExtraText_2.TextWrapped = true
  1784.  
  1785. Extra_Title_2.Name = "Extra_Title"
  1786. Extra_Title_2.Parent = Extra_2
  1787. Extra_Title_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1788. Extra_Title_2.BackgroundTransparency = 1
  1789. Extra_Title_2.Position = UDim2.new(0.226410091, 0, 0, 0)
  1790. Extra_Title_2.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  1791. Extra_Title_2.Font = Enum.Font.SourceSansBold
  1792. Extra_Title_2.FontSize = Enum.FontSize.Size28
  1793. Extra_Title_2.Text = "Extra"
  1794. Extra_Title_2.TextSize = 25
  1795.  
  1796. ExtraBaseBackGround2_2.Name = "ExtraBaseBackGround2"
  1797. ExtraBaseBackGround2_2.Parent = Extra_2
  1798. ExtraBaseBackGround2_2.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
  1799. ExtraBaseBackGround2_2.BorderSizePixel = 0
  1800. ExtraBaseBackGround2_2.Position = UDim2.new(0.158000007, 0, 0.38499999, 0)
  1801. ExtraBaseBackGround2_2.Size = UDim2.new(0.667909801, 0, 0.615017533, 0)
  1802.  
  1803. CrouchAttack.Name = "CrouchAttack"
  1804. CrouchAttack.Parent = ExtraBaseBackGround2_2
  1805. CrouchAttack.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1806. CrouchAttack.BorderSizePixel = 0
  1807. CrouchAttack.Position = UDim2.new(0.576693356, 0, 0.321942836, 0)
  1808. CrouchAttack.Size = UDim2.new(0, 92, 0, 25)
  1809. CrouchAttack.Font = Enum.Font.SourceSans
  1810. CrouchAttack.FontSize = Enum.FontSize.Size18
  1811. CrouchAttack.Text = "Crouch Attack"
  1812. CrouchAttack.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1813. CrouchAttack.TextSize = 17
  1814.  
  1815. WalkThrough.Name = "WalkThrough"
  1816. WalkThrough.Parent = ExtraBaseBackGround2_2
  1817. WalkThrough.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1818. WalkThrough.BorderSizePixel = 0
  1819. WalkThrough.Position = UDim2.new(0.118730992, 0, 0.536571443, 0)
  1820. WalkThrough.Size = UDim2.new(0, 92, 0, 25)
  1821. WalkThrough.Font = Enum.Font.SourceSans
  1822. WalkThrough.FontSize = Enum.FontSize.Size18
  1823. WalkThrough.Text = "Walk Through"
  1824. WalkThrough.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1825. WalkThrough.TextSize = 17
  1826.  
  1827. CreepyWatch.Name = "CreepyWatch"
  1828. CreepyWatch.Parent = ExtraBaseBackGround2_2
  1829. CreepyWatch.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1830. CreepyWatch.BorderSizePixel = 0
  1831. CreepyWatch.Position = UDim2.new(0.118730992, 0, 0.321942836, 0)
  1832. CreepyWatch.Size = UDim2.new(0, 92, 0, 25)
  1833. CreepyWatch.Font = Enum.Font.SourceSans
  1834. CreepyWatch.FontSize = Enum.FontSize.Size18
  1835. CreepyWatch.Text = "Creepy Watch"
  1836. CreepyWatch.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1837. CreepyWatch.TextSize = 17
  1838.  
  1839. SpinAttack.Name = "SpinAttack"
  1840. SpinAttack.Parent = ExtraBaseBackGround2_2
  1841. SpinAttack.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1842. SpinAttack.BorderSizePixel = 0
  1843. SpinAttack.Position = UDim2.new(0.576693356, 0, 0.536571443, 0)
  1844. SpinAttack.Size = UDim2.new(0, 92, 0, 25)
  1845. SpinAttack.Font = Enum.Font.SourceSans
  1846. SpinAttack.FontSize = Enum.FontSize.Size18
  1847. SpinAttack.Text = "Spin Attack"
  1848. SpinAttack.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1849. SpinAttack.TextSize = 17
  1850.  
  1851. ExtraBaseBackGround2Side_2.Name = "ExtraBaseBackGround2Side"
  1852. ExtraBaseBackGround2Side_2.Parent = ExtraBaseBackGround2_2
  1853. ExtraBaseBackGround2Side_2.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1854. ExtraBaseBackGround2Side_2.BorderSizePixel = 0
  1855. ExtraBaseBackGround2Side_2.Position = UDim2.new(0, 0, -0.109664232, 0)
  1856. ExtraBaseBackGround2Side_2.Size = UDim2.new(1, 0, 0.109999999, 0)
  1857.  
  1858. TXTBOX_PlrNameEXTRA.Name = "TXTBOX_PlrNameEXTRA"
  1859. TXTBOX_PlrNameEXTRA.Parent = ExtraBaseBackGround2_2
  1860. TXTBOX_PlrNameEXTRA.BackgroundColor3 = Color3.new(0.956863, 0.968628, 0.972549)
  1861. TXTBOX_PlrNameEXTRA.BorderColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1862. TXTBOX_PlrNameEXTRA.BorderSizePixel = 0
  1863. TXTBOX_PlrNameEXTRA.Position = UDim2.new(0.22050041, 0, 0.0715428591, 0)
  1864. TXTBOX_PlrNameEXTRA.Size = UDim2.new(0.559731781, 0, 0.143085718, 0)
  1865. TXTBOX_PlrNameEXTRA.ZIndex = 2
  1866. TXTBOX_PlrNameEXTRA.Font = Enum.Font.SourceSans
  1867. TXTBOX_PlrNameEXTRA.FontSize = Enum.FontSize.Size14
  1868. TXTBOX_PlrNameEXTRA.Text = "Player"
  1869. TXTBOX_PlrNameEXTRA.TextScaled = true
  1870. TXTBOX_PlrNameEXTRA.TextSize = 14
  1871. TXTBOX_PlrNameEXTRA.TextWrapped = true
  1872.  
  1873. _18.Name = "18+"
  1874. _18.Parent = ExtraBaseBackGround2_2
  1875. _18.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1876. _18.BorderSizePixel = 0
  1877. _18.Position = UDim2.new(0.576693356, 0, 0.75120002, 0)
  1878. _18.Size = UDim2.new(0, 92, 0, 25)
  1879. _18.Font = Enum.Font.SourceSans
  1880. _18.FontSize = Enum.FontSize.Size18
  1881. _18.Text = "18+"
  1882. _18.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1883. _18.TextSize = 17
  1884.  
  1885. SlamPropulsion.Name = "SlamPropulsion"
  1886. SlamPropulsion.Parent = ExtraBaseBackGround2_2
  1887. SlamPropulsion.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1888. SlamPropulsion.BorderSizePixel = 0
  1889. SlamPropulsion.Position = UDim2.new(0.118730992, 0, 0.75120002, 0)
  1890. SlamPropulsion.Size = UDim2.new(0, 92, 0, 25)
  1891. SlamPropulsion.Font = Enum.Font.SourceSans
  1892. SlamPropulsion.FontSize = Enum.FontSize.Size18
  1893. SlamPropulsion.Text = "Slam Propulsion"
  1894. SlamPropulsion.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1895. SlamPropulsion.TextSize = 15
  1896. SlamPropulsion.TextWrapped = true
  1897.  
  1898. Extra_backPAGE1.Name = "Extra_backPAGE1"
  1899. Extra_backPAGE1.Parent = Extra_2
  1900. Extra_backPAGE1.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1901. Extra_backPAGE1.BorderSizePixel = 0
  1902. Extra_backPAGE1.Position = UDim2.new(0.0679230243, 0, 0.0439298227, 0)
  1903. Extra_backPAGE1.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
  1904. Extra_backPAGE1.Font = Enum.Font.SourceSansLight
  1905. Extra_backPAGE1.FontSize = Enum.FontSize.Size24
  1906. Extra_backPAGE1.Text = "Prev"
  1907. Extra_backPAGE1.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1908. Extra_backPAGE1.TextSize = 22
  1909.  
  1910. Character_toPAGE1_IMAGE_3.Name = "Character_toPAGE1_IMAGE"
  1911. Character_toPAGE1_IMAGE_3.Parent = Extra_backPAGE1
  1912. Character_toPAGE1_IMAGE_3.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1913. Character_toPAGE1_IMAGE_3.BorderSizePixel = 0
  1914. Character_toPAGE1_IMAGE_3.Position = UDim2.new(-0.400293052, 0, 0, 0)
  1915. Character_toPAGE1_IMAGE_3.Size = UDim2.new(0, 25, 0, 25)
  1916. Character_toPAGE1_IMAGE_3.Image = "http://www.roblox.com/asset/?id=1282894968"
  1917.  
  1918. Others_3.Name = "Others_3"
  1919. Others_3.Parent = Pages
  1920. Others_3.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1921. Others_3.BorderSizePixel = 0
  1922. Others_3.Position = UDim2.new(1, 0, 0, 0)
  1923. Others_3.Size = UDim2.new(1, 0, 1, 0)
  1924.  
  1925. OthersTitle_3.Name = "OthersTitle"
  1926. OthersTitle_3.Parent = Others_3
  1927. OthersTitle_3.BackgroundColor3 = Color3.new(1, 1, 1)
  1928. OthersTitle_3.BackgroundTransparency = 1
  1929. OthersTitle_3.Position = UDim2.new(0.226410091, 0, 0, 0)
  1930. OthersTitle_3.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  1931. OthersTitle_3.Font = Enum.Font.SourceSansBold
  1932. OthersTitle_3.FontSize = Enum.FontSize.Size28
  1933. OthersTitle_3.Text = "Others"
  1934. OthersTitle_3.TextSize = 25
  1935.  
  1936. Other_Image3.Name = "Other_Image3"
  1937. Other_Image3.Parent = Others_3
  1938. Other_Image3.BackgroundColor3 = Color3.new(1, 1, 1)
  1939. Other_Image3.BackgroundTransparency = 1
  1940. Other_Image3.Position = UDim2.new(0.124525554, 0, 0.219649136, 0)
  1941. Other_Image3.Size = UDim2.new(0.101884536, 0, 0.197684199, 0)
  1942. Other_Image3.Image = "http://www.roblox.com/asset/?id=1281286925"
  1943.  
  1944. OthersText_3.Name = "OthersText"
  1945. OthersText_3.Parent = Others_3
  1946. OthersText_3.BackgroundColor3 = Color3.new(1, 1, 1)
  1947. OthersText_3.BackgroundTransparency = 1
  1948. OthersText_3.Position = UDim2.new(0.237730592, 0, 0.197684199, 0)
  1949. OthersText_3.Size = UDim2.new(0.65658927, 0, 0.219649136, 0)
  1950. OthersText_3.Font = Enum.Font.SourceSansItalic
  1951. OthersText_3.FontSize = Enum.FontSize.Size24
  1952. OthersText_3.Text = "Warning! You require tools in your inventory to use these. Some games/tools do not work."
  1953. OthersText_3.TextSize = 19
  1954. OthersText_3.TextWrapped = true
  1955.  
  1956. TXTBOX_PlrNameOTHER3.Name = "TXTBOX_PlrNameOTHER3"
  1957. TXTBOX_PlrNameOTHER3.Parent = Others_3
  1958. TXTBOX_PlrNameOTHER3.BackgroundColor3 = Color3.new(0.956863, 0.968628, 0.972549)
  1959. TXTBOX_PlrNameOTHER3.BorderColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1960. TXTBOX_PlrNameOTHER3.BorderSizePixel = 0
  1961. TXTBOX_PlrNameOTHER3.Position = UDim2.new(0.249051109, 0, 0.571087658, 0)
  1962. TXTBOX_PlrNameOTHER3.Size = UDim2.new(0.520743191, 0, 0.0878596455, 0)
  1963. TXTBOX_PlrNameOTHER3.ZIndex = 2
  1964. TXTBOX_PlrNameOTHER3.Font = Enum.Font.SourceSans
  1965. TXTBOX_PlrNameOTHER3.FontSize = Enum.FontSize.Size14
  1966. TXTBOX_PlrNameOTHER3.Text = "Player"
  1967. TXTBOX_PlrNameOTHER3.TextScaled = true
  1968. TXTBOX_PlrNameOTHER3.TextSize = 14
  1969. TXTBOX_PlrNameOTHER3.TextWrapped = true
  1970.  
  1971. othersBaseBackground3.Name = "othersBaseBackground3"
  1972. othersBaseBackground3.Parent = Others_3
  1973. othersBaseBackground3.BackgroundColor3 = Color3.new(0.752941, 0.223529, 0.168627)
  1974. othersBaseBackground3.BorderSizePixel = 0
  1975. othersBaseBackground3.Position = UDim2.new(0.125, 0, 0.518999994, 0)
  1976. othersBaseBackground3.Size = UDim2.new(0.769794285, 0, 0.483228087, 0)
  1977.  
  1978. FreeFall.Name = "FreeFall"
  1979. FreeFall.Parent = othersBaseBackground3
  1980. FreeFall.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
  1981. FreeFall.BorderSizePixel = 0
  1982. FreeFall.Position = UDim2.new(0.367916405, 0, 0.364218175, 0)
  1983. FreeFall.Size = UDim2.new(0, 92, 0, 25)
  1984. FreeFall.Font = Enum.Font.SourceSans
  1985. FreeFall.FontSize = Enum.FontSize.Size24
  1986. FreeFall.Text = "Free Fall"
  1987. FreeFall.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1988. FreeFall.TextSize = 22
  1989.  
  1990. Attach.Name = "Attach"
  1991. Attach.Parent = othersBaseBackground3
  1992. Attach.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
  1993. Attach.BorderSizePixel = 0
  1994. Attach.Position = UDim2.new(0.67696619, 0, 0.364218175, 0)
  1995. Attach.Size = UDim2.new(0, 92, 0, 25)
  1996. Attach.Font = Enum.Font.SourceSans
  1997. Attach.FontSize = Enum.FontSize.Size24
  1998. Attach.Text = "Attach"
  1999. Attach.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2000. Attach.TextSize = 22
  2001.  
  2002. Bring.Name = "Bring"
  2003. Bring.Parent = othersBaseBackground3
  2004. Bring.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
  2005. Bring.BorderSizePixel = 0
  2006. Bring.Position = UDim2.new(0.67696619, 0, 0.682909131, 0)
  2007. Bring.Size = UDim2.new(0, 92, 0, 25)
  2008. Bring.Font = Enum.Font.SourceSans
  2009. Bring.FontSize = Enum.FontSize.Size24
  2010. Bring.Text = "Bring"
  2011. Bring.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2012. Bring.TextSize = 22
  2013.  
  2014. SafeKill.Name = "SafeKill"
  2015. SafeKill.Parent = othersBaseBackground3
  2016. SafeKill.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
  2017. SafeKill.BorderSizePixel = 0
  2018. SafeKill.Position = UDim2.new(0.367916405, 0, 0.682909131, 0)
  2019. SafeKill.Size = UDim2.new(0, 92, 0, 25)
  2020. SafeKill.Font = Enum.Font.SourceSans
  2021. SafeKill.FontSize = Enum.FontSize.Size24
  2022. SafeKill.Text = "SafeKill"
  2023. SafeKill.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2024. SafeKill.TextSize = 22
  2025.  
  2026. SuperSpin.Name = "SuperSpin"
  2027. SuperSpin.Parent = othersBaseBackground3
  2028. SuperSpin.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
  2029. SuperSpin.BorderSizePixel = 0
  2030. SuperSpin.Position = UDim2.new(0.0588666238, 0, 0.682909131, 0)
  2031. SuperSpin.Size = UDim2.new(0, 92, 0, 25)
  2032. SuperSpin.Font = Enum.Font.SourceSans
  2033. SuperSpin.FontSize = Enum.FontSize.Size24
  2034. SuperSpin.Text = "SuperSpin"
  2035. SuperSpin.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2036. SuperSpin.TextSize = 22
  2037.  
  2038. Kill.Name = "Kill"
  2039. Kill.Parent = othersBaseBackground3
  2040. Kill.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
  2041. Kill.BorderSizePixel = 0
  2042. Kill.Position = UDim2.new(0.0588666238, 0, 0.364218175, 0)
  2043. Kill.Size = UDim2.new(0, 92, 0, 25)
  2044. Kill.Font = Enum.Font.SourceSans
  2045. Kill.FontSize = Enum.FontSize.Size24
  2046. Kill.Text = "Kill"
  2047. Kill.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2048. Kill.TextSize = 22
  2049.  
  2050. Others_backPAGE2.Name = "Others_backPAGE2"
  2051. Others_backPAGE2.Parent = Others_3
  2052. Others_backPAGE2.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  2053. Others_backPAGE2.BorderSizePixel = 0
  2054. Others_backPAGE2.Position = UDim2.new(0.0679230243, 0, 0.0439298227, 0)
  2055. Others_backPAGE2.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
  2056. Others_backPAGE2.Font = Enum.Font.SourceSansLight
  2057. Others_backPAGE2.FontSize = Enum.FontSize.Size24
  2058. Others_backPAGE2.Text = "Prev"
  2059. Others_backPAGE2.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2060. Others_backPAGE2.TextSize = 22
  2061.  
  2062. Character_toPAGE1_IMAGE_4.Name = "Character_toPAGE1_IMAGE"
  2063. Character_toPAGE1_IMAGE_4.Parent = Others_backPAGE2
  2064. Character_toPAGE1_IMAGE_4.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  2065. Character_toPAGE1_IMAGE_4.BorderSizePixel = 0
  2066. Character_toPAGE1_IMAGE_4.Position = UDim2.new(-0.400293052, 0, 0, 0)
  2067. Character_toPAGE1_IMAGE_4.Size = UDim2.new(0, 25, 0, 25)
  2068. Character_toPAGE1_IMAGE_4.Image = "http://www.roblox.com/asset/?id=1282894968"
  2069.  
  2070. Games.Name = "Games"
  2071. Games.Parent = Pages
  2072. Games.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2073. Games.BorderSizePixel = 0
  2074. Games.Position = UDim2.new(1, 0, 0, 0)
  2075. Games.Size = UDim2.new(1, 0, 1, 0)
  2076.  
  2077. Games_IMAGE.Name = "Games_IMAGE"
  2078. Games_IMAGE.Parent = Games
  2079. Games_IMAGE.BackgroundColor3 = Color3.new(1, 1, 1)
  2080. Games_IMAGE.BackgroundTransparency = 1
  2081. Games_IMAGE.Position = UDim2.new(0.0679230243, 0, 0.109824568, 0)
  2082. Games_IMAGE.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
  2083. Games_IMAGE.Image = "http://www.roblox.com/asset/?id=1281454262"
  2084.  
  2085. GamesText.Name = "GamesText"
  2086. GamesText.Parent = Games
  2087. GamesText.BackgroundColor3 = Color3.new(1, 1, 1)
  2088. GamesText.BackgroundTransparency = 1
  2089. GamesText.Position = UDim2.new(0.158487067, 0, 0.109824568, 0)
  2090. GamesText.Size = UDim2.new(0.65658927, 0, 0.175719291, 0)
  2091. GamesText.Font = Enum.Font.SourceSansItalic
  2092. GamesText.FontSize = Enum.FontSize.Size24
  2093. GamesText.Text = "Not a completed part, I will be updating with more games."
  2094. GamesText.TextSize = 19
  2095. GamesText.TextWrapped = true
  2096.  
  2097. Games_TITLE.Name = "Games_TITLE"
  2098. Games_TITLE.Parent = Games
  2099. Games_TITLE.BackgroundColor3 = Color3.new(1, 1, 1)
  2100. Games_TITLE.BackgroundTransparency = 1
  2101. Games_TITLE.Position = UDim2.new(0.226410091, 0, 0, 0)
  2102. Games_TITLE.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  2103. Games_TITLE.Font = Enum.Font.SourceSansBold
  2104. Games_TITLE.FontSize = Enum.FontSize.Size28
  2105. Games_TITLE.Text = "Games"
  2106. Games_TITLE.TextSize = 25
  2107.  
  2108. Games_IMAGE2.Name = "Games_IMAGE2"
  2109. Games_IMAGE2.Parent = Games
  2110. Games_IMAGE2.BackgroundColor3 = Color3.new(1, 1, 1)
  2111. Games_IMAGE2.BackgroundTransparency = 1
  2112. Games_IMAGE2.Position = UDim2.new(0.815076292, 0, 0.109824568, 0)
  2113. Games_IMAGE2.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
  2114. Games_IMAGE2.Image = "http://www.roblox.com/asset/?id=1281454262"
  2115.  
  2116. SwordFightingTournament.Name = "SwordFightingTournament"
  2117. SwordFightingTournament.Parent = Games
  2118. SwordFightingTournament.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  2119. SwordFightingTournament.BorderSizePixel = 0
  2120. SwordFightingTournament.Position = UDim2.new(0.350935638, 0, 0.329473704, 0)
  2121. SwordFightingTournament.Size = UDim2.new(0.283012629, 0, 0.109824568, 0)
  2122. SwordFightingTournament.Font = Enum.Font.SourceSans
  2123. SwordFightingTournament.FontSize = Enum.FontSize.Size14
  2124. SwordFightingTournament.Text = "Sword Fighting Tournament"
  2125. SwordFightingTournament.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2126. SwordFightingTournament.TextScaled = true
  2127. SwordFightingTournament.TextSize = 14
  2128. SwordFightingTournament.TextWrapped = true
  2129.  
  2130. PlatesOfFateMayhem.Name = "PlatesOfFateMayhem"
  2131. PlatesOfFateMayhem.Parent = Games
  2132. PlatesOfFateMayhem.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  2133. PlatesOfFateMayhem.BorderSizePixel = 0
  2134. PlatesOfFateMayhem.Position = UDim2.new(0.350935638, 0, 0.483228087, 0)
  2135. PlatesOfFateMayhem.Size = UDim2.new(0.283012629, 0, 0.109824568, 0)
  2136. PlatesOfFateMayhem.Font = Enum.Font.SourceSans
  2137. PlatesOfFateMayhem.FontSize = Enum.FontSize.Size14
  2138. PlatesOfFateMayhem.Text = "Plates of Fate: Mayhem"
  2139. PlatesOfFateMayhem.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2140. PlatesOfFateMayhem.TextScaled = true
  2141. PlatesOfFateMayhem.TextSize = 14
  2142. PlatesOfFateMayhem.TextWrapped = true
  2143.  
  2144. GamesText2.Name = "GamesText2"
  2145. GamesText2.Parent = Games
  2146. GamesText2.BackgroundColor3 = Color3.new(1, 1, 1)
  2147. GamesText2.BackgroundTransparency = 1
  2148. GamesText2.Position = UDim2.new(0.0679230243, 0, 0.768771946, 0)
  2149. GamesText2.Size = UDim2.new(0.871678829, 0, 0.175719291, 0)
  2150. GamesText2.Font = Enum.Font.SourceSansItalic
  2151. GamesText2.FontSize = Enum.FontSize.Size24
  2152. GamesText2.Text = "Since games update, buttons can sometimes not work. If they do not work, please let me know so I can update."
  2153. GamesText2.TextSize = 19
  2154. GamesText2.TextWrapped = true
  2155.  
  2156. Frappe.Name = "Frappe"
  2157. Frappe.Parent = Games
  2158. Frappe.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  2159. Frappe.BorderSizePixel = 0
  2160. Frappe.Position = UDim2.new(0.350935638, 0, 0.636982441, 0)
  2161. Frappe.Size = UDim2.new(0.283012629, 0, 0.109824568, 0)
  2162. Frappe.Font = Enum.Font.SourceSans
  2163. Frappe.FontSize = Enum.FontSize.Size14
  2164. Frappe.Text = "Frappe"
  2165. Frappe.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2166. Frappe.TextScaled = true
  2167. Frappe.TextSize = 14
  2168. Frappe.TextWrapped = true
  2169.  
  2170. Frappe_2.Name = "Frappe"
  2171. Frappe_2.Parent = Games
  2172. Frappe_2.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  2173. Frappe_2.BorderSizePixel = 0
  2174. Frappe_2.Position = UDim2.new(0.667909801, 0, 0.329473704, 0)
  2175. Frappe_2.Size = UDim2.new(0.283012629, 0, 0.109824568, 0)
  2176. Frappe_2.Font = Enum.Font.SourceSans
  2177. Frappe_2.FontSize = Enum.FontSize.Size14
  2178. Frappe_2.Text = "Frappe"
  2179. Frappe_2.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2180. Frappe_2.TextScaled = true
  2181. Frappe_2.TextSize = 14
  2182. Frappe_2.TextWrapped = true
  2183.  
  2184. MenuFrame.Name = "MenuFrame"
  2185. MenuFrame.Parent = MainFrame
  2186. MenuFrame.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
  2187. MenuFrame.BorderSizePixel = 0
  2188. MenuFrame.Position = UDim2.new(-0.38499999, 0, 0.075000003, 0)
  2189. MenuFrame.Size = UDim2.new(0, 170, 0, 271)
  2190.  
  2191. Welcome.Name = "Welcome"
  2192. Welcome.Parent = MenuFrame
  2193. Welcome.BackgroundColor3 = Color3.new(1, 1, 1)
  2194. Welcome.BackgroundTransparency = 1
  2195. Welcome.Position = UDim2.new(0.0294333119, 0, 0.0184797049, 0)
  2196. Welcome.Size = UDim2.new(0.941865981, 0, 0.0739188194, 0)
  2197. Welcome.Font = Enum.Font.SourceSansLight
  2198. Welcome.FontSize = Enum.FontSize.Size14
  2199. Welcome.Text = "Welcome,"
  2200. Welcome.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2201. Welcome.TextScaled = true
  2202. Welcome.TextSize = 14
  2203. Welcome.TextWrapped = true
  2204.  
  2205. NameOfPlayer.Name = "NameOfPlayer"
  2206. NameOfPlayer.Parent = MenuFrame
  2207. NameOfPlayer.BackgroundColor3 = Color3.new(1, 1, 1)
  2208. NameOfPlayer.BackgroundTransparency = 1
  2209. NameOfPlayer.Position = UDim2.new(0, 0, 0.0923985243, 0)
  2210. NameOfPlayer.Size = UDim2.new(0.971299291, 0, 0.0739188194, 0)
  2211. NameOfPlayer.Font = Enum.Font.SourceSansItalic
  2212. NameOfPlayer.FontSize = Enum.FontSize.Size14
  2213. NameOfPlayer.Text = "PlayerName"
  2214. NameOfPlayer.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2215. NameOfPlayer.TextScaled = true
  2216. NameOfPlayer.TextSize = 14
  2217. NameOfPlayer.TextWrapped = true
  2218.  
  2219. T_Information.Name = "T_Information"
  2220. T_Information.Parent = MenuFrame
  2221. T_Information.BackgroundColor3 = Color3.new(0.584314, 0.647059, 0.65098)
  2222. T_Information.BorderSizePixel = 0
  2223. T_Information.Position = UDim2.new(0, 0, 0.221756458, 0)
  2224. T_Information.Size = UDim2.new(1.00073266, 0, 0.0923985243, 0)
  2225. T_Information.Font = Enum.Font.SourceSans
  2226. T_Information.FontSize = Enum.FontSize.Size18
  2227. T_Information.Text = "Information"
  2228. T_Information.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2229. T_Information.TextSize = 16
  2230. T_Information.TextXAlignment = Enum.TextXAlignment.Left
  2231.  
  2232. T_InfoImage.Name = "T_InfoImage"
  2233. T_InfoImage.Parent = T_Information
  2234. T_InfoImage.BackgroundColor3 = Color3.new(1, 1, 1)
  2235. T_InfoImage.BackgroundTransparency = 1
  2236. T_InfoImage.Position = UDim2.new(0.79469943, 0, -0.400639981, 0)
  2237. T_InfoImage.Size = UDim2.new(0.176599875, 0, 1.20192003, 0)
  2238. T_InfoImage.Image = "http://www.roblox.com/asset/?id=1281284684"
  2239.  
  2240. T_Character.Name = "T_Character"
  2241. T_Character.Parent = MenuFrame
  2242. T_Character.BackgroundColor3 = Color3.new(0.584314, 0.647059, 0.65098)
  2243. T_Character.BorderSizePixel = 0
  2244. T_Character.Position = UDim2.new(0, 0, 0.388073802, 0)
  2245. T_Character.Size = UDim2.new(1.00073266, 0, 0.0923985243, 0)
  2246. T_Character.Font = Enum.Font.SourceSans
  2247. T_Character.FontSize = Enum.FontSize.Size18
  2248. T_Character.Text = "Character"
  2249. T_Character.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2250. T_Character.TextSize = 16
  2251. T_Character.TextXAlignment = Enum.TextXAlignment.Left
  2252.  
  2253. T_CharImage.Name = "T_CharImage"
  2254. T_CharImage.Parent = T_Character
  2255. T_CharImage.BackgroundColor3 = Color3.new(1, 1, 1)
  2256. T_CharImage.BackgroundTransparency = 1
  2257. T_CharImage.Position = UDim2.new(0.79469943, 0, -0.400639981, 0)
  2258. T_CharImage.Size = UDim2.new(0.176599875, 0, 1.20192003, 0)
  2259. T_CharImage.Image = "http://www.roblox.com/asset/?id=1281299598"
  2260.  
  2261. T_Games.Name = "T_Games"
  2262. T_Games.Parent = MenuFrame
  2263. T_Games.BackgroundColor3 = Color3.new(0.584314, 0.647059, 0.65098)
  2264. T_Games.BorderSizePixel = 0
  2265. T_Games.Position = UDim2.new(0, 0, 0.498952031, 0)
  2266. T_Games.Size = UDim2.new(1.00073266, 0, 0.0923985243, 0)
  2267. T_Games.Font = Enum.Font.SourceSans
  2268. T_Games.FontSize = Enum.FontSize.Size18
  2269. T_Games.Text = "Games"
  2270. T_Games.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2271. T_Games.TextSize = 16
  2272. T_Games.TextXAlignment = Enum.TextXAlignment.Left
  2273.  
  2274. T_GameImage.Name = "T_GameImage"
  2275. T_GameImage.Parent = T_Games
  2276. T_GameImage.BackgroundColor3 = Color3.new(1, 1, 1)
  2277. T_GameImage.BackgroundTransparency = 1
  2278. T_GameImage.Position = UDim2.new(0.79469943, 0, -0.400639981, 0)
  2279. T_GameImage.Size = UDim2.new(0.176599875, 0, 1.20192003, 0)
  2280. T_GameImage.Image = "http://www.roblox.com/asset/?id=1281454262"
  2281.  
  2282. T_Others.Name = "T_Others"
  2283. T_Others.Parent = MenuFrame
  2284. T_Others.BackgroundColor3 = Color3.new(0.584314, 0.647059, 0.65098)
  2285. T_Others.BorderSizePixel = 0
  2286. T_Others.Position = UDim2.new(0, 0, 0.60983026, 0)
  2287. T_Others.Size = UDim2.new(1.00073266, 0, 0.0923985243, 0)
  2288. T_Others.Font = Enum.Font.SourceSans
  2289. T_Others.FontSize = Enum.FontSize.Size18
  2290. T_Others.Text = "Others"
  2291. T_Others.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2292. T_Others.TextSize = 16
  2293. T_Others.TextXAlignment = Enum.TextXAlignment.Left
  2294.  
  2295. T_OtherImage.Name = "T_OtherImage"
  2296. T_OtherImage.Parent = T_Others
  2297. T_OtherImage.BackgroundColor3 = Color3.new(1, 1, 1)
  2298. T_OtherImage.BackgroundTransparency = 1
  2299. T_OtherImage.Position = UDim2.new(0.795000017, 0, -0.351000011, 0)
  2300. T_OtherImage.Size = UDim2.new(0, 30, 0, 30)
  2301. T_OtherImage.Image = "http://www.roblox.com/asset/?id=1281476978"
  2302.  
  2303. T_Extra.Name = "T_Extra"
  2304. T_Extra.Parent = MenuFrame
  2305. T_Extra.BackgroundColor3 = Color3.new(0.584314, 0.647059, 0.65098)
  2306. T_Extra.BorderSizePixel = 0
  2307. T_Extra.Position = UDim2.new(0, 0, 0.720708489, 0)
  2308. T_Extra.Size = UDim2.new(1.00073266, 0, 0.0923985243, 0)
  2309. T_Extra.Font = Enum.Font.SourceSans
  2310. T_Extra.FontSize = Enum.FontSize.Size18
  2311. T_Extra.Text = "Extra"
  2312. T_Extra.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2313. T_Extra.TextSize = 16
  2314. T_Extra.TextXAlignment = Enum.TextXAlignment.Left
  2315.  
  2316. T_ExtraImage.Name = "T_ExtraImage"
  2317. T_ExtraImage.Parent = T_Extra
  2318. T_ExtraImage.BackgroundColor3 = Color3.new(1, 1, 1)
  2319. T_ExtraImage.BackgroundTransparency = 1
  2320. T_ExtraImage.Position = UDim2.new(0.79469943, 0, -0.400639981, 0)
  2321. T_ExtraImage.Size = UDim2.new(0.176599875, 0, 1.20192003, 0)
  2322. T_ExtraImage.Image = "http://www.roblox.com/asset/?id=1281477720"
  2323.  
  2324. DeleteGUI.Name = "DeleteGUI"
  2325. DeleteGUI.Parent = MenuFrame
  2326. DeleteGUI.BackgroundColor3 = Color3.new(0.752941, 0.223529, 0.168627)
  2327. DeleteGUI.BorderSizePixel = 0
  2328. DeleteGUI.Position = UDim2.new(0, 0, 0.887025833, 0)
  2329. DeleteGUI.Size = UDim2.new(1.00073266, 0, 0.0923985243, 0)
  2330. DeleteGUI.Font = Enum.Font.SourceSans
  2331. DeleteGUI.FontSize = Enum.FontSize.Size18
  2332. DeleteGUI.Text = "Delete GUI"
  2333. DeleteGUI.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2334. DeleteGUI.TextSize = 16
  2335. DeleteGUI.TextXAlignment = Enum.TextXAlignment.Left
  2336.  
  2337. DELETEIMAGE.Name = "DELETEIMAGE"
  2338. DELETEIMAGE.Parent = DeleteGUI
  2339. DELETEIMAGE.BackgroundColor3 = Color3.new(1, 1, 1)
  2340. DELETEIMAGE.BackgroundTransparency = 1
  2341. DELETEIMAGE.Position = UDim2.new(0.853566051, 0, 0, 0)
  2342. DELETEIMAGE.Size = UDim2.new(0.14716655, 0, 1.00160003, 0)
  2343. DELETEIMAGE.Image = "http://www.roblox.com/asset/?id=1281475635"
  2344.  
  2345. Darkness.Name = "Darkness"
  2346. Darkness.Parent = MainFrame
  2347. Darkness.BackgroundColor3 = Color3.new(0.180392, 0.192157, 0.176471)
  2348. Darkness.BackgroundTransparency = 0.8
  2349. Darkness.BorderSizePixel = 0
  2350. Darkness.Position = UDim2.new(0.38499999, 0, 0.075000003, 0)
  2351. Darkness.Size = UDim2.new(0, 272, 0, 271)
  2352. Darkness.Visible = false
  2353. Darkness.ZIndex = 7
  2354. Darkness.Font = Enum.Font.SourceSans
  2355. Darkness.FontSize = Enum.FontSize.Size14
  2356. Darkness.Text = ""
  2357. Darkness.TextSize = 14
  2358.  
  2359. -----------------------------------------------------------------
  2360. -----------------------------------------------------------------
  2361. NameOfPlayer.Text = game.Players.LocalPlayer.Name
  2362. if game.Workspace.FilteringEnabled == true then
  2363. Image_FE_ENABLED.Visible = true
  2364. Image_FE_DISABLED.Visible = false
  2365. Text_FE_ENABLED.Visible = true
  2366. Text_FE_DISABLED.Visible = false
  2367. else
  2368. Image_FE_ENABLED.Visible = false
  2369. Image_FE_DISABLED.Visible = true
  2370. Text_FE_ENABLED.Visible = false
  2371. Text_FE_DISABLED.Visible = true
  2372. end
  2373.  
  2374. function GetPlayer(String) -- Credit to Timeless/xFunnieuss
  2375. local Found = {}
  2376. local strl = String:lower()
  2377. if strl == "all" then
  2378. for i,v in pairs(game.Players:GetPlayers()) do
  2379. table.insert(Found,v)
  2380. end
  2381. elseif strl == "others" then
  2382. for i,v in pairs(game.Players:GetPlayers()) do
  2383. if v.Name ~= game.Players.LocalPlayer.Name then
  2384. table.insert(Found,v)
  2385. end
  2386. end
  2387. else
  2388. for i,v in pairs(game.Players:GetPlayers()) do
  2389. if v.Name:lower():sub(1, #String) == String:lower() then
  2390. table.insert(Found,v)
  2391. end
  2392. end
  2393. end
  2394. return Found
  2395. end
  2396.  
  2397. OpenMenu.MouseButton1Click:connect(function()
  2398. MenuFrame:TweenPosition(UDim2.new(0, 0, 0.075, 0), "Out", "Sine", 0.7)
  2399. MenuEnterFrame:TweenPosition(UDim2.new(0, 170, 0.075, 0), "Out", "Sine", 0.7)
  2400. Pages:TweenPosition(UDim2.new(0, 170, 0.223, 0), "Out", "Sine", 0.7)
  2401. wait(0.7)
  2402. Darkness.Visible = true
  2403. Darkness.BackgroundTransparency = 0.8
  2404. end)
  2405.  
  2406. Darkness.MouseButton1Click:connect(function()
  2407. MenuFrame:TweenPosition(UDim2.new(-0.385, 0, 0.075, 0), "Out", "Sine", 0.7)
  2408. MenuEnterFrame:TweenPosition(UDim2.new(0, 0, 0.074, 0), "Out", "Sine", 0.7)
  2409. Pages:TweenPosition(UDim2.new(0, 0, 0.223, 0), "Out", "Sine", 0.7)
  2410. Darkness.Visible = false
  2411. end)
  2412.  
  2413. closedgui = true
  2414. CloseGUI.MouseButton1Click:connect(function()
  2415. wait(0.3)
  2416. if closedgui then
  2417. Pages.Position = UDim2.new(0, 0, 0.223, 0)
  2418. OpenMenu.Position = UDim2.new(0, 0, 0, 0)
  2419. MenuFrame.Position = UDim2.new(-0.38499999, 0, 0.075000003, 0)
  2420. MenuEnterFrame.Position = UDim2.new(0, 0, 0.0741975307, 0)
  2421. Darkness.Visible = false
  2422. Pages:TweenPosition(UDim2.new(0, 0, -0.786, 0), "Out", "Sine", 1.5)
  2423. OpenMenu:TweenPosition(UDim2.new(-0.102, 0, 0, 0), "Out", "Sine", 1.5)
  2424. wait(1.6)
  2425. MenuFrame.Position = UDim2.new(-0.38499999, 0, 0.075000003, 0)
  2426. Darkness.Visible = false
  2427. MenuEnterFrame.Position = UDim2.new(0, 0, 0.0741975307, 0)
  2428. closedgui = false
  2429. else
  2430. Pages:TweenPosition(UDim2.new(0, 0, 0.223, 0), "Out", "Sine", 1.5)
  2431. wait(1.5)
  2432. OpenMenu:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2433. wait(0.6)
  2434. closedgui = true
  2435. end
  2436. end)
  2437.  
  2438. DeleteGUI.MouseButton1Click:connect(function()
  2439. game.CoreGui.OPFinality:Destroy()
  2440. end)
  2441.  
  2442. T_Character.MouseButton1Click:connect(function()
  2443. MenuFrame:TweenPosition(UDim2.new(-0.385, 0, 0.075, 0), "Out", "Sine", 0.5)
  2444. MenuEnterFrame:TweenPosition(UDim2.new(0, 0, 0.074, 0), "Out", "Sine", 0.5)
  2445. Pages:TweenPosition(UDim2.new(0, 0, 0.223, 0), "Out", "Sine", 0.5)
  2446. Darkness.Visible = false
  2447. wait(0.5)
  2448. Character_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2449. Extra_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2450. Extra_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2451. Games:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2452. Information:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2453. Others_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2454. Others_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2455. Others_3:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2456. wait(0.5)
  2457. Character_1:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2458. end)
  2459.  
  2460. T_Extra.MouseButton1Click:connect(function()
  2461. MenuFrame:TweenPosition(UDim2.new(-0.385, 0, 0.075, 0), "Out", "Sine", 0.5)
  2462. MenuEnterFrame:TweenPosition(UDim2.new(0, 0, 0.074, 0), "Out", "Sine", 0.5)
  2463. Pages:TweenPosition(UDim2.new(0, 0, 0.223, 0), "Out", "Sine", 0.5)
  2464. Darkness.Visible = false
  2465. wait(0.5)
  2466. Character_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2467. Character_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2468. Extra_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2469. Games:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2470. Information:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2471. Others_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2472. Others_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2473. Others_3:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2474. wait(0.5)
  2475. Extra_1:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2476. end)
  2477.  
  2478. T_Games.MouseButton1Click:connect(function()
  2479. MenuFrame:TweenPosition(UDim2.new(-0.385, 0, 0.075, 0), "Out", "Sine", 0.5)
  2480. MenuEnterFrame:TweenPosition(UDim2.new(0, 0, 0.074, 0), "Out", "Sine", 0.5)
  2481. Pages:TweenPosition(UDim2.new(0, 0, 0.223, 0), "Out", "Sine", 0.5)
  2482. Darkness.Visible = false
  2483. wait(0.5)
  2484. Character_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2485. Character_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2486. Extra_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2487. Extra_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2488. Information:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2489. Others_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2490. Others_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2491. Others_3:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2492. wait(0.5)
  2493. Games:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2494. end)
  2495.  
  2496. T_Information.MouseButton1Click:connect(function()
  2497. MenuFrame:TweenPosition(UDim2.new(-0.385, 0, 0.075, 0), "Out", "Sine", 0.5)
  2498. MenuEnterFrame:TweenPosition(UDim2.new(0, 0, 0.074, 0), "Out", "Sine", 0.5)
  2499. Pages:TweenPosition(UDim2.new(0, 0, 0.223, 0), "Out", "Sine", 0.5)
  2500. Darkness.Visible = false
  2501. wait(0.5)
  2502. Character_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2503. Character_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2504. Extra_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2505. Games:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2506. Extra_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2507. Others_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2508. Others_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2509. Others_3:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2510. wait(0.5)
  2511. Information:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2512. end)
  2513.  
  2514. T_Others.MouseButton1Click:connect(function()
  2515. MenuFrame:TweenPosition(UDim2.new(-0.385, 0, 0.075, 0), "Out", "Sine", 0.5)
  2516. MenuEnterFrame:TweenPosition(UDim2.new(0, 0, 0.074, 0), "Out", "Sine", 0.5)
  2517. Pages:TweenPosition(UDim2.new(0, 0, 0.223, 0), "Out", "Sine", 0.5)
  2518. Darkness.Visible = false
  2519. wait(0.5)
  2520. Character_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2521. Character_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2522. Extra_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2523. Games:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2524. Information:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2525. Extra_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2526. Others_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2527. Others_3:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2528. wait(0.5)
  2529. Others_1:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2530. end)
  2531.  
  2532. Character_toPAGE2.MouseButton1Click:connect(function()
  2533. Character_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2534. wait(0.5)
  2535. Character_2:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2536. end)
  2537. Character_backPAGE1.MouseButton1Click:connect(function()
  2538. Character_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2539. wait(0.5)
  2540. Character_1:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2541. end)
  2542. Extra_toPAGE2.MouseButton1Click:connect(function()
  2543. Extra_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2544. wait(0.5)
  2545. Extra_2:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2546. end)
  2547. Extra_backPAGE1.MouseButton1Click:connect(function()
  2548. Extra_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2549. wait(0.5)
  2550. Extra_1:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2551. end)
  2552. Others_toPAGE2.MouseButton1Click:connect(function()
  2553. Others_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2554. wait(0.5)
  2555. Others_2:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2556. end)
  2557. Others_toPAGE3.MouseButton1Click:connect(function()
  2558. Others_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2559. wait(0.5)
  2560. Others_3:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2561. end)
  2562. Others_backPAGE1.MouseButton1Click:connect(function()
  2563. Others_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2564. wait(0.5)
  2565. Others_1:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2566. end)
  2567. Others_backPAGE2.MouseButton1Click:connect(function()
  2568. Others_3:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2569. wait(0.5)
  2570. Others_2:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2571. end)
  2572.  
  2573. -------------------------------------------------------------------------------
  2574. -------------------------------------------------------------------------------
  2575.  
  2576. HipHeight.MouseButton1Click:connect(function()
  2577. game.Players.LocalPlayer.Character.Humanoid.HipHeight = TXTBOX_Stats.Text
  2578. end)
  2579. Speed.MouseButton1Click:connect(function()
  2580. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = TXTBOX_Stats.Text
  2581. end)
  2582. JumpHeight.MouseButton1Click:connect(function()
  2583. game.Players.LocalPlayer.Character.Humanoid.JumpPower = TXTBOX_Stats.Text
  2584. end)
  2585. Chat.MouseButton1Click:connect(function()
  2586. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(TXTBOX_Chat.Text, "All")
  2587. end)
  2588. SpammingChar = false
  2589. Spam_2.MouseButton1Click:connect(function()
  2590. SpammingChar = not SpammingChar
  2591. end)
  2592.  
  2593. local flying = false
  2594. Fly.MouseButton1Click:connect(function()
  2595. flying = not flying
  2596. repeat wait()
  2597. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  2598. local mouse = game.Players.LocalPlayer:GetMouse()
  2599. repeat wait() until mouse
  2600. local plr = game.Players.LocalPlayer
  2601. local torso = plr.Character.Torso
  2602. local deb = true
  2603. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  2604. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  2605. local maxspeed = 80
  2606. local speed = 0
  2607. if flying then
  2608. Fly.BackgroundColor3 = Color3.new(0.201961, 0.837255, 0.711765)
  2609. else
  2610. Fly.BackgroundColor3 = Color3.new(0.101961, 0.737255, 0.611765)
  2611. end
  2612.  
  2613. function FlyFunction()
  2614. local bg = Instance.new("BodyGyro", torso)
  2615. bg.P = 9e4
  2616. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  2617. bg.cframe = torso.CFrame
  2618. local bv = Instance.new("BodyVelocity", torso)
  2619. bv.velocity = Vector3.new(0,0.1,0)
  2620. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2621. repeat wait()
  2622. plr.Character.Humanoid.PlatformStand = true
  2623. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  2624. speed = speed+.5+(speed/maxspeed)
  2625. if speed > maxspeed then
  2626. speed = maxspeed
  2627. end
  2628. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  2629. speed = speed-1
  2630. if speed < 0 then
  2631. speed = 0
  2632. end
  2633. end
  2634. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  2635. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  2636. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  2637. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  2638. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  2639. else
  2640. bv.velocity = Vector3.new(0,0.1,0)
  2641. end
  2642. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  2643. until not flying
  2644. ctrl = {f = 0, b = 0, l = 0, r = 0}
  2645. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  2646. speed = 0
  2647. bg:Destroy()
  2648. bv:Destroy()
  2649. plr.Character.Humanoid.PlatformStand = false
  2650. end
  2651. mouse.KeyDown:connect(function(key)
  2652. if key:lower() == "w" then
  2653. ctrl.f = 1
  2654. elseif key:lower() == "s" then
  2655. ctrl.b = -1
  2656. elseif key:lower() == "a" then
  2657. ctrl.l = -1
  2658. elseif key:lower() == "d" then
  2659. ctrl.r = 1
  2660. end
  2661. end)
  2662. mouse.KeyUp:connect(function(key)
  2663. if key:lower() == "w" then
  2664. ctrl.f = 0
  2665. elseif key:lower() == "s" then
  2666. ctrl.b = 0
  2667. elseif key:lower() == "a" then
  2668. ctrl.l = 0
  2669. elseif key:lower() == "d" then
  2670. ctrl.r = 0
  2671. end
  2672. end)
  2673. FlyFunction()
  2674. end)
  2675.  
  2676. clip = true
  2677. Noclip.MouseButton1Click:connect(function()
  2678. clip = not clip
  2679. game:GetService('RunService').Stepped:connect(function()
  2680. if not clip then
  2681. Noclip.BackgroundColor3 = Color3.new(0.201961, 0.837255, 0.711765)
  2682. game.Players.LocalPlayer.Character.Head.CanCollide = false
  2683. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  2684. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  2685. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  2686. else
  2687. Noclip.BackgroundColor3 = Color3.new(0.101961, 0.737255, 0.611765)
  2688. end
  2689. end)
  2690. end)
  2691.  
  2692. local Anim = Instance.new("Animation")
  2693. Anim.AnimationId = "rbxassetid://33169583"
  2694. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2695. local armsareoff = false
  2696. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2697. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2698. armsareoff = false
  2699. armsoff.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2700. end)
  2701. armsoff.MouseButton1Click:connect(function()
  2702. armsareoff = not armsareoff
  2703. if armsareoff then
  2704. armsoff.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2705. while wait() do
  2706. if track.IsPlaying == false then
  2707. if armsareoff then
  2708. track:Play(.1, 1, 1e6)
  2709. end
  2710. end
  2711. end
  2712. else
  2713. track:Stop()
  2714. armsoff.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2715. end
  2716. end)
  2717.  
  2718. local Anim = Instance.new("Animation")
  2719. Anim.AnimationId = "rbxassetid://121572214"
  2720. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2721. headfloatACTIVE = false
  2722. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2723. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2724. headfloatACTIVE = false
  2725. headfloat.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2726. end)
  2727. headfloat.MouseButton1Click:connect(function()
  2728. headfloatACTIVE = not headfloatACTIVE
  2729. if headfloatACTIVE then
  2730. headfloat.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2731. while wait() do
  2732. if track.IsPlaying == false then
  2733. if headfloatACTIVE then
  2734. track:Play(.1, 1, 1)
  2735. end
  2736. end
  2737. end
  2738. else
  2739. track:Stop()
  2740. headfloat.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2741. end
  2742. end)
  2743.  
  2744. local Anim = Instance.new("Animation")
  2745. Anim.AnimationId = "rbxassetid://35154961"
  2746. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2747. local headthrowACTIVE = false
  2748. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2749. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2750. headthrowACTIVE = false
  2751. headthrow.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2752. end)
  2753. headthrow.MouseButton1Click:connect(function()
  2754. headthrowACTIVE = not headthrowACTIVE
  2755. if headthrowACTIVE then
  2756. headthrow.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2757. while wait() do
  2758. if track.IsPlaying == false then
  2759. if headthrowACTIVE then
  2760. track:Play(.1, 1, 1)
  2761. end
  2762. end
  2763. end
  2764. else
  2765. track:Stop()
  2766. headthrow.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2767. end
  2768. end)
  2769.  
  2770. local Anim = Instance.new("Animation")
  2771. Anim.AnimationId = "rbxassetid://35154961"
  2772. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2773. local loopheadACTIVE = false
  2774. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2775. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2776. loopheadACTIVE = false
  2777. loophead.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2778. end)
  2779. loophead.MouseButton1Click:connect(function()
  2780. loopheadACTIVE = not loopheadACTIVE
  2781. if loopheadACTIVE then
  2782. loophead.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2783. while wait() do
  2784. if track.IsPlaying == false then
  2785. if loopheadACTIVE then
  2786. track:Play(.1, 1, 1e6)
  2787. end
  2788. end
  2789. end
  2790. else
  2791. track:Stop()
  2792. loophead.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2793. end
  2794. end)
  2795.  
  2796. local Anim = Instance.new("Animation")
  2797. Anim.AnimationId = "rbxassetid://313762630"
  2798. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2799. local levitateACTIVE = false
  2800. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2801. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2802. levitateACTIVE = false
  2803. levitate.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2804. end)
  2805. levitate.MouseButton1Click:connect(function()
  2806. levitateACTIVE = not levitateACTIVE
  2807. if levitateACTIVE then
  2808. levitate.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2809. while wait() do
  2810. if track.IsPlaying == false then
  2811. if levitateACTIVE then
  2812. track:Play(.1, 1, 1)
  2813. end
  2814. end
  2815. end
  2816. else
  2817. track:Stop()
  2818. levitate.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2819. end
  2820. end)
  2821.  
  2822. local Anim = Instance.new("Animation")
  2823. Anim.AnimationId = "rbxassetid://282574440"
  2824. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2825. local crawlACTIVE = false
  2826. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2827. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2828. crawlACTIVE = false
  2829. crawl.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2830. end)
  2831. crawl.MouseButton1Click:connect(function()
  2832. crawlACTIVE = not crawlACTIVE
  2833. if crawlACTIVE then
  2834. crawl.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2835. while wait() do
  2836. if track.IsPlaying == false then
  2837. if crawlACTIVE then
  2838. track:Play(.1, 1, 1)
  2839. end
  2840. end
  2841. end
  2842. else
  2843. track:Stop()
  2844. crawl.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2845. end
  2846. end)
  2847.  
  2848. local Anim = Instance.new("Animation")
  2849. Anim.AnimationId = "rbxassetid://184574340"
  2850. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2851. local jumplandACTIVE = false
  2852. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2853. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2854. jumplandACTIVE = false
  2855. jumpland.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2856. end)
  2857. jumpland.MouseButton1Click:connect(function()
  2858. jumplandACTIVE = not jumplandACTIVE
  2859. if jumplandACTIVE then
  2860. jumpland.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2861. while wait() do
  2862. if track.IsPlaying == false then
  2863. if jumplandACTIVE then
  2864. track:Play(.1, 1, 1)
  2865. end
  2866. end
  2867. end
  2868. else
  2869. track:Stop()
  2870. jumpland.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2871. end
  2872. end)
  2873.  
  2874. local Anim = Instance.new("Animation")
  2875. Anim.AnimationId = "rbxassetid://126753849"
  2876. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2877. local punchesACTIVE = false
  2878. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2879. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2880. punchesACTIVE = false
  2881. punches.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2882. end)
  2883. punches.MouseButton1Click:connect(function()
  2884. punchesACTIVE = not punchesACTIVE
  2885. if punchesACTIVE then
  2886. punches.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2887. while wait() do
  2888. if track.IsPlaying == false then
  2889. if punchesACTIVE then
  2890. track:Play(.1, 1, 1)
  2891. end
  2892. end
  2893. end
  2894. else
  2895. track:Stop()
  2896. punches.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2897. end
  2898. end)
  2899.  
  2900. local Anim = Instance.new("Animation")
  2901. Anim.AnimationId = "rbxassetid://204062532"
  2902. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2903. local swingACTIVE = false
  2904. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2905. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2906. swingACTIVE = false
  2907. swing.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2908. end)
  2909. swing.MouseButton1Click:connect(function()
  2910. swingACTIVE = not swingACTIVE
  2911. if swingACTIVE then
  2912. swing.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2913. while wait() do
  2914. if track.IsPlaying == false then
  2915. if swingACTIVE then
  2916. track:Play(.1, 1, 1)
  2917. end
  2918. end
  2919. end
  2920. else
  2921. track:Stop()
  2922. swing.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2923. end
  2924. end)
  2925.  
  2926. local Anim = Instance.new("Animation")
  2927. Anim.AnimationId = "rbxassetid://204295235"
  2928. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2929. local swordstrikeACTIVE = false
  2930. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2931. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2932. swordstrikeACTIVE = false
  2933. swordstrike.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2934. end)
  2935. swordstrike.MouseButton1Click:connect(function()
  2936. swordstrikeACTIVE = not swordstrikeACTIVE
  2937. if swordstrikeACTIVE then
  2938. swordstrike.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2939. while wait() do
  2940. if track.IsPlaying == false then
  2941. if swordstrikeACTIVE then
  2942. track:Play(.1, 1, 1)
  2943. end
  2944. end
  2945. end
  2946. else
  2947. track:Stop()
  2948. swordstrike.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2949. end
  2950. end)
  2951.  
  2952. local Anim = Instance.new("Animation")
  2953. Anim.AnimationId = "rbxassetid://45834924"
  2954. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2955. local happyACTIVE = false
  2956. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2957. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2958. happyACTIVE = false
  2959. happy.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2960. end)
  2961. happy.MouseButton1Click:connect(function()
  2962. happyACTIVE = not happyACTIVE
  2963. if happyACTIVE then
  2964. happy.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2965. while wait() do
  2966. if track.IsPlaying == false then
  2967. if happyACTIVE then
  2968. track:Play(.1, 1, 1)
  2969. end
  2970. end
  2971. end
  2972. else
  2973. track:Stop()
  2974. happy.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2975. end
  2976. end)
  2977.  
  2978. local Anim = Instance.new("Animation")
  2979. Anim.AnimationId = "rbxassetid://33796059"
  2980. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2981. local insaneACTIVE = false
  2982. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2983. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2984. insaneACTIVE = false
  2985. insane.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2986. end)
  2987. insane.MouseButton1Click:connect(function()
  2988. insaneACTIVE = not insaneACTIVE
  2989. if insaneACTIVE then
  2990. insane.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2991. while wait() do
  2992. if track.IsPlaying == false then
  2993. if insaneACTIVE then
  2994. track:Play(.1, 1, 1e6)
  2995. end
  2996. end
  2997. end
  2998. else
  2999. track:Stop()
  3000. insane.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  3001. end
  3002. end)
  3003.  
  3004. local Anim = Instance.new("Animation")
  3005. Anim.AnimationId = "rbxassetid://429703734"
  3006. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3007. local movingdanceACTIVE = false
  3008. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3009. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3010. movingdanceACTIVE = false
  3011. movingdance.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  3012. end)
  3013. movingdance.MouseButton1Click:connect(function()
  3014. movingdanceACTIVE = not movingdanceACTIVE
  3015. if movingdanceACTIVE then
  3016. movingdance.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  3017. while wait() do
  3018. if track.IsPlaying == false then
  3019. if movingdanceACTIVE then
  3020. track:Play(.1, 1, 1)
  3021. end
  3022. end
  3023. end
  3024. else
  3025. track:Stop()
  3026. movingdance.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  3027. end
  3028. end)
  3029.  
  3030. local Anim = Instance.new("Animation")
  3031. Anim.AnimationId = "rbxassetid://35654637"
  3032. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3033. local normalACTIVE = false
  3034. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3035. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3036. normalACTIVE = false
  3037. normal.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  3038. end)
  3039. normal.MouseButton1Click:connect(function()
  3040. normalACTIVE = not normalACTIVE
  3041. if normalACTIVE then
  3042. normal.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  3043. while wait() do
  3044. if track.IsPlaying == false then
  3045. if normalACTIVE then
  3046. track:Play(.1, 1, 1)
  3047. end
  3048. end
  3049. end
  3050. else
  3051. track:Stop()
  3052. normal.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  3053. end
  3054. end)
  3055.  
  3056. local Anim = Instance.new("Animation")
  3057. Anim.AnimationId = "rbxassetid://186934910"
  3058. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3059. local spindanceACTIVE = false
  3060. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3061. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3062. spindanceACTIVE = false
  3063. spindance.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  3064. end)
  3065. spindance.MouseButton1Click:connect(function()
  3066. spindanceACTIVE = not spindanceACTIVE
  3067. if spindanceACTIVE then
  3068. spindance.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  3069. while wait() do
  3070. if track.IsPlaying == false then
  3071. if spindanceACTIVE then
  3072. track:Play(.1, 1, 1)
  3073. end
  3074. end
  3075. end
  3076. else
  3077. track:Stop()
  3078. spindance.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  3079. end
  3080. end)
  3081.  
  3082. local Anim = Instance.new("Animation")
  3083. Anim.AnimationId = "rbxassetid://215384594"
  3084. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3085. local CloneIllusionACTIVE = false
  3086. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3087. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3088. CloneIllusionACTIVE = false
  3089. CloneIllusion.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  3090. end)
  3091. CloneIllusion.MouseButton1Click:connect(function()
  3092. CloneIllusionACTIVE = not CloneIllusionACTIVE
  3093. if CloneIllusionACTIVE then
  3094. CloneIllusion.BackgroundColor3 = Color3.new(0.992941, 0.811765, 0.2705882)
  3095. while wait() do
  3096. if track.IsPlaying == false then
  3097. if CloneIllusionACTIVE then
  3098. track:Play(.1, 1, 1e6)
  3099. end
  3100. end
  3101. end
  3102. else
  3103. track:Stop()
  3104. CloneIllusion.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  3105. end
  3106. end)
  3107.  
  3108. spinning = false
  3109. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3110. spinning = false
  3111. CoolSpin.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  3112. end)
  3113. CoolSpin.MouseButton1Click:connect(function()
  3114. spinning = not spinning
  3115. if spinning then
  3116. local p = Instance.new("RocketPropulsion")
  3117. p.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3118. p.Name = "CrazySpin"
  3119. p.Target = game.Players.LocalPlayer.Character["Left Arm"]
  3120. p:Fire()
  3121. CoolSpin.BackgroundColor3 = Color3.new(0.992941, 0.811765, 0.2705882)
  3122. else
  3123. game.Players.LocalPlayer.Character.HumanoidRootPart.CrazySpin:Destroy()
  3124. CoolSpin.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  3125. end
  3126. end)
  3127.  
  3128. local Anim = Instance.new("Animation")
  3129. Anim.AnimationId = "rbxassetid://180612465"
  3130. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3131. local ScaredACTIVE = false
  3132. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3133. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3134. ScaredACTIVE = false
  3135. CrouchRocket.BackgroundColor3 = Color3.new(0.952941, 0.711765, 0.1705882)
  3136. end)
  3137. CrouchRocket.MouseButton1Click:connect(function()
  3138. ScaredACTIVE = not ScaredACTIVE
  3139. if ScaredACTIVE then
  3140. local u = Instance.new("RocketPropulsion")
  3141. u.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3142. u.Name = "CrouchRocket"
  3143. u.Target = game.Players.LocalPlayer.Character.Head
  3144. u:Fire()
  3145. CrouchRocket.BackgroundColor3 = Color3.new(0.992941, 0.811765, 0.2705882)
  3146. while wait() do
  3147. if track.IsPlaying == false then
  3148. if ScaredACTIVE then
  3149. track:Play(.1, 1, 1)
  3150. end
  3151. end
  3152. end
  3153. else
  3154. track:Stop()
  3155. CrouchRocket.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  3156. game.Players.LocalPlayer.Character.HumanoidRootPart.CrouchRocket:Destroy()
  3157. end
  3158. end)
  3159.  
  3160. local Anim = Instance.new("Animation")
  3161. Anim.AnimationId = "rbxassetid://184574340"
  3162. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3163. local jumprocketnow = false
  3164. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3165. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3166. jumprocketnow = false
  3167. JumpRocket.BackgroundColor3 = Color3.new(0.952941, 0.711765, 0.1705882)
  3168. end)
  3169. JumpRocket.MouseButton1Click:connect(function()
  3170. jumprocketnow = not jumprocketnow
  3171. if jumprocketnow then
  3172. local u = Instance.new("RocketPropulsion")
  3173. u.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3174. u.Name = "JumpRocket"
  3175. u.Target = game.Players.LocalPlayer.Character.Head
  3176. u:Fire()
  3177. JumpRocket.BackgroundColor3 = Color3.new(0.992941, 0.811765, 0.2705882)
  3178. while wait() do
  3179. if track.IsPlaying == false then
  3180. if jumprocketnow then
  3181. track:Play(.1, 1, 1)
  3182. end
  3183. end
  3184. end
  3185. else
  3186. track:Stop()
  3187. JumpRocket.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  3188. game.Players.LocalPlayer.Character.HumanoidRootPart.JumpRocket:Destroy()
  3189. end
  3190. end)
  3191.  
  3192. local Anim = Instance.new("Animation")
  3193. Anim.AnimationId = "rbxassetid://126753849"
  3194. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3195. local RapidPunchACTIVE = false
  3196. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3197. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3198. RapidPunchACTIVE = false
  3199. RapidPunch.BackgroundColor3 = Color3.new(0.0862745, 0.627451, 0.521569)
  3200. end)
  3201. RapidPunch.MouseButton1Click:connect(function()
  3202. RapidPunchACTIVE = not RapidPunchACTIVE
  3203. if RapidPunchACTIVE then
  3204. RapidPunch.BackgroundColor3 = Color3.new(0.1962745, 0.827451, 0.721569)
  3205. while wait() do
  3206. if track.IsPlaying == false then
  3207. if RapidPunchACTIVE then
  3208. track:Play(.1, 1, 10)
  3209. end
  3210. end
  3211. end
  3212. else
  3213. track:Stop()
  3214. RapidPunch.BackgroundColor3 = Color3.new(0.0862745, 0.627451, 0.521569)
  3215. end
  3216. end)
  3217.  
  3218. FEGodmode.MouseButton1Click:connect(function()
  3219. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  3220. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  3221. l.Parent = game.Players.LocalPlayer.Character
  3222. l.Name = "Humanoid"
  3223. wait(0.1)
  3224. game.Players.LocalPlayer.Character["1"]:Destroy()
  3225. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3226. game.Players.LocalPlayer.Character.Animate.Disabled = true
  3227. wait(0.1)
  3228. game.Players.LocalPlayer.Character.Animate.Disabled = false
  3229. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  3230. end)
  3231.  
  3232. NoLimbs.MouseButton1Click:connect(function()
  3233. game.Players.LocalPlayer.Character["Left Leg"]:Destroy()
  3234. game.Players.LocalPlayer.Character["Left Arm"]:Destroy()
  3235. game.Players.LocalPlayer.Character["Right Leg"]:Destroy()
  3236. game.Players.LocalPlayer.Character["Right Arm"]:Destroy()
  3237. end)
  3238.  
  3239. BrickHats.MouseButton1Click:connect(function()
  3240. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  3241. if (v:IsA("Accessory")) then
  3242. v.Handle.Mesh:Destroy()
  3243. end
  3244. end
  3245. end)
  3246.  
  3247. local Anim = Instance.new("Animation")
  3248. Anim.AnimationId = "rbxassetid://181525546"
  3249. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3250. local FaintACTIVE = false
  3251. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3252. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3253. FaintACTIVE = false
  3254. Faint.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  3255. end)
  3256. Faint.MouseButton1Click:connect(function()
  3257. FaintACTIVE = not FaintACTIVE
  3258. if FaintACTIVE then
  3259. Faint.BackgroundColor3 = Color3.new(0.756863, 0.466667, 0.878431)
  3260. while wait() do
  3261. if track.IsPlaying == false then
  3262. if FaintACTIVE then
  3263. track:Play(.1, 1, 1)
  3264. end
  3265. end
  3266. end
  3267. else
  3268. track:Stop()
  3269. Faint.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  3270. end
  3271. end)
  3272.  
  3273. local Anim = Instance.new("Animation")
  3274. Anim.AnimationId = "rbxassetid://188632011"
  3275. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3276. local SpinACTIVE = false
  3277. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3278. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3279. SpinACTIVE = false
  3280. Spin.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  3281. end)
  3282. Spin.MouseButton1Click:connect(function()
  3283. SpinACTIVE = not SpinACTIVE
  3284. if SpinACTIVE then
  3285. Spin.BackgroundColor3 = Color3.new(0.756863, 0.466667, 0.878431)
  3286. while wait() do
  3287. if track.IsPlaying == false then
  3288. if SpinACTIVE then
  3289. track:Play(.1, 1, 1)
  3290. end
  3291. end
  3292. end
  3293. else
  3294. track:Stop()
  3295. Spin.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  3296. end
  3297. end)
  3298.  
  3299. local Anim = Instance.new("Animation")
  3300. Anim.AnimationId = "rbxassetid://33169583"
  3301. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3302. local ArmFollowACTIVE = false
  3303. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3304. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3305. ArmFollowACTIVE = false
  3306. ArmFollow.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  3307. end)
  3308. ArmFollow.MouseButton1Click:connect(function()
  3309. ArmFollowACTIVE = not ArmFollowACTIVE
  3310. if ArmFollowACTIVE then
  3311. local u = Instance.new("RocketPropulsion")
  3312. u.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3313. u.Name = "ArmFollow"
  3314. u.Target = game.Players.LocalPlayer.Character["Right Arm"]
  3315. u:Fire()
  3316. ArmFollow.BackgroundColor3 = Color3.new(0.756863, 0.466667, 0.878431)
  3317. while wait() do
  3318. if track.IsPlaying == false then
  3319. if ArmFollowACTIVE then
  3320. track:Play(.1, 1, 1)
  3321. end
  3322. end
  3323. end
  3324. else
  3325. track:Stop()
  3326. ArmFollow.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  3327. game.Players.LocalPlayer.Character.HumanoidRootPart.ArmFollow:Destroy()
  3328. end
  3329. end)
  3330.  
  3331. local Anim = Instance.new("Animation")
  3332. Anim.AnimationId = "rbxassetid://126753849"
  3333. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3334. local PunchFollowACTIVE = false
  3335. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3336. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3337. PunchFollowACTIVE = false
  3338. PunchFollow.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  3339. end)
  3340. PunchFollow.MouseButton1Click:connect(function()
  3341. PunchFollowACTIVE = not PunchFollowACTIVE
  3342. if PunchFollowACTIVE then
  3343. local u = Instance.new("RocketPropulsion")
  3344. u.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3345. u.Name = "PunchFollow"
  3346. u.Target = game.Players.LocalPlayer.Character["Right Arm"]
  3347. u:Fire()
  3348. PunchFollow.BackgroundColor3 = Color3.new(0.756863, 0.466667, 0.878431)
  3349. while wait() do
  3350. if track.IsPlaying == false then
  3351. if PunchFollowACTIVE then
  3352. track:Play(.1, 1, 1)
  3353. end
  3354. end
  3355. end
  3356. else
  3357. track:Stop()
  3358. PunchFollow.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  3359. game.Players.LocalPlayer.Character.HumanoidRootPart.PunchFollow:Destroy()
  3360. end
  3361. end)
  3362.  
  3363. AnimationId = "148840371"
  3364. local Anim = Instance.new("Animation")
  3365. Anim.AnimationId = "rbxassetid://"..AnimationId
  3366. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3367. _18active = false
  3368. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3369. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3370. _18active = false
  3371. _18.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3372. end)
  3373. _18.MouseButton1Click:connect(function()
  3374. _18active = not _18active
  3375. if _18active then
  3376. _18.BackgroundColor3 = Color3.new(0.352941, 0.882353, 0.576471)
  3377. for i,v in pairs(GetPlayer(TXTBOX_PlrNameEXTRA.Text))do
  3378. track:Play()
  3379. while wait() do
  3380. if _18active then
  3381. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  3382. end
  3383. end
  3384. end
  3385. else
  3386. track:Stop()
  3387. _18.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3388. end
  3389. end)
  3390.  
  3391. local Anim = Instance.new("Animation")
  3392. Anim.AnimationId = "rbxassetid://180612465"
  3393. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3394. local crouchattacking = false
  3395. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3396. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3397. crouchattacking = false
  3398. CrouchAttack.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3399. end)
  3400. CrouchAttack.MouseButton1Click:connect(function()
  3401. crouchattacking = not crouchattacking
  3402. if crouchattacking then
  3403. local u = Instance.new("RocketPropulsion")
  3404. u.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3405. u.Name = "CrouchAttack"
  3406. for i,v in pairs(GetPlayer(TXTBOX_PlrNameEXTRA.Text))do
  3407. u.Target = game.Players[v.Name].Character.HumanoidRootPart
  3408. end
  3409. u:Fire()
  3410. CrouchAttack.BackgroundColor3 = Color3.new(0.352941, 0.882353, 0.576471)
  3411. while wait() do
  3412. if track.IsPlaying == false then
  3413. if crouchattacking then
  3414. track:Play(.1, 1, 1)
  3415. end
  3416. end
  3417. end
  3418. else
  3419. track:Stop()
  3420. CrouchAttack.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3421. game.Players.LocalPlayer.Character.HumanoidRootPart.CrouchAttack:Destroy()
  3422. end
  3423. end)
  3424.  
  3425. local Anim = Instance.new("Animation")
  3426. Anim.AnimationId = "rbxassetid://184574340"
  3427. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3428. local SlamPropulsioning = false
  3429. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3430. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3431. SlamPropulsioning = false
  3432. SlamPropulsion.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3433. end)
  3434. SlamPropulsion.MouseButton1Click:connect(function()
  3435. SlamPropulsioning = not SlamPropulsioning
  3436. if SlamPropulsioning then
  3437. local u = Instance.new("RocketPropulsion")
  3438. u.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3439. u.Name = "SlamPropulsion"
  3440. for i,v in pairs(GetPlayer(TXTBOX_PlrNameEXTRA.Text))do
  3441. u.Target = game.Players[v.Name].Character.HumanoidRootPart
  3442. end
  3443. u:Fire()
  3444. SlamPropulsion.BackgroundColor3 = Color3.new(0.352941, 0.882353, 0.576471)
  3445. while wait() do
  3446. if track.IsPlaying == false then
  3447. if SlamPropulsioning then
  3448. track:Play(.1, 1, 1)
  3449. end
  3450. end
  3451. end
  3452. else
  3453. track:Stop()
  3454. SlamPropulsion.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3455. game.Players.LocalPlayer.Character.HumanoidRootPart.SlamPropulsion:Destroy()
  3456. end
  3457. end)
  3458.  
  3459. local Anim = Instance.new("Animation")
  3460. Anim.AnimationId = "rbxassetid://429730430"
  3461. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3462. local SpinAttacking = false
  3463. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3464. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3465. SpinAttacking = false
  3466. SpinAttack.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3467. end)
  3468. SpinAttack.MouseButton1Click:connect(function()
  3469. SpinAttacking = not SpinAttacking
  3470. if SpinAttacking then
  3471. local u = Instance.new("RocketPropulsion")
  3472. u.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3473. u.Name = "SpinAttack"
  3474. for i,v in pairs(GetPlayer(TXTBOX_PlrNameEXTRA.Text))do
  3475. u.Target = game.Players[v.Name].Character.HumanoidRootPart
  3476. end
  3477. u:Fire()
  3478. SpinAttack.BackgroundColor3 = Color3.new(0.352941, 0.882353, 0.576471)
  3479. while wait() do
  3480. if track.IsPlaying == false then
  3481. if SpinAttacking then
  3482. track:Play(.1, 1, 1)
  3483. end
  3484. end
  3485. end
  3486. else
  3487. track:Stop()
  3488. SpinAttack.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3489. game.Players.LocalPlayer.Character.HumanoidRootPart.SpinAttack:Destroy()
  3490. end
  3491. end)
  3492.  
  3493. watching = false
  3494. CreepyWatch.MouseButton1Click:connect(function()
  3495. watching = not watching
  3496. end)
  3497.  
  3498. local Anim = Instance.new("Animation")
  3499. Anim.AnimationId = "rbxassetid://215384594"
  3500. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3501. walkingthrough = false
  3502. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3503. walkingthrough = false
  3504. WalkThrough.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3505. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3506. end)
  3507. WalkThrough.MouseButton1Click:connect(function()
  3508. walkingthrough = not walkingthrough
  3509. if walkingthrough then
  3510. WalkThrough.BackgroundColor3 = Color3.new(0.352941, 0.882353, 0.576471)
  3511. while wait() do
  3512. if walkingthrough then
  3513. for i,v in pairs(GetPlayer(TXTBOX_PlrNameEXTRA.Text))do
  3514. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  3515. if track.IsPlaying == false then
  3516. if walkingthrough then
  3517. track:Play(.1, 1, 1e6)
  3518. end
  3519. end
  3520. end
  3521. end
  3522. end
  3523. else
  3524. WalkThrough.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3525. track:Stop()
  3526. end
  3527. end)
  3528.  
  3529. annoying = false
  3530. Annoy.MouseButton1Click:connect(function()
  3531. annoying = not annoying
  3532. end)
  3533. local Anim = Instance.new("Animation")
  3534. Anim.AnimationId = "rbxassetid://282574440"
  3535. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3536. local crawlACTIVE = false
  3537. Carpett = false
  3538. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3539. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3540. Carpett = false
  3541. Carpet.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  3542. end)
  3543. Carpet.MouseButton1Click:connect(function()
  3544. Carpett = not Carpett
  3545. if Carpett then
  3546. Carpet.BackgroundColor3 = Color3.new(0.403922, 0.796078, 0.858824)
  3547. while wait() do
  3548. if track.IsPlaying == false then
  3549. if Carpett then
  3550. track:Play(.1, 1, 1)
  3551. end
  3552. end
  3553. end
  3554. else
  3555. track:Stop()
  3556. Carpet.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  3557. end
  3558. end)
  3559. following = false
  3560. Follow.MouseButton1Click:connect(function()
  3561. following = not following
  3562. end)
  3563. headwalking = false
  3564. HeadWalk.MouseButton1Click:connect(function()
  3565. headwalking = not headwalking
  3566. end)
  3567. Spammer = false
  3568. Spam.MouseButton1Click:connect(function()
  3569. Spammer = not Spammer
  3570. end)
  3571. stuck = false
  3572. Stick.MouseButton1Click:connect(function()
  3573. stuck = not stuck
  3574. end)
  3575. TeleportTo.MouseButton1Click:connect(function()
  3576. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  3577. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  3578. end
  3579. end)
  3580.  
  3581. orbital = false
  3582. Orbit.MouseButton1Click:connect(function()
  3583. orbital = not orbital
  3584. if orbital then
  3585. Orbit.BackgroundColor3 = Color3.new(0.403922, 0.796078, 0.858824)
  3586. local o = Instance.new("RocketPropulsion")
  3587. o.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3588. o.Name = "Orbit"
  3589. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  3590. o.Target = game.Players[v.Name].Character.HumanoidRootPart
  3591. o:Fire()
  3592. game:GetService('RunService').Stepped:connect(function()
  3593. if orbital then
  3594. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3595. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3596. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3597. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3598. end
  3599. end)
  3600. end
  3601. else
  3602. game.Players.LocalPlayer.Character.HumanoidRootPart.Orbit:Destroy()
  3603. Orbit.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  3604. end
  3605. end)
  3606.  
  3607. currentview = false
  3608. View.MouseButton1Click:connect(function()
  3609. currentview = not currentview
  3610. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  3611. if currentview then
  3612. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3613. View.BackgroundColor3 = Color3.new(0.403922, 0.796078, 0.858824)
  3614. else
  3615. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Head
  3616. View.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  3617. end
  3618. end
  3619. end)
  3620.  
  3621. floating = false
  3622. Float.MouseButton1Click:connect(function()
  3623. floating = not floating
  3624. if floating then
  3625. Float.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3626. local y = Instance.new("RocketPropulsion")
  3627. y.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3628. y.CartoonFactor = 1
  3629. y.MaxThrust = 50000
  3630. y.MaxSpeed = 1000
  3631. y.ThrustP = 50000
  3632. y.Name = "Float"
  3633. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3634. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3635. y.Target = game.Players[v.Name].Character.Head
  3636. y:Fire()
  3637. game:GetService('RunService').Stepped:connect(function()
  3638. if floating then
  3639. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3640. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3641. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3642. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3643. end
  3644. end)
  3645. while wait(0.3) do
  3646. if floating then
  3647. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character["Left Leg"].CFrame
  3648. end
  3649. end
  3650. end
  3651. else
  3652. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3653. game.Players.LocalPlayer.Character.HumanoidRootPart.Float:Destroy()
  3654. Float.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3655. end
  3656. end)
  3657.  
  3658. local Anim = Instance.new("Animation")
  3659. Anim.AnimationId = "rbxassetid://282574440"
  3660. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3661. flattening = false
  3662. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3663. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3664. flattening = false
  3665. Flatten.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3666. end)
  3667. Flatten.MouseButton1Click:connect(function()
  3668. flattening = not flattening
  3669. if flattening then
  3670. Flatten.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3671. local y = Instance.new("RocketPropulsion")
  3672. y.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3673. y.CartoonFactor = 1
  3674. y.MaxThrust = 50000
  3675. y.MaxSpeed = 1000
  3676. y.ThrustP = 50000
  3677. y.Name = "Flatten"
  3678. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3679. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3680. y.Target = game.Players[v.Name].Character["Left Leg"]
  3681. y:Fire()
  3682. track:Play(.1, 1, 1)
  3683. game:GetService('RunService').Stepped:connect(function()
  3684. if flattening then
  3685. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3686. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3687. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3688. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3689. end
  3690. end)
  3691. while wait(0.3) do
  3692. if flattening then
  3693. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame + Vector3.new(0,2,0)
  3694. end
  3695. end
  3696. end
  3697. else
  3698. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3699. game.Players.LocalPlayer.Character.HumanoidRootPart.Flatten:Destroy()
  3700. track:Stop()
  3701. Flatten.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3702. end
  3703. end)
  3704.  
  3705. SlowAttracting = false
  3706. SlowAttract.MouseButton1Click:connect(function()
  3707. SlowAttracting = not SlowAttracting
  3708. if SlowAttracting then
  3709. SlowAttract.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3710. local b = Instance.new("RocketPropulsion")
  3711. b.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3712. b.TurnD = 5000
  3713. b.MaxThrust = 5000
  3714. b.MaxSpeed = 200
  3715. b.ThrustP = 5000
  3716. b.CartoonFactor = 1
  3717. b.Name = "SlowAttract"
  3718. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3719. b.Target = game.Players[v.Name].Character.HumanoidRootPart
  3720. b:Fire()
  3721. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3722. game:GetService('RunService').Stepped:connect(function()
  3723. if SlowAttracting then
  3724. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3725. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3726. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3727. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3728. end
  3729. end)
  3730. end
  3731. else
  3732. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3733. game.Players.LocalPlayer.Character.HumanoidRootPart.SlowAttract:Destroy()
  3734. SlowAttract.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3735. end
  3736. end)
  3737.  
  3738. AimHeading = false
  3739. AimHead.MouseButton1Click:connect(function()
  3740. AimHeading = not AimHeading
  3741. if AimHeading then
  3742. AimHead.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3743. local b = Instance.new("RocketPropulsion")
  3744. b.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3745. b.TurnP = 2500
  3746. b.MaxThrust = 50000
  3747. b.MaxSpeed = 1000
  3748. b.ThrustP = 50000
  3749. b.CartoonFactor = 1
  3750. b.Name = "AimHead"
  3751. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3752. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3753. b.Target = game.Players[v.Name].Character.Head
  3754. b:Fire()
  3755. game:GetService('RunService').Stepped:connect(function()
  3756. if AimHeading then
  3757. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3758. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3759. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3760. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3761. end
  3762. end)
  3763. end
  3764. else
  3765. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3766. game.Players.LocalPlayer.Character.HumanoidRootPart.AimHead:Destroy()
  3767. AimHead.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3768. end
  3769. end)
  3770.  
  3771. Multipleing = false
  3772. Multiple.MouseButton1Click:connect(function()
  3773. Multipleing = not Multipleing
  3774. if Multipleing then
  3775. Multiple.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3776. local t1 = Instance.new("RocketPropulsion")
  3777. t1.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3778. t1.TurnP = 30000
  3779. t1.MaxThrust = 30000
  3780. t1.MaxSpeed = 1000
  3781. t1.ThrustP = 30000
  3782. t1.CartoonFactor = 1
  3783. t1.Name = "one"
  3784. local t2 = Instance.new("RocketPropulsion")
  3785. t2.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3786. t2.TurnP = 30000
  3787. t2.MaxThrust = 30000
  3788. t2.MaxSpeed = 1000
  3789. t2.ThrustP = 30000
  3790. t2.CartoonFactor = 1
  3791. t2.Name = "two"
  3792. local t3 = Instance.new("RocketPropulsion")
  3793. t3.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3794. t3.TurnP = 30000
  3795. t3.MaxThrust = 30000
  3796. t3.MaxSpeed = 1000
  3797. t3.ThrustP = 30000
  3798. t3.CartoonFactor = 1
  3799. t3.Name = "three"
  3800. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3801. t1.Target = game.Players[v.Name].Character.Torso
  3802. t1:Fire()
  3803. t2.Target = game.Players[v.Name].Character["Right Leg"]
  3804. t2:Fire()
  3805. t3.Target = game.Players[v.Name].Character["Left Arm"]
  3806. t3:Fire()
  3807. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3808. game:GetService('RunService').Stepped:connect(function()
  3809. if Multipleing then
  3810. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3811. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3812. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3813. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3814. end
  3815. end)
  3816. end
  3817. else
  3818. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3819. game.Players.LocalPlayer.Character.HumanoidRootPart.one:Destroy()
  3820. game.Players.LocalPlayer.Character.HumanoidRootPart.two:Destroy()
  3821. game.Players.LocalPlayer.Character.HumanoidRootPart.three:Destroy()
  3822. Multiple.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3823. end
  3824. end)
  3825.  
  3826. local Anim = Instance.new("Animation")
  3827. Anim.AnimationId = "rbxassetid://215384594"
  3828. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3829. Violenting = false
  3830. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3831. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3832. Violenting = false
  3833. Violent.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3834. end)
  3835. Violent.MouseButton1Click:connect(function()
  3836. Violenting = not Violenting
  3837. if Violenting then
  3838. Violent.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3839. local y = Instance.new("RocketPropulsion")
  3840. y.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3841. y.CartoonFactor = 1
  3842. y.MaxThrust = 50000
  3843. y.MaxSpeed = 1000
  3844. y.ThrustP = 50000
  3845. y.Name = "Violent"
  3846. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3847. y.Target = game.Players[v.Name].Character.HumanoidRootPart
  3848. y:Fire()
  3849. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3850. track:Play(.1, 1, 10)
  3851. game:GetService('RunService').Stepped:connect(function()
  3852. if Violenting then
  3853. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3854. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3855. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3856. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3857. end
  3858. end)
  3859. end
  3860. else
  3861. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3862. game.Players.LocalPlayer.Character.HumanoidRootPart.Violent:Destroy()
  3863. track:Stop()
  3864. Violent.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3865. end
  3866. end)
  3867.  
  3868. local Anim = Instance.new("Animation")
  3869. Anim.AnimationId = "rbxassetid://215384594"
  3870. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3871. Violenting = false
  3872. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3873. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3874. Violenting = false
  3875. Violent.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3876. end)
  3877. Violent.MouseButton1Click:connect(function()
  3878. Violenting = not Violenting
  3879. if Violenting then
  3880. Violent.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3881. local y = Instance.new("RocketPropulsion")
  3882. y.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3883. y.CartoonFactor = 1
  3884. y.MaxThrust = 500000
  3885. y.MaxSpeed = 1000
  3886. y.ThrustP = 50000
  3887. y.Name = "Violent"
  3888. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3889. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3890. y.Target = game.Players[v.Name].Character.HumanoidRootPart
  3891. y:Fire()
  3892. track:Play(.1, 1, 10)
  3893. game:GetService('RunService').Stepped:connect(function()
  3894. if Violenting then
  3895. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3896. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3897. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3898. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3899. end
  3900. end)
  3901. end
  3902. else
  3903. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3904. game.Players.LocalPlayer.Character.HumanoidRootPart.Violent:Destroy()
  3905. track:Stop()
  3906. Violent.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3907. end
  3908. end)
  3909.  
  3910. WeirdOrbital = false
  3911. WeirdOrbit.MouseButton1Click:connect(function()
  3912. WeirdOrbital = not WeirdOrbital
  3913. if WeirdOrbital then
  3914. WeirdOrbit.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3915. local o = Instance.new("RocketPropulsion")
  3916. o.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3917. o.TurnD = 50000
  3918. o.Name = "WeirdOrbit"
  3919. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  3920. o.Target = game.Players[v.Name].Character.HumanoidRootPart
  3921. o:Fire()
  3922. game:GetService('RunService').Stepped:connect(function()
  3923. if WeirdOrbital then
  3924. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3925. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3926. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3927. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3928. end
  3929. end)
  3930. end
  3931. else
  3932. game.Players.LocalPlayer.Character.HumanoidRootPart.WeirdOrbit:Destroy()
  3933. WeirdOrbit.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3934. end
  3935. end)
  3936.  
  3937. Maxing = false
  3938. Max.MouseButton1Click:connect(function()
  3939. Maxing = not Maxing
  3940. if Maxing then
  3941. Max.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3942. local t1 = Instance.new("RocketPropulsion")
  3943. t1.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3944. t1.TurnP = 100000
  3945. t1.MaxThrust = 100000
  3946. t1.MaxSpeed = 5000
  3947. t1.ThrustP = 100000
  3948. t1.CartoonFactor = 1
  3949. t1.Name = "onee"
  3950. local t2 = Instance.new("RocketPropulsion")
  3951. t2.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3952. t2.TurnP = 100000
  3953. t2.MaxThrust = 100000
  3954. t2.MaxSpeed = 5000
  3955. t2.ThrustP = 100000
  3956. t2.CartoonFactor = 1
  3957. t2.Name = "twoo"
  3958. local t3 = Instance.new("RocketPropulsion")
  3959. t3.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3960. t3.TurnP = 100000
  3961. t3.MaxThrust = 100000
  3962. t3.MaxSpeed = 5000
  3963. t3.ThrustP = 100000
  3964. t3.CartoonFactor = 1
  3965. t3.Name = "threee"
  3966. local t4 = Instance.new("RocketPropulsion")
  3967. t4.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3968. t4.TurnP = 100000
  3969. t4.MaxThrust = 100000
  3970. t4.MaxSpeed = 5000
  3971. t4.ThrustP = 100000
  3972. t4.CartoonFactor = 1
  3973. t4.Name = "fourr"
  3974. local t5 = Instance.new("RocketPropulsion")
  3975. t5.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3976. t5.TurnP = 100000
  3977. t5.MaxThrust = 100000
  3978. t5.MaxSpeed = 5000
  3979. t5.ThrustP = 100000
  3980. t5.CartoonFactor = 1
  3981. t5.Name = "fivee"
  3982. local t6 = Instance.new("RocketPropulsion")
  3983. t6.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3984. t6.TurnP = 100000
  3985. t6.MaxThrust = 100000
  3986. t6.MaxSpeed = 5000
  3987. t6.ThrustP = 100000
  3988. t6.CartoonFactor = 1
  3989. t6.Name = "sixx"
  3990. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3991. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3992. t1.Target = game.Players[v.Name].Character.Torso
  3993. t1:Fire()
  3994. t2.Target = game.Players[v.Name].Character["Right Leg"]
  3995. t2:Fire()
  3996. t3.Target = game.Players[v.Name].Character["Left Arm"]
  3997. t3:Fire()
  3998. t4.Target = game.Players[v.Name].Character["Left Leg"]
  3999. t4:Fire()
  4000. t5.Target = game.Players[v.Name].Character["Right Arm"]
  4001. t5:Fire()
  4002. t6.Target = game.Players[v.Name].Character.Head
  4003. t6:Fire()
  4004. game:GetService('RunService').Stepped:connect(function()
  4005. if Maxing then
  4006. game.Players.LocalPlayer.Character.Head.CanCollide = false
  4007. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  4008. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  4009. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  4010. end
  4011. end)
  4012. end
  4013. else
  4014. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  4015. game.Players.LocalPlayer.Character.HumanoidRootPart.onee:Destroy()
  4016. game.Players.LocalPlayer.Character.HumanoidRootPart.twoo:Destroy()
  4017. game.Players.LocalPlayer.Character.HumanoidRootPart.threee:Destroy()
  4018. game.Players.LocalPlayer.Character.HumanoidRootPart.fourr:Destroy()
  4019. game.Players.LocalPlayer.Character.HumanoidRootPart.fivee:Destroy()
  4020. game.Players.LocalPlayer.Character.HumanoidRootPart.sixx:Destroy()
  4021. Max.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  4022. end
  4023. end)
  4024.  
  4025. local Anim = Instance.new("Animation")
  4026. Anim.AnimationId = "rbxassetid://184574340"
  4027. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  4028. Animateding = false
  4029. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  4030. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  4031. Animateding = false
  4032. Animated.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  4033. end)
  4034. Animated.MouseButton1Click:connect(function()
  4035. Animateding = not Animateding
  4036. if Animateding then
  4037. Animated.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  4038. local y = Instance.new("RocketPropulsion")
  4039. y.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  4040. y.CartoonFactor = 1
  4041. y.MaxThrust = 200000
  4042. y.MaxSpeed = 1000
  4043. y.ThrustP = 50000
  4044. y.Name = "Animated"
  4045. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  4046. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  4047. y.Target = game.Players[v.Name].Character.HumanoidRootPart
  4048. y:Fire()
  4049. track:Play(.1, 1, 10)
  4050. game:GetService('RunService').Stepped:connect(function()
  4051. if Animateding then
  4052. game.Players.LocalPlayer.Character.Head.CanCollide = false
  4053. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  4054. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  4055. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  4056. end
  4057. end)
  4058. end
  4059. else
  4060. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  4061. game.Players.LocalPlayer.Character.HumanoidRootPart.Animated:Destroy()
  4062. track:Stop()
  4063. Animated.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  4064. end
  4065. end)
  4066.  
  4067. Attach.MouseButton1Click:connect(function()
  4068. for i,v in pairs(GetPlayer(TXTBOX_PlrNameOTHER3.Text))do
  4069. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  4070. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  4071. l.Parent = game.Players.LocalPlayer.Character
  4072. l.Name = "Humanoid"
  4073. wait(0.1)
  4074. game.Players.LocalPlayer.Character["1"]:Destroy()
  4075. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  4076. game.Players.LocalPlayer.Character.Animate.Disabled = true
  4077. wait(0.1)
  4078. game.Players.LocalPlayer.Character.Animate.Disabled = false
  4079. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  4080. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4081. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  4082. end
  4083. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character["Left Arm"].CFrame
  4084. end
  4085. end)
  4086.  
  4087. superspinning = false
  4088. SuperSpin.MouseButton1Click:connect(function()
  4089. superspinning = not superspinning
  4090. if superspinning then
  4091. SuperSpin.BackgroundColor3 = Color3.new(0.905882, 0.498039, 0.435294)
  4092. for i,v in pairs(GetPlayer(TXTBOX_PlrNameOTHER3.Text))do
  4093. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  4094. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  4095. l.Parent = game.Players.LocalPlayer.Character
  4096. l.Name = "Humanoid"
  4097. wait(0.1)
  4098. game.Players.LocalPlayer.Character["1"]:Destroy()
  4099. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  4100. game.Players.LocalPlayer.Character.Animate.Disabled = true
  4101. wait(0.1)
  4102. game.Players.LocalPlayer.Character.Animate.Disabled = false
  4103. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  4104. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4105. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  4106. end
  4107. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character["Left Arm"].CFrame
  4108. wait(1)
  4109. while wait() do
  4110. if superspinning then
  4111. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4112. end
  4113. end
  4114. end
  4115. else
  4116. SuperSpin.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
  4117. end
  4118. end)
  4119.  
  4120. Kill.MouseButton1Click:connect(function()
  4121. for i,v in pairs(GetPlayer(TXTBOX_PlrNameOTHER3.Text))do
  4122. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  4123. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  4124. l.Parent = game.Players.LocalPlayer.Character
  4125. l.Name = "Humanoid"
  4126. wait(0.1)
  4127. game.Players.LocalPlayer.Character["1"]:Destroy()
  4128. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  4129. game.Players.LocalPlayer.Character.Animate.Disabled = true
  4130. wait(0.1)
  4131. game.Players.LocalPlayer.Character.Animate.Disabled = false
  4132. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  4133. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4134. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  4135. end
  4136. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4137. wait(0.2)
  4138. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4139. wait(0.4)
  4140. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(100000, 0, 100000))
  4141. end
  4142. end)
  4143.  
  4144. SafeKill.MouseButton1Click:connect(function()
  4145. local NOW = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  4146. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  4147. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  4148. l.Parent = game.Players.LocalPlayer.Character
  4149. l.Name = "Humanoid"
  4150. wait(0.1)
  4151. game.Players.LocalPlayer.Character["1"]:Destroy()
  4152. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  4153. game.Players.LocalPlayer.Character.Animate.Disabled = true
  4154. wait(0.1)
  4155. game.Players.LocalPlayer.Character.Animate.Disabled = false
  4156. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  4157. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4158. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  4159. end
  4160. local function tp(player,player2)
  4161. local char1,char2=player.Character,player2.Character
  4162. if char1 and char2 then
  4163. char1:MoveTo(char2.Head.Position)
  4164. end
  4165. end
  4166. for i,v in pairs(GetPlayer(TXTBOX_PlrNameOTHER3.Text))do
  4167. wait(0.1)
  4168. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4169. wait(0.2)
  4170. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4171. wait(0.2)
  4172. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,0,-100000))
  4173. wait(0.7)
  4174. tp(game.Players.LocalPlayer,game.Players[v.Name])
  4175. wait(0.7)
  4176. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
  4177. end
  4178. end)
  4179.  
  4180. Bring.MouseButton1Click:connect(function()
  4181. local NOW = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  4182. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  4183. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  4184. l.Parent = game.Players.LocalPlayer.Character
  4185. l.Name = "Humanoid"
  4186. wait(0.1)
  4187. game.Players.LocalPlayer.Character["1"]:Destroy()
  4188. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  4189. game.Players.LocalPlayer.Character.Animate.Disabled = true
  4190. wait(0.1)
  4191. game.Players.LocalPlayer.Character.Animate.Disabled = false
  4192. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  4193. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4194. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  4195. end
  4196.  
  4197. local function tp(player,player2)
  4198. local char1,char2=player.Character,player2.Character
  4199. if char1 and char2 then
  4200. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  4201. end
  4202. end
  4203.  
  4204. local function getout(player,player2)
  4205. local char1,char2=player.Character,player2.Character
  4206. if char1 and char2 then
  4207. char1:MoveTo(char2.Head.Position)
  4208. end
  4209. end
  4210.  
  4211. for i,v in pairs(GetPlayer(TXTBOX_PlrNameOTHER3.Text))do
  4212. tp(game.Players[v.Name], game.Players.LocalPlayer)
  4213. wait(0.2)
  4214. tp(game.Players[v.Name], game.Players.LocalPlayer)
  4215. wait(0.5)
  4216. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
  4217. wait(0.5)
  4218. getout(game.Players.LocalPlayer, game.Players[v.Name])
  4219. wait(0.3)
  4220. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
  4221. end
  4222. end)
  4223.  
  4224. FreeFall.MouseButton1Click:connect(function()
  4225. local NOW = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  4226. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  4227. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  4228. l.Parent = game.Players.LocalPlayer.Character
  4229. l.Name = "Humanoid"
  4230. wait(0.1)
  4231. game.Players.LocalPlayer.Character["1"]:Destroy()
  4232. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  4233. game.Players.LocalPlayer.Character.Animate.Disabled = true
  4234. wait(0.1)
  4235. game.Players.LocalPlayer.Character.Animate.Disabled = false
  4236. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  4237. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4238. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  4239. end
  4240. for i,v in pairs(GetPlayer(TXTBOX_PlrNameOTHER3.Text))do
  4241. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4242. wait(0.2)
  4243. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4244. wait(0.6)
  4245. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
  4246. wait(0.6)
  4247. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
  4248. end
  4249. end)
  4250.  
  4251. while wait() do
  4252. if SpammingChar then
  4253. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(TXTBOX_Chat.Text, "All")
  4254. Spam_2.BackgroundColor3 = Color3.new(0.280392, 0.9, 0.543137)
  4255. wait(0.5)
  4256. else
  4257. Spam_2.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
  4258. end
  4259. if annoying then
  4260. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  4261. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4262. Annoy.BackgroundColor3 = Color3.new(0.403922, 0.796078, 0.858824)
  4263. end
  4264. else
  4265. Annoy.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  4266. end
  4267. if Carpett then
  4268. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  4269. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4270. Carpet.BackgroundColor3 = Color3.new(0.403922, 0.796078, 0.858824)
  4271. end
  4272. else
  4273. Carpet.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  4274. end
  4275. if following then
  4276. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  4277. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame + Vector3.new(5,0,0)
  4278. Follow.BackgroundColor3 = Color3.new(0.403922, 0.796078, 0.858824)
  4279. end
  4280. else
  4281. Follow.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  4282. end
  4283. if headwalking then
  4284. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  4285. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.Head.CFrame
  4286. HeadWalk.BackgroundColor3 = Color3.new(0.403922, 0.796078, 0.858824)
  4287. end
  4288. else
  4289. HeadWalk.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  4290. end
  4291. if Spammer then
  4292. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  4293. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/w "..v.Name.." @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", "All")
  4294. Spam.BackgroundColor3 = Color3.new(0.403922, 0.796078, 0.858824)
  4295. wait(0.5)
  4296. end
  4297. else
  4298. Spam.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  4299. end
  4300. if watching then
  4301. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  4302. CreepyWatch.BackgroundColor3 = Color3.new(0.352941, 0.882353, 0.576471)
  4303. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game.Players.LocalPlayer.Character.Torso.Position, game.Players[v.Name].Character.Torso.Position)
  4304. end
  4305. else
  4306. CreepyWatch.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  4307. end
  4308. end
  4309. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement