Purple_Voider

Untitled

Feb 23rd, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 331.78 KB | None | 0 0
  1.  
  2. -- Farewell Infortality.
  3. -- Version: 2.82
  4. -- Instances:
  5. local FeKiller = Instance.new("ScreenGui")
  6. local Frame = Instance.new("Frame")
  7. --Properties:
  8. FeKiller.Name = "Fe Killer"
  9. FeKiller.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  10. FeKiller.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11.  
  12. Frame.Parent = FeKiller
  13. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  14. Frame.BackgroundTransparency = 1
  15. Frame.Size = UDim2.new(0, 100, 0, 100)
  16. -- Scripts:
  17. function SCRIPT_YPVL76_FAKESCRIPT() -- Frame.Script
  18. local script = Instance.new('Script')
  19. script.Parent = Frame
  20. local ScreenGui = Instance.new("ScreenGui")
  21. local ui = Instance.new("Frame")
  22. local title = Instance.new("TextLabel")
  23. local Frame = Instance.new("Frame")
  24. local Username = Instance.new("TextBox")
  25. local Kill = Instance.new("TextButton")
  26. local cred = Instance.new("TextLabel")
  27. --Properties:
  28. ScreenGui.Parent = game:GetService("CoreGui")
  29. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  30.  
  31. ui.Name = "ui"
  32. ui.Parent = ScreenGui
  33. ui.Active = true
  34. ui.BackgroundColor3 = Color3.new(1, 1, 1)
  35. ui.BackgroundTransparency = 0.20000000298023
  36. ui.BorderSizePixel = 3
  37. ui.Position = UDim2.new(0.254972845, 0, 0.419703096, 0)
  38. ui.Size = UDim2.new(0, 535, 0, 283)
  39.  
  40. title.Name = "title"
  41. title.Parent = ui
  42. title.BackgroundColor3 = Color3.new(1, 1, 1)
  43. title.BackgroundTransparency = 1
  44. title.BorderSizePixel = 2
  45. title.Position = UDim2.new(0, 0, 0.0199999996, 0)
  46. title.Size = UDim2.new(1, 0, 0, 50)
  47. title.Font = Enum.Font.SourceSans
  48. title.Text = "FE KILL"
  49. title.TextColor3 = Color3.new(0, 0, 0)
  50. title.TextScaled = true
  51. title.TextSize = 14
  52. title.TextWrapped = true
  53.  
  54. Frame.Parent = title
  55. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  56. Frame.BorderSizePixel = 0
  57. Frame.Position = UDim2.new(0.25, 0, 0.860000014, 0)
  58. Frame.Size = UDim2.new(0.5, 0, 0, 3)
  59.  
  60. Username.Name = "Username"
  61. Username.Parent = ui
  62. Username.BackgroundColor3 = Color3.new(1, 1, 1)
  63. Username.BorderSizePixel = 0
  64. Username.Position = UDim2.new(0.100000001, 0, 0.300000012, 0)
  65. Username.Size = UDim2.new(0.800000012, 0, 0, 50)
  66. Username.Font = Enum.Font.SourceSans
  67. Username.PlaceholderText = "Name"
  68. Username.Text = ""
  69. Username.TextColor3 = Color3.new(0, 0, 0)
  70. Username.TextScaled = true
  71. Username.TextSize = 14
  72. Username.TextWrapped = true
  73.  
  74. Kill.Name = "Kill"
  75. Kill.Parent = ui
  76. Kill.BackgroundColor3 = Color3.new(1, 1, 1)
  77. Kill.BackgroundTransparency = 0.20000000298023
  78. Kill.BorderSizePixel = 2
  79. Kill.Position = UDim2.new(0.25, 0, 0.529999971, 0)
  80. Kill.Size = UDim2.new(0.5, 0, 0, 50)
  81. Kill.Font = Enum.Font.Gotham
  82. Kill.Text = "KILL"
  83. Kill.TextColor3 = Color3.new(0, 0, 0)
  84. Kill.TextScaled = true
  85. Kill.TextSize = 14
  86. Kill.TextWrapped = true
  87.  
  88. cred.Name = "cred"
  89. cred.Parent = ui
  90. cred.BackgroundColor3 = Color3.new(1, 1, 1)
  91. cred.BackgroundTransparency = 1
  92. cred.BorderSizePixel = 2
  93. cred.Position = UDim2.new(0.0500000007, 0, 0.769999981, 0)
  94. cred.Size = UDim2.new(0.899999976, 0, 0, 50)
  95. cred.Font = Enum.Font.SourceSans
  96. cred.Text = "Credits to Cyclically, Thunder Mods"
  97. cred.TextColor3 = Color3.new(0, 0, 0)
  98. cred.TextScaled = true
  99. cred.TextSize = 14
  100. cred.TextWrapped = true
  101. ui.Draggable = true
  102.  
  103. -- creds to Hamiii for the plr finder
  104. local Players = game:GetService("Players")
  105. local LocalPlayer = Players.LocalPlayer
  106. local function RemoveSpaces(String)
  107. return String:gsub("%s+", "") or String
  108. end
  109.  
  110. local function FindPlayer(String)
  111. String = RemoveSpaces(String)
  112. for _, _Player in pairs(Players:GetPlayers()) do
  113. if _Player.Name:lower():match('^'.. String:lower()) then
  114. return _Player
  115. end
  116. end
  117. return nil
  118. end
  119.  
  120. Kill.MouseButton1Click:Connect(function()
  121. local Target = FindPlayer(Username.Text)
  122. if Target and Target.Character then
  123. local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
  124. local Torso = Character:FindFirstChild("Torso") or Character:FindFirstChild("UpperTorso")
  125.  
  126. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  127. Torso.Anchored = true
  128. local tool = Instance.new("Tool", LocalPlayer.Backpack)
  129. local hat = LocalPlayer.Character:FindFirstChildOfClass("Accessory")
  130. local hathandle = hat.Handle
  131. hathandle.Parent = tool
  132. hathandle.Massless = true
  133. tool.GripPos = Vector3.new(0, 9e99, 0)
  134. tool.Parent = LocalPlayer.Character
  135. repeat wait() until LocalPlayer.Character:FindFirstChildOfClass("Tool") ~= nil
  136. tool.Grip = CFrame.new(Vector3.new(0, 0, 0))
  137. Torso.Anchored = false
  138. repeat LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = Target.Character:FindFirstChild("HumanoidRootPart").CFrame wait()
  139. until Target.Character == nil or Target.Character:FindFirstChild("Humanoid").Health <= 0 or LocalPlayer.Character == nil or LocalPlayer.Character:FindFirstChild("Humanoid").Health <= 0 or (Target.Character:FindFirstChild("HumanoidRootPart").Velocity.magnitude - Target.Character:FindFirstChild("Humanoid").WalkSpeed) > (Target.Character:FindFirstChild("Humanoid").WalkSpeed + 20)
  140. LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  141. hathandle.Parent = hat
  142. hathandle.Massless = false
  143. tool:Destroy()
  144. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  145. else
  146. warn'no player found named like that or he has no char'
  147. end
  148. end)
  149.  
  150.  
  151. end
  152. coroutine.resume(coroutine.create(SCRIPT_YPVL76_FAKESCRIPT))
  153. function SCRIPT_GLCH86_FAKESCRIPT() -- Frame.Script
  154. local script = Instance.new('Script')
  155. script.Parent = Frame
  156. wait(0.3)
  157. OPFinality = Instance.new("ScreenGui")
  158. MainFrame = Instance.new("Frame")
  159. TopFrame = Instance.new("Frame")
  160. CloseGUI = Instance.new("TextButton")
  161. MenuEnterFrame = Instance.new("Frame")
  162. Title = Instance.new("TextLabel")
  163. OpenMenu = Instance.new("ImageButton")
  164. Pages = Instance.new("Frame")
  165. Information = Instance.new("Frame")
  166. Image_FE_ENABLED = Instance.new("ImageLabel")
  167. Text_FE_ENABLED = Instance.new("TextLabel")
  168. WhatIsOPFinality = Instance.new("TextLabel")
  169. Text_FE_DISABLED = Instance.new("TextLabel")
  170. OPFin_Description = Instance.new("TextLabel")
  171. OPFin_Warning = Instance.new("TextLabel")
  172. Info_Bar = Instance.new("Frame")
  173. Info_Background = Instance.new("Frame")
  174. Warning_Bar = Instance.new("Frame")
  175. Warning_Background = Instance.new("Frame")
  176. Info_Image = Instance.new("ImageLabel")
  177. Image_FE_DISABLED = Instance.new("ImageLabel")
  178. Warn_Image = Instance.new("ImageLabel")
  179. Others_1 = Instance.new("Frame")
  180. OthersTitle = Instance.new("TextLabel")
  181. Char_Image = Instance.new("ImageLabel")
  182. OthersText = Instance.new("TextLabel")
  183. TXTBOX_PlrName = Instance.new("TextBox")
  184. othersBaseBackground = Instance.new("Frame")
  185. TeleportTo = Instance.new("TextButton")
  186. Annoy = Instance.new("TextButton")
  187. Follow = Instance.new("TextButton")
  188. View = Instance.new("TextButton")
  189. Orbit = Instance.new("TextButton")
  190. HeadWalk = Instance.new("TextButton")
  191. Stick = Instance.new("TextButton")
  192. Spam = Instance.new("TextButton")
  193. Carpet = Instance.new("TextButton")
  194. Others_toPAGE2 = Instance.new("TextButton")
  195. Character_toPAGE2_IMAGE = Instance.new("ImageLabel")
  196. Character_2 = Instance.new("Frame")
  197. CharacterTitle = Instance.new("TextLabel")
  198. CharacterText = Instance.new("TextLabel")
  199. Animations_SPOOKY = Instance.new("Frame")
  200. spookytitle = Instance.new("TextLabel")
  201. headthrow = Instance.new("TextButton")
  202. armsoff = Instance.new("TextButton")
  203. loophead = Instance.new("TextButton")
  204. levitate = Instance.new("TextButton")
  205. headfloat = Instance.new("TextButton")
  206. Character_backPAGE1 = Instance.new("TextButton")
  207. Character_toPAGE1_IMAGE = Instance.new("ImageLabel")
  208. Animations_DANCE = Instance.new("Frame")
  209. dancetitle = Instance.new("TextLabel")
  210. normal = Instance.new("TextButton")
  211. movingdance = Instance.new("TextButton")
  212. insane = Instance.new("TextButton")
  213. happy = Instance.new("TextButton")
  214. spindance = Instance.new("TextButton")
  215. Animations_HEROIC = Instance.new("Frame")
  216. heroictitle = Instance.new("TextLabel")
  217. swordstrike = Instance.new("TextButton")
  218. jumpland = Instance.new("TextButton")
  219. punches = Instance.new("TextButton")
  220. swing = Instance.new("TextButton")
  221. crawl = Instance.new("TextButton")
  222. Char2_Image = Instance.new("ImageLabel")
  223. Character_1 = Instance.new("Frame")
  224. CharacterTitle_2 = Instance.new("TextLabel")
  225. Char_Image_2 = Instance.new("ImageLabel")
  226. CharacterText_2 = Instance.new("TextLabel")
  227. TXTBOX_Stats = Instance.new("TextBox")
  228. BackGroundChar = Instance.new("Frame")
  229. HipHeight = Instance.new("TextButton")
  230. JumpHeight = Instance.new("TextButton")
  231. Speed = Instance.new("TextButton")
  232. TXTBOX_Chat = Instance.new("TextBox")
  233. BackGroundChar2 = Instance.new("Frame")
  234. Chat = Instance.new("TextButton")
  235. Spam_2 = Instance.new("TextButton")
  236. BackGroundChar3 = Instance.new("Frame")
  237. Noclip = Instance.new("TextButton")
  238. Fly = Instance.new("TextButton")
  239. Character_toPAGE2 = Instance.new("TextButton")
  240. Character_toPAGE2_IMAGE_2 = Instance.new("ImageLabel")
  241. Others_2 = Instance.new("Frame")
  242. OthersTitle_2 = Instance.new("TextLabel")
  243. Other_Image2 = Instance.new("ImageLabel")
  244. OthersText_2 = Instance.new("TextLabel")
  245. TXTBOX_PlrName2 = Instance.new("TextBox")
  246. othersBaseBackground2 = Instance.new("Frame")
  247. Flatten = Instance.new("TextButton")
  248. AimHead = Instance.new("TextButton")
  249. Float = Instance.new("TextButton")
  250. Multiple = Instance.new("TextButton")
  251. Animated = Instance.new("TextButton")
  252. SlowAttract = Instance.new("TextButton")
  253. WeirdOrbit = Instance.new("TextButton")
  254. Violent = Instance.new("TextButton")
  255. Max = Instance.new("TextButton")
  256. Others_toPAGE3 = Instance.new("TextButton")
  257. Character_toPAGE3_IMAGE = Instance.new("ImageLabel")
  258. Others_backPAGE1 = Instance.new("TextButton")
  259. Character_toPAGE1_IMAGE_2 = Instance.new("ImageLabel")
  260. Extra_1 = Instance.new("Frame")
  261. Extra_Image = Instance.new("ImageLabel")
  262. ExtraText = Instance.new("TextLabel")
  263. ExtraBaseBackGround1 = Instance.new("Frame")
  264. CrouchRocket = Instance.new("TextButton")
  265. ExtraBaseBackGround1Side = Instance.new("Frame")
  266. CloneIllusion = Instance.new("TextButton")
  267. CoolSpin = Instance.new("TextButton")
  268. JumpRocket = Instance.new("TextButton")
  269. Extra_toPAGE2 = Instance.new("TextButton")
  270. Character_toPAGE2_IMAGE_3 = Instance.new("ImageLabel")
  271. Extra_Title = Instance.new("TextLabel")
  272. ExtraBaseBackGround2 = Instance.new("Frame")
  273. NoLimbs = Instance.new("TextButton")
  274. FEGodmode = Instance.new("TextButton")
  275. BrickHats = Instance.new("TextButton")
  276. RapidPunch = Instance.new("TextButton")
  277. ExtraBaseBackGround2Side = Instance.new("Frame")
  278. ExtraBaseBackGround3 = Instance.new("Frame")
  279. PunchFollow = Instance.new("TextButton")
  280. ArmFollow = Instance.new("TextButton")
  281. Spin = Instance.new("TextButton")
  282. Faint = Instance.new("TextButton")
  283. ExtraBaseBackGround3Side = Instance.new("Frame")
  284. Extra_2 = Instance.new("Frame")
  285. Extra_Image_2 = Instance.new("ImageLabel")
  286. ExtraText_2 = Instance.new("TextLabel")
  287. Extra_Title_2 = Instance.new("TextLabel")
  288. ExtraBaseBackGround2_2 = Instance.new("Frame")
  289. CrouchAttack = Instance.new("TextButton")
  290. WalkThrough = Instance.new("TextButton")
  291. CreepyWatch = Instance.new("TextButton")
  292. SpinAttack = Instance.new("TextButton")
  293. ExtraBaseBackGround2Side_2 = Instance.new("Frame")
  294. TXTBOX_PlrNameEXTRA = Instance.new("TextBox")
  295. _18 = Instance.new("TextButton")
  296. SlamPropulsion = Instance.new("TextButton")
  297. Extra_backPAGE1 = Instance.new("TextButton")
  298. Character_toPAGE1_IMAGE_3 = Instance.new("ImageLabel")
  299. Others_3 = Instance.new("Frame")
  300. OthersTitle_3 = Instance.new("TextLabel")
  301. Other_Image3 = Instance.new("ImageLabel")
  302. OthersText_3 = Instance.new("TextLabel")
  303. TXTBOX_PlrNameOTHER3 = Instance.new("TextBox")
  304. othersBaseBackground3 = Instance.new("Frame")
  305. FreeFall = Instance.new("TextButton")
  306. Attach = Instance.new("TextButton")
  307. Bring = Instance.new("TextButton")
  308. SafeKill = Instance.new("TextButton")
  309. SuperSpin = Instance.new("TextButton")
  310. Kill = Instance.new("TextButton")
  311. Others_backPAGE2 = Instance.new("TextButton")
  312. Character_toPAGE1_IMAGE_4 = Instance.new("ImageLabel")
  313. Games = Instance.new("Frame")
  314. Games_IMAGE = Instance.new("ImageLabel")
  315. GamesText = Instance.new("TextLabel")
  316. Games_TITLE = Instance.new("TextLabel")
  317. Games_IMAGE2 = Instance.new("ImageLabel")
  318. SwordFightingTournament = Instance.new("TextButton")
  319. PlatesOfFateMayhem = Instance.new("TextButton")
  320. GamesText2 = Instance.new("TextLabel")
  321. Frappe = Instance.new("TextButton")
  322. Frappe_2 = Instance.new("TextButton")
  323. MenuFrame = Instance.new("Frame")
  324. Welcome = Instance.new("TextLabel")
  325. NameOfPlayer = Instance.new("TextLabel")
  326. T_Information = Instance.new("TextButton")
  327. T_InfoImage = Instance.new("ImageLabel")
  328. T_Character = Instance.new("TextButton")
  329. T_CharImage = Instance.new("ImageLabel")
  330. T_Games = Instance.new("TextButton")
  331. T_GameImage = Instance.new("ImageLabel")
  332. T_Others = Instance.new("TextButton")
  333. T_OtherImage = Instance.new("ImageLabel")
  334. T_Extra = Instance.new("TextButton")
  335. T_ExtraImage = Instance.new("ImageLabel")
  336. DeleteGUI = Instance.new("TextButton")
  337. DELETEIMAGE = Instance.new("ImageLabel")
  338. Darkness = Instance.new("TextButton")
  339.  
  340. -- Properties
  341.  
  342. OPFinality.Name = "OPFinality"
  343. OPFinality.Parent = game.CoreGui
  344.  
  345. MainFrame.Name = "MainFrame"
  346. MainFrame.Parent = OPFinality
  347. MainFrame.Active = true
  348. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  349. MainFrame.BackgroundTransparency = 1
  350. MainFrame.BorderSizePixel = 0
  351. MainFrame.ClipsDescendants = true
  352. MainFrame.Draggable = true
  353. MainFrame.Position = UDim2.new(0, 402, 0, 162)
  354. MainFrame.Size = UDim2.new(0, 442, 0, 293)
  355.  
  356. TopFrame.Name = "TopFrame"
  357. TopFrame.Parent = MainFrame
  358. TopFrame.BackgroundColor3 = Color3.new(0.752941, 0.223529, 0.168627)
  359. TopFrame.BorderColor3 = Color3.new(0.145098, 0.184314, 0.223529)
  360. TopFrame.BorderSizePixel = 0
  361. TopFrame.Size = UDim2.new(1, 0, 0.0741975307, 0)
  362. TopFrame.ZIndex = 7
  363.  
  364. CloseGUI.Parent = TopFrame
  365. CloseGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  366. CloseGUI.BackgroundTransparency = 1
  367. CloseGUI.Position = UDim2.new(0.951219499, 0, 0, 0)
  368. CloseGUI.Size = UDim2.new(0.048780486, 0, 1.00166667, 0)
  369. CloseGUI.Font = Enum.Font.Cartoon
  370. CloseGUI.FontSize = Enum.FontSize.Size28
  371. CloseGUI.Text = "X"
  372. CloseGUI.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  373. CloseGUI.TextSize = 25
  374. CloseGUI.ZIndex = 8
  375.  
  376. MenuEnterFrame.Name = "MenuEnterFrame"
  377. MenuEnterFrame.Parent = MainFrame
  378. MenuEnterFrame.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
  379. MenuEnterFrame.BorderColor3 = Color3.new(0.145098, 0.184314, 0.223529)
  380. MenuEnterFrame.BorderSizePixel = 0
  381. MenuEnterFrame.Position = UDim2.new(0, 0, 0.0741975307, 0)
  382. MenuEnterFrame.Size = UDim2.new(1, 0, 0.148395061, 0)
  383. MenuEnterFrame.ZIndex = 5
  384.  
  385. Title.Name = "Title"
  386. Title.Parent = MenuEnterFrame
  387. Title.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  388. Title.BackgroundTransparency = 1
  389. Title.Position = UDim2.new(0.341463417, 0, 0, 0)
  390. Title.Size = UDim2.new(0.292682916, 0, 1.00166667, 0)
  391. Title.Font = Enum.Font.SourceSansLight
  392. Title.FontSize = Enum.FontSize.Size32
  393. Title.Text = "OPFinality"
  394. Title.TextColor3 = Color3.new(0.933333, 0.933333, 0.933333)
  395. Title.TextSize = 30
  396. Title.ZIndex = 6
  397.  
  398. OpenMenu.Name = "OpenMenu"
  399. OpenMenu.Parent = MenuEnterFrame
  400. OpenMenu.BackgroundColor3 = Color3.new(1, 1, 1)
  401. OpenMenu.BackgroundTransparency = 1
  402. OpenMenu.Size = UDim2.new(0.0909999982, 0, 1.01999998, 0)
  403. OpenMenu.Image = "http://www.roblox.com/asset/?id=1280184088"
  404. OpenMenu.ZIndex = 6
  405.  
  406. Pages.Name = "Pages"
  407. Pages.Parent = MainFrame
  408. Pages.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  409. Pages.BorderSizePixel = 0
  410. Pages.Position = UDim2.new(0, 0, 0.222592592, 0)
  411. Pages.Size = UDim2.new(1, 0, 0.779074073, 0)
  412.  
  413. Information.Name = "Information"
  414. Information.Parent = Pages
  415. Information.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  416. Information.BorderSizePixel = 0
  417. Information.Size = UDim2.new(1, 0, 1, 0)
  418.  
  419. Image_FE_ENABLED.Name = "Image_FE_ENABLED"
  420. Image_FE_ENABLED.Parent = Information
  421. Image_FE_ENABLED.BackgroundColor3 = Color3.new(1, 1, 1)
  422. Image_FE_ENABLED.BackgroundTransparency = 1
  423. Image_FE_ENABLED.Position = UDim2.new(0.0227242485, 0, 0.0454809628, 0)
  424. Image_FE_ENABLED.Size = UDim2.new(0.136345491, 0, 0.263394117, 0)
  425. Image_FE_ENABLED.Visible = false
  426. Image_FE_ENABLED.Image = "http://www.roblox.com/asset/?id=1281289312"
  427.  
  428. Text_FE_ENABLED.Name = "Text_FE_ENABLED"
  429. Text_FE_ENABLED.Parent = Information
  430. Text_FE_ENABLED.BackgroundColor3 = Color3.new(1, 1, 1)
  431. Text_FE_ENABLED.BackgroundTransparency = 1
  432. Text_FE_ENABLED.Position = UDim2.new(0.158999994, 0, 0.0670000017, 0)
  433. Text_FE_ENABLED.Size = UDim2.new(0.795348704, 0, 0.227404833, 0)
  434. Text_FE_ENABLED.Visible = false
  435. Text_FE_ENABLED.Font = Enum.Font.SourceSansItalic
  436. Text_FE_ENABLED.FontSize = Enum.FontSize.Size24
  437. Text_FE_ENABLED.Text = "This game is Filtering Enabled! Enjoy using OPFinality."
  438. Text_FE_ENABLED.TextSize = 19
  439.  
  440. WhatIsOPFinality.Name = "WhatIsOPFinality"
  441. WhatIsOPFinality.Parent = Information
  442. WhatIsOPFinality.BackgroundColor3 = Color3.new(1, 1, 1)
  443. WhatIsOPFinality.BackgroundTransparency = 1
  444. WhatIsOPFinality.Position = UDim2.new(0.249966726, 0, 0.227404833, 0)
  445. WhatIsOPFinality.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  446. WhatIsOPFinality.Font = Enum.Font.SourceSansBold
  447. WhatIsOPFinality.FontSize = Enum.FontSize.Size28
  448. WhatIsOPFinality.Text = "What is OPFinality?"
  449. WhatIsOPFinality.TextSize = 25
  450.  
  451. Text_FE_DISABLED.Name = "Text_FE_DISABLED"
  452. Text_FE_DISABLED.Parent = Information
  453. Text_FE_DISABLED.BackgroundColor3 = Color3.new(1, 1, 1)
  454. Text_FE_DISABLED.BackgroundTransparency = 1
  455. Text_FE_DISABLED.Position = UDim2.new(0.158999994, 0, 0.0670000017, 0)
  456. Text_FE_DISABLED.Size = UDim2.new(0.545381963, 0, 0.227404833, 0)
  457. Text_FE_DISABLED.Font = Enum.Font.SourceSansItalic
  458. Text_FE_DISABLED.FontSize = Enum.FontSize.Size24
  459. Text_FE_DISABLED.Text = "Oh! This game is Filtering Disabled..."
  460. Text_FE_DISABLED.TextSize = 19
  461.  
  462. OPFin_Description.Name = "OPFin_Description"
  463. OPFin_Description.Parent = Information
  464. OPFin_Description.BackgroundColor3 = Color3.new(1, 1, 1)
  465. OPFin_Description.BackgroundTransparency = 1
  466. OPFin_Description.Position = UDim2.new(0.204999998, 0, 0.388000011, 0)
  467. OPFin_Description.Size = UDim2.new(0.772624433, 0, 0.181923851, 0)
  468. OPFin_Description.ZIndex = 3
  469. OPFin_Description.Font = Enum.Font.SourceSans
  470. OPFin_Description.FontSize = Enum.FontSize.Size18
  471. OPFin_Description.Text = "OPFinality is an FE GUI developed by illremember made for giving you power in Filtering Enabled games."
  472. OPFin_Description.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  473. OPFin_Description.TextSize = 18
  474. OPFin_Description.TextWrapped = true
  475.  
  476. OPFin_Warning.Name = "OPFin_Warning"
  477. OPFin_Warning.Parent = Information
  478. OPFin_Warning.BackgroundColor3 = Color3.new(1, 1, 1)
  479. OPFin_Warning.BackgroundTransparency = 1
  480. OPFin_Warning.Position = UDim2.new(0.0227242485, 0, 0.636733532, 0)
  481. OPFin_Warning.Size = UDim2.new(0.659003198, 0, 0.272885799, 0)
  482. OPFin_Warning.ZIndex = 2
  483. OPFin_Warning.Font = Enum.Font.SourceSans
  484. OPFin_Warning.FontSize = Enum.FontSize.Size18
  485. 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."
  486. OPFin_Warning.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  487. OPFin_Warning.TextSize = 18
  488. OPFin_Warning.TextWrapped = true
  489.  
  490. Info_Bar.Name = "Info_Bar"
  491. Info_Bar.Parent = Information
  492. Info_Bar.BackgroundColor3 = Color3.new(0.160784, 0.501961, 0.72549)
  493. Info_Bar.BorderSizePixel = 0
  494. Info_Bar.Position = UDim2.new(0.159069732, 0, 0.363847703, 0)
  495. Info_Bar.Size = UDim2.new(0.0227242485, 0, 0.227404833, 0)
  496.  
  497. Info_Background.Name = "Info_Background"
  498. Info_Background.Parent = Information
  499. Info_Background.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  500. Info_Background.BorderSizePixel = 0
  501. Info_Background.Position = UDim2.new(0.181793988, 0, 0.363847703, 0)
  502. Info_Background.Size = UDim2.new(0.819999993, 0, 0.226999998, 0)
  503. Info_Background.ZIndex = 2
  504.  
  505. Warning_Bar.Name = "Warning_Bar"
  506. Warning_Bar.Parent = Information
  507. Warning_Bar.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  508. Warning_Bar.BorderSizePixel = 0
  509. Warning_Bar.Position = UDim2.new(0.70445168, 0, 0.636733532, 0)
  510. Warning_Bar.Size = UDim2.new(0.0227242485, 0, 0.272885799, 0)
  511.  
  512. Warning_Background.Name = "Warning_Background"
  513. Warning_Background.Parent = Information
  514. Warning_Background.BackgroundColor3 = Color3.new(0.945098, 0.768628, 0.0588235)
  515. Warning_Background.BorderSizePixel = 0
  516. Warning_Background.Position = UDim2.new(0, 0, 0.636733532, 0)
  517. Warning_Background.Size = UDim2.new(0.70445168, 0, 0.272885799, 0)
  518.  
  519. Info_Image.Name = "Info_Image"
  520. Info_Image.Parent = Information
  521. Info_Image.BackgroundColor3 = Color3.new(1, 1, 1)
  522. Info_Image.BackgroundTransparency = 1
  523. Info_Image.Position = UDim2.new(0.0454484969, 0, 0.395091146, 0)
  524. Info_Image.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
  525. Info_Image.Image = "http://www.roblox.com/asset/?id=1281284684"
  526.  
  527. Image_FE_DISABLED.Name = "Image_FE_DISABLED"
  528. Image_FE_DISABLED.Parent = Information
  529. Image_FE_DISABLED.BackgroundColor3 = Color3.new(1, 1, 1)
  530. Image_FE_DISABLED.BackgroundTransparency = 1
  531. Image_FE_DISABLED.Position = UDim2.new(0.0227242485, 0, 0.0454809628, 0)
  532. Image_FE_DISABLED.Size = UDim2.new(0.136345491, 0, 0.263394117, 0)
  533. Image_FE_DISABLED.Image = "http://www.roblox.com/asset/?id=1281290326"
  534.  
  535. Warn_Image.Name = "Warn_Image"
  536. Warn_Image.Parent = Information
  537. Warn_Image.BackgroundColor3 = Color3.new(1, 1, 1)
  538. Warn_Image.BackgroundTransparency = 1
  539. Warn_Image.Position = UDim2.new(0.763000011, 0, 0.677999973, 0)
  540. Warn_Image.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
  541. Warn_Image.Image = "http://www.roblox.com/asset/?id=1281286925"
  542.  
  543. Others_1.Name = "Others_1"
  544. Others_1.Parent = Pages
  545. Others_1.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  546. Others_1.BorderSizePixel = 0
  547. Others_1.Position = UDim2.new(1.00752497, 0, 0, 0)
  548. Others_1.Size = UDim2.new(1, 0, 1, 0)
  549.  
  550. OthersTitle.Name = "OthersTitle"
  551. OthersTitle.Parent = Others_1
  552. OthersTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  553. OthersTitle.BackgroundTransparency = 1
  554. OthersTitle.Position = UDim2.new(0.226410091, 0, 0.0439298227, 0)
  555. OthersTitle.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  556. OthersTitle.Font = Enum.Font.SourceSansBold
  557. OthersTitle.FontSize = Enum.FontSize.Size28
  558. OthersTitle.Text = "Others"
  559. OthersTitle.TextSize = 25
  560.  
  561. Char_Image.Name = "Char_Image"
  562. Char_Image.Parent = Others_1
  563. Char_Image.BackgroundColor3 = Color3.new(1, 1, 1)
  564. Char_Image.BackgroundTransparency = 1
  565. Char_Image.Position = UDim2.new(0.0113205044, 0, 0.153754383, 0)
  566. Char_Image.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
  567. Char_Image.Image = "http://www.roblox.com/asset/?id=1281476978"
  568.  
  569. OthersText.Name = "OthersText"
  570. OthersText.Parent = Others_1
  571. OthersText.BackgroundColor3 = Color3.new(1, 1, 1)
  572. OthersText.BackgroundTransparency = 1
  573. OthersText.Position = UDim2.new(0.101884536, 0, 0.153754383, 0)
  574. OthersText.Size = UDim2.new(0.781114817, 0, 0.175719291, 0)
  575. OthersText.Font = Enum.Font.SourceSansItalic
  576. OthersText.FontSize = Enum.FontSize.Size24
  577. OthersText.Text = "Use a set of basic commands on other players! Enter a name into the textbox, supports partial names."
  578. OthersText.TextSize = 19
  579. OthersText.TextWrapped = true
  580.  
  581. TXTBOX_PlrName.Name = "TXTBOX_PlrName"
  582. TXTBOX_PlrName.Parent = Others_1
  583. TXTBOX_PlrName.BackgroundColor3 = Color3.new(0.956863, 0.968628, 0.972549)
  584. TXTBOX_PlrName.BorderColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  585. TXTBOX_PlrName.BorderSizePixel = 0
  586. TXTBOX_PlrName.Position = UDim2.new(0.249051109, 0, 0.395368397, 0)
  587. TXTBOX_PlrName.Size = UDim2.new(0.520743191, 0, 0.0878596455, 0)
  588. TXTBOX_PlrName.ZIndex = 2
  589. TXTBOX_PlrName.Font = Enum.Font.SourceSans
  590. TXTBOX_PlrName.FontSize = Enum.FontSize.Size14
  591. TXTBOX_PlrName.Text = "Player"
  592. TXTBOX_PlrName.TextScaled = true
  593. TXTBOX_PlrName.TextSize = 14
  594. TXTBOX_PlrName.TextWrapped = true
  595.  
  596. othersBaseBackground.Name = "othersBaseBackground"
  597. othersBaseBackground.Parent = Others_1
  598. othersBaseBackground.BackgroundColor3 = Color3.new(0.160784, 0.501961, 0.72549)
  599. othersBaseBackground.BorderSizePixel = 0
  600. othersBaseBackground.Position = UDim2.new(0.124525554, 0, 0.351438582, 0)
  601. othersBaseBackground.Size = UDim2.new(0.769999981, 0, 0.649999976, 0)
  602.  
  603. TeleportTo.Name = "TeleportTo"
  604. TeleportTo.Parent = othersBaseBackground
  605. TeleportTo.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  606. TeleportTo.BorderSizePixel = 0
  607. TeleportTo.Position = UDim2.new(0.0294333119, 0, 0.27070269, 0)
  608. TeleportTo.Size = UDim2.new(0, 92, 0, 25)
  609. TeleportTo.Font = Enum.Font.SourceSans
  610. TeleportTo.FontSize = Enum.FontSize.Size24
  611. TeleportTo.Text = "Teleport To"
  612. TeleportTo.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  613. TeleportTo.TextSize = 22
  614.  
  615. Annoy.Name = "Annoy"
  616. Annoy.Parent = othersBaseBackground
  617. Annoy.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  618. Annoy.BorderSizePixel = 0
  619. Annoy.Position = UDim2.new(0.0294333119, 0, 0.507567585, 0)
  620. Annoy.Size = UDim2.new(0, 92, 0, 25)
  621. Annoy.Font = Enum.Font.SourceSans
  622. Annoy.FontSize = Enum.FontSize.Size24
  623. Annoy.Text = "Annoy"
  624. Annoy.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  625. Annoy.TextSize = 22
  626.  
  627. Follow.Name = "Follow"
  628. Follow.Parent = othersBaseBackground
  629. Follow.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  630. Follow.BorderSizePixel = 0
  631. Follow.Position = UDim2.new(0.0294333119, 0, 0.744432449, 0)
  632. Follow.Size = UDim2.new(0, 92, 0, 25)
  633. Follow.Font = Enum.Font.SourceSans
  634. Follow.FontSize = Enum.FontSize.Size24
  635. Follow.Text = "Follow"
  636. Follow.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  637. Follow.TextSize = 22
  638.  
  639. View.Name = "View"
  640. View.Parent = othersBaseBackground
  641. View.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  642. View.BorderSizePixel = 0
  643. View.Position = UDim2.new(0.367916405, 0, 0.27070269, 0)
  644. View.Size = UDim2.new(0, 92, 0, 25)
  645. View.Font = Enum.Font.SourceSans
  646. View.FontSize = Enum.FontSize.Size24
  647. View.Text = "View"
  648. View.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  649. View.TextSize = 22
  650.  
  651. Orbit.Name = "Orbit"
  652. Orbit.Parent = othersBaseBackground
  653. Orbit.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  654. Orbit.BorderSizePixel = 0
  655. Orbit.Position = UDim2.new(0.367916405, 0, 0.507567585, 0)
  656. Orbit.Size = UDim2.new(0, 92, 0, 25)
  657. Orbit.Font = Enum.Font.SourceSans
  658. Orbit.FontSize = Enum.FontSize.Size24
  659. Orbit.Text = "Orbit"
  660. Orbit.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  661. Orbit.TextSize = 22
  662.  
  663. HeadWalk.Name = "HeadWalk"
  664. HeadWalk.Parent = othersBaseBackground
  665. HeadWalk.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  666. HeadWalk.BorderSizePixel = 0
  667. HeadWalk.Position = UDim2.new(0.367916405, 0, 0.744432449, 0)
  668. HeadWalk.Size = UDim2.new(0, 92, 0, 25)
  669. HeadWalk.Font = Enum.Font.SourceSans
  670. HeadWalk.FontSize = Enum.FontSize.Size24
  671. HeadWalk.Text = "Head Walk"
  672. HeadWalk.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  673. HeadWalk.TextSize = 22
  674.  
  675. Stick.Name = "Stick"
  676. Stick.Parent = othersBaseBackground
  677. Stick.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  678. Stick.BorderSizePixel = 0
  679. Stick.Position = UDim2.new(0.7063995, 0, 0.27070269, 0)
  680. Stick.Size = UDim2.new(0, 92, 0, 25)
  681. Stick.Font = Enum.Font.SourceSans
  682. Stick.FontSize = Enum.FontSize.Size24
  683. Stick.Text = "Stick"
  684. Stick.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  685. Stick.TextSize = 22
  686.  
  687. Spam.Name = "Spam"
  688. Spam.Parent = othersBaseBackground
  689. Spam.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  690. Spam.BorderSizePixel = 0
  691. Spam.Position = UDim2.new(0.7063995, 0, 0.507567585, 0)
  692. Spam.Size = UDim2.new(0, 92, 0, 25)
  693. Spam.Font = Enum.Font.SourceSans
  694. Spam.FontSize = Enum.FontSize.Size24
  695. Spam.Text = "Spam"
  696. Spam.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  697. Spam.TextSize = 22
  698.  
  699. Carpet.Name = "Carpet"
  700. Carpet.Parent = othersBaseBackground
  701. Carpet.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  702. Carpet.BorderSizePixel = 0
  703. Carpet.Position = UDim2.new(0.7063995, 0, 0.744432449, 0)
  704. Carpet.Size = UDim2.new(0, 92, 0, 25)
  705. Carpet.Font = Enum.Font.SourceSans
  706. Carpet.FontSize = Enum.FontSize.Size24
  707. Carpet.Text = "Carpet"
  708. Carpet.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  709. Carpet.TextSize = 22
  710.  
  711. Others_toPAGE2.Name = "Others_toPAGE2"
  712. Others_toPAGE2.Parent = Others_1
  713. Others_toPAGE2.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  714. Others_toPAGE2.BorderSizePixel = 0
  715. Others_toPAGE2.Position = UDim2.new(0.819999993, 0, 0.0439999998, 0)
  716. Others_toPAGE2.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
  717. Others_toPAGE2.Font = Enum.Font.SourceSansLight
  718. Others_toPAGE2.FontSize = Enum.FontSize.Size24
  719. Others_toPAGE2.Text = "Next"
  720. Others_toPAGE2.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  721. Others_toPAGE2.TextSize = 22
  722.  
  723. Character_toPAGE2_IMAGE.Name = "Character_toPAGE2_IMAGE"
  724. Character_toPAGE2_IMAGE.Parent = Others_toPAGE2
  725. Character_toPAGE2_IMAGE.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  726. Character_toPAGE2_IMAGE.BorderSizePixel = 0
  727. Character_toPAGE2_IMAGE.Position = UDim2.new(0.900659323, 0, 0, 0)
  728. Character_toPAGE2_IMAGE.Size = UDim2.new(0, 25, 0, 25)
  729. Character_toPAGE2_IMAGE.Image = "http://www.roblox.com/asset/?id=1282737326"
  730.  
  731. Character_2.Name = "Character_2"
  732. Character_2.Parent = Pages
  733. Character_2.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  734. Character_2.BorderSizePixel = 0
  735. Character_2.Position = UDim2.new(1, 0, 0, 0)
  736. Character_2.Size = UDim2.new(1, 0, 1, 0)
  737.  
  738. CharacterTitle.Name = "CharacterTitle"
  739. CharacterTitle.Parent = Character_2
  740. CharacterTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  741. CharacterTitle.BackgroundTransparency = 1
  742. CharacterTitle.Position = UDim2.new(0.226410091, 0, 0, 0)
  743. CharacterTitle.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  744. CharacterTitle.Font = Enum.Font.SourceSansBold
  745. CharacterTitle.FontSize = Enum.FontSize.Size28
  746. CharacterTitle.Text = "Character"
  747. CharacterTitle.TextSize = 25
  748.  
  749. CharacterText.Name = "CharacterText"
  750. CharacterText.Parent = Character_2
  751. CharacterText.BackgroundColor3 = Color3.new(1, 1, 1)
  752. CharacterText.BackgroundTransparency = 1
  753. CharacterText.Position = UDim2.new(0.158487067, 0, 0.109824568, 0)
  754. CharacterText.Size = UDim2.new(0.679230273, 0, 0.0878596455, 0)
  755. CharacterText.Font = Enum.Font.SourceSansItalic
  756. CharacterText.FontSize = Enum.FontSize.Size24
  757. CharacterText.Text = "Apply cool animations to your player!"
  758. CharacterText.TextSize = 19
  759. CharacterText.TextWrapped = true
  760.  
  761. Animations_SPOOKY.Name = "Animations_SPOOKY"
  762. Animations_SPOOKY.Parent = Character_2
  763. Animations_SPOOKY.BackgroundColor3 = Color3.new(0.827451, 0.329412, 0)
  764. Animations_SPOOKY.BorderSizePixel = 0
  765. Animations_SPOOKY.Position = UDim2.new(0.101884536, 0, 0.263578951, 0)
  766. Animations_SPOOKY.Size = UDim2.new(0.200000003, 0, 0.735000014, 0)
  767.  
  768. spookytitle.Name = "spookytitle"
  769. spookytitle.Parent = Animations_SPOOKY
  770. spookytitle.BackgroundColor3 = Color3.new(1, 1, 1)
  771. spookytitle.BackgroundTransparency = 1
  772. spookytitle.Position = UDim2.new(0, 0, 0.0298095234, 0)
  773. spookytitle.Size = UDim2.new(0.96661669, 0, 0.149047628, 0)
  774. spookytitle.Font = Enum.Font.SourceSansLight
  775. spookytitle.FontSize = Enum.FontSize.Size28
  776. spookytitle.Text = "Spooky"
  777. spookytitle.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  778. spookytitle.TextSize = 25
  779.  
  780. headthrow.Name = "headthrow"
  781. headthrow.Parent = Animations_SPOOKY
  782. headthrow.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  783. headthrow.BorderSizePixel = 0
  784. headthrow.Position = UDim2.new(0, 0, 0.238476187, 0)
  785. headthrow.Size = UDim2.new(1, 0, 0.119000003, 0)
  786. headthrow.Font = Enum.Font.SourceSans
  787. headthrow.FontSize = Enum.FontSize.Size14
  788. headthrow.Text = "Head Throw"
  789. headthrow.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  790. headthrow.TextScaled = true
  791. headthrow.TextSize = 14
  792. headthrow.TextWrapped = true
  793.  
  794. armsoff.Name = "armsoff"
  795. armsoff.Parent = Animations_SPOOKY
  796. armsoff.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  797. armsoff.BorderSizePixel = 0
  798. armsoff.Position = UDim2.new(0, 0, 0.3875238, 0)
  799. armsoff.Size = UDim2.new(1, 0, 0.119000003, 0)
  800. armsoff.Font = Enum.Font.SourceSans
  801. armsoff.FontSize = Enum.FontSize.Size14
  802. armsoff.Text = "Arms Off"
  803. armsoff.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  804. armsoff.TextScaled = true
  805. armsoff.TextSize = 14
  806. armsoff.TextWrapped = true
  807.  
  808. loophead.Name = "loophead"
  809. loophead.Parent = Animations_SPOOKY
  810. loophead.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  811. loophead.BorderSizePixel = 0
  812. loophead.Position = UDim2.new(0, 0, 0.536571383, 0)
  813. loophead.Size = UDim2.new(1, 0, 0.119000003, 0)
  814. loophead.Font = Enum.Font.SourceSans
  815. loophead.FontSize = Enum.FontSize.Size14
  816. loophead.Text = "Loop Head"
  817. loophead.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  818. loophead.TextScaled = true
  819. loophead.TextSize = 14
  820. loophead.TextWrapped = true
  821.  
  822. levitate.Name = "levitate"
  823. levitate.Parent = Animations_SPOOKY
  824. levitate.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  825. levitate.BorderSizePixel = 0
  826. levitate.Position = UDim2.new(0, 0, 0.685619056, 0)
  827. levitate.Size = UDim2.new(1, 0, 0.119000003, 0)
  828. levitate.Font = Enum.Font.SourceSans
  829. levitate.FontSize = Enum.FontSize.Size14
  830. levitate.Text = "Levitate"
  831. levitate.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  832. levitate.TextScaled = true
  833. levitate.TextSize = 14
  834. levitate.TextWrapped = true
  835.  
  836. headfloat.Name = "headfloat"
  837. headfloat.Parent = Animations_SPOOKY
  838. headfloat.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  839. headfloat.BorderSizePixel = 0
  840. headfloat.Position = UDim2.new(0, 0, 0.834666669, 0)
  841. headfloat.Size = UDim2.new(1, 0, 0.119000003, 0)
  842. headfloat.Font = Enum.Font.SourceSans
  843. headfloat.FontSize = Enum.FontSize.Size14
  844. headfloat.Text = "Head Float"
  845. headfloat.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  846. headfloat.TextScaled = true
  847. headfloat.TextSize = 14
  848. headfloat.TextWrapped = true
  849.  
  850. Character_backPAGE1.Name = "Character_backPAGE1"
  851. Character_backPAGE1.Parent = Character_2
  852. Character_backPAGE1.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  853. Character_backPAGE1.BorderSizePixel = 0
  854. Character_backPAGE1.Position = UDim2.new(0.0679230243, 0, 0.0439298227, 0)
  855. Character_backPAGE1.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
  856. Character_backPAGE1.Font = Enum.Font.SourceSansLight
  857. Character_backPAGE1.FontSize = Enum.FontSize.Size24
  858. Character_backPAGE1.Text = "Prev"
  859. Character_backPAGE1.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  860. Character_backPAGE1.TextSize = 22
  861.  
  862. Character_toPAGE1_IMAGE.Name = "Character_toPAGE1_IMAGE"
  863. Character_toPAGE1_IMAGE.Parent = Character_backPAGE1
  864. Character_toPAGE1_IMAGE.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  865. Character_toPAGE1_IMAGE.BorderSizePixel = 0
  866. Character_toPAGE1_IMAGE.Position = UDim2.new(-0.400293052, 0, 0, 0)
  867. Character_toPAGE1_IMAGE.Size = UDim2.new(0, 25, 0, 25)
  868. Character_toPAGE1_IMAGE.Image = "http://www.roblox.com/asset/?id=1282894968"
  869.  
  870. Animations_DANCE.Name = "Animations_DANCE"
  871. Animations_DANCE.Parent = Character_2
  872. Animations_DANCE.BackgroundColor3 = Color3.new(0.827451, 0.329412, 0)
  873. Animations_DANCE.BorderSizePixel = 0
  874. Animations_DANCE.Position = UDim2.new(0.407538146, 0, 0.263578951, 0)
  875. Animations_DANCE.Size = UDim2.new(0.200000003, 0, 0.735000014, 0)
  876.  
  877. dancetitle.Name = "dancetitle"
  878. dancetitle.Parent = Animations_DANCE
  879. dancetitle.BackgroundColor3 = Color3.new(1, 1, 1)
  880. dancetitle.BackgroundTransparency = 1
  881. dancetitle.Position = UDim2.new(0, 0, 0.0298095234, 0)
  882. dancetitle.Size = UDim2.new(0.96661669, 0, 0.149047628, 0)
  883. dancetitle.Font = Enum.Font.SourceSansLight
  884. dancetitle.FontSize = Enum.FontSize.Size28
  885. dancetitle.Text = "Dance"
  886. dancetitle.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  887. dancetitle.TextSize = 25
  888.  
  889. normal.Name = "normal"
  890. normal.Parent = Animations_DANCE
  891. normal.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  892. normal.BorderSizePixel = 0
  893. normal.Position = UDim2.new(0, 0, 0.238476187, 0)
  894. normal.Size = UDim2.new(1, 0, 0.119000003, 0)
  895. normal.Font = Enum.Font.SourceSans
  896. normal.FontSize = Enum.FontSize.Size14
  897. normal.Text = "Normal"
  898. normal.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  899. normal.TextScaled = true
  900. normal.TextSize = 14
  901. normal.TextWrapped = true
  902.  
  903. movingdance.Name = "movingdance"
  904. movingdance.Parent = Animations_DANCE
  905. movingdance.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  906. movingdance.BorderSizePixel = 0
  907. movingdance.Position = UDim2.new(0, 0, 0.3875238, 0)
  908. movingdance.Size = UDim2.new(1, 0, 0.119000003, 0)
  909. movingdance.Font = Enum.Font.SourceSans
  910. movingdance.FontSize = Enum.FontSize.Size14
  911. movingdance.Text = "Moving Dance"
  912. movingdance.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  913. movingdance.TextScaled = true
  914. movingdance.TextSize = 14
  915. movingdance.TextWrapped = true
  916.  
  917. insane.Name = "insane"
  918. insane.Parent = Animations_DANCE
  919. insane.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  920. insane.BorderSizePixel = 0
  921. insane.Position = UDim2.new(0, 0, 0.834666669, 0)
  922. insane.Size = UDim2.new(1, 0, 0.119000003, 0)
  923. insane.Font = Enum.Font.SourceSans
  924. insane.FontSize = Enum.FontSize.Size14
  925. insane.Text = "Insane"
  926. insane.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  927. insane.TextScaled = true
  928. insane.TextSize = 14
  929. insane.TextWrapped = true
  930.  
  931. happy.Name = "happy"
  932. happy.Parent = Animations_DANCE
  933. happy.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  934. happy.BorderSizePixel = 0
  935. happy.Position = UDim2.new(0, 0, 0.536571383, 0)
  936. happy.Size = UDim2.new(1, 0, 0.119000003, 0)
  937. happy.Font = Enum.Font.SourceSans
  938. happy.FontSize = Enum.FontSize.Size14
  939. happy.Text = "Happy"
  940. happy.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  941. happy.TextScaled = true
  942. happy.TextSize = 14
  943. happy.TextWrapped = true
  944.  
  945. spindance.Name = "spindance"
  946. spindance.Parent = Animations_DANCE
  947. spindance.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  948. spindance.BorderSizePixel = 0
  949. spindance.Position = UDim2.new(0, 0, 0.685619056, 0)
  950. spindance.Size = UDim2.new(1, 0, 0.119000003, 0)
  951. spindance.Font = Enum.Font.SourceSans
  952. spindance.FontSize = Enum.FontSize.Size14
  953. spindance.Text = "Spin Dance"
  954. spindance.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  955. spindance.TextScaled = true
  956. spindance.TextSize = 14
  957. spindance.TextWrapped = true
  958.  
  959. Animations_HEROIC.Name = "Animations_HEROIC"
  960. Animations_HEROIC.Parent = Character_2
  961. Animations_HEROIC.BackgroundColor3 = Color3.new(0.827451, 0.329412, 0)
  962. Animations_HEROIC.BorderSizePixel = 0
  963. Animations_HEROIC.Position = UDim2.new(0.713191807, 0, 0.263578951, 0)
  964. Animations_HEROIC.Size = UDim2.new(0.200000003, 0, 0.735000014, 0)
  965.  
  966. heroictitle.Name = "heroictitle"
  967. heroictitle.Parent = Animations_HEROIC
  968. heroictitle.BackgroundColor3 = Color3.new(1, 1, 1)
  969. heroictitle.BackgroundTransparency = 1
  970. heroictitle.Position = UDim2.new(0, 0, 0.0298095234, 0)
  971. heroictitle.Size = UDim2.new(0.96661669, 0, 0.149047628, 0)
  972. heroictitle.Font = Enum.Font.SourceSansLight
  973. heroictitle.FontSize = Enum.FontSize.Size28
  974. heroictitle.Text = "Heroic"
  975. heroictitle.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  976. heroictitle.TextSize = 25
  977.  
  978. swordstrike.Name = "swordstrike"
  979. swordstrike.Parent = Animations_HEROIC
  980. swordstrike.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  981. swordstrike.BorderSizePixel = 0
  982. swordstrike.Position = UDim2.new(0, 0, 0.238476187, 0)
  983. swordstrike.Size = UDim2.new(1, 0, 0.119000003, 0)
  984. swordstrike.Font = Enum.Font.SourceSans
  985. swordstrike.FontSize = Enum.FontSize.Size14
  986. swordstrike.Text = "Sword Strike"
  987. swordstrike.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  988. swordstrike.TextScaled = true
  989. swordstrike.TextSize = 14
  990. swordstrike.TextWrapped = true
  991.  
  992. jumpland.Name = "jumpland"
  993. jumpland.Parent = Animations_HEROIC
  994. jumpland.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  995. jumpland.BorderSizePixel = 0
  996. jumpland.Position = UDim2.new(0, 0, 0.3875238, 0)
  997. jumpland.Size = UDim2.new(1, 0, 0.119000003, 0)
  998. jumpland.Font = Enum.Font.SourceSans
  999. jumpland.FontSize = Enum.FontSize.Size14
  1000. jumpland.Text = "Jump Land"
  1001. jumpland.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1002. jumpland.TextScaled = true
  1003. jumpland.TextSize = 14
  1004. jumpland.TextWrapped = true
  1005.  
  1006. punches.Name = "punches"
  1007. punches.Parent = Animations_HEROIC
  1008. punches.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  1009. punches.BorderSizePixel = 0
  1010. punches.Position = UDim2.new(0, 0, 0.834666669, 0)
  1011. punches.Size = UDim2.new(1, 0, 0.119000003, 0)
  1012. punches.Font = Enum.Font.SourceSans
  1013. punches.FontSize = Enum.FontSize.Size14
  1014. punches.Text = "Punches"
  1015. punches.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1016. punches.TextScaled = true
  1017. punches.TextSize = 14
  1018. punches.TextWrapped = true
  1019.  
  1020. swing.Name = "swing"
  1021. swing.Parent = Animations_HEROIC
  1022. swing.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  1023. swing.BorderSizePixel = 0
  1024. swing.Position = UDim2.new(0, 0, 0.536571383, 0)
  1025. swing.Size = UDim2.new(1, 0, 0.119000003, 0)
  1026. swing.Font = Enum.Font.SourceSans
  1027. swing.FontSize = Enum.FontSize.Size14
  1028. swing.Text = "Swing"
  1029. swing.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1030. swing.TextScaled = true
  1031. swing.TextSize = 14
  1032. swing.TextWrapped = true
  1033.  
  1034. crawl.Name = "crawl"
  1035. crawl.Parent = Animations_HEROIC
  1036. crawl.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  1037. crawl.BorderSizePixel = 0
  1038. crawl.Position = UDim2.new(0, 0, 0.685619056, 0)
  1039. crawl.Size = UDim2.new(1, 0, 0.119000003, 0)
  1040. crawl.Font = Enum.Font.SourceSans
  1041. crawl.FontSize = Enum.FontSize.Size14
  1042. crawl.Text = "Crawl"
  1043. crawl.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1044. crawl.TextScaled = true
  1045. crawl.TextSize = 14
  1046. crawl.TextWrapped = true
  1047.  
  1048. Char2_Image.Name = "Char2_Image"
  1049. Char2_Image.Parent = Character_2
  1050. Char2_Image.BackgroundColor3 = Color3.new(1, 1, 1)
  1051. Char2_Image.BackgroundTransparency = 1
  1052. Char2_Image.Position = UDim2.new(0.792435288, 0, 0.0219649114, 0)
  1053. Char2_Image.Size = UDim2.new(0.101884536, 0, 0.197684199, 0)
  1054. Char2_Image.Image = "http://www.roblox.com/asset/?id=1282931168"
  1055.  
  1056. Character_1.Name = "Character_1"
  1057. Character_1.Parent = Pages
  1058. Character_1.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1059. Character_1.BorderSizePixel = 0
  1060. Character_1.Position = UDim2.new(11, 0, 0, 0)
  1061. Character_1.Size = UDim2.new(1, 0, 1, 0)
  1062.  
  1063. CharacterTitle_2.Name = "CharacterTitle"
  1064. CharacterTitle_2.Parent = Character_1
  1065. CharacterTitle_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1066. CharacterTitle_2.BackgroundTransparency = 1
  1067. CharacterTitle_2.Position = UDim2.new(0.226410091, 0, 0, 0)
  1068. CharacterTitle_2.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  1069. CharacterTitle_2.Font = Enum.Font.SourceSansBold
  1070. CharacterTitle_2.FontSize = Enum.FontSize.Size28
  1071. CharacterTitle_2.Text = "Character"
  1072. CharacterTitle_2.TextSize = 25
  1073.  
  1074. Char_Image_2.Name = "Char_Image"
  1075. Char_Image_2.Parent = Character_1
  1076. Char_Image_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1077. Char_Image_2.BackgroundTransparency = 1
  1078. Char_Image_2.Position = UDim2.new(0.0792435333, 0, 0.109824568, 0)
  1079. Char_Image_2.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
  1080. Char_Image_2.Image = "http://www.roblox.com/asset/?id=1281299598"
  1081.  
  1082. CharacterText_2.Name = "CharacterText"
  1083. CharacterText_2.Parent = Character_1
  1084. CharacterText_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1085. CharacterText_2.BackgroundTransparency = 1
  1086. CharacterText_2.Position = UDim2.new(0.147166565, 0, 0.109824568, 0)
  1087. CharacterText_2.Size = UDim2.new(0.679230273, 0, 0.175719291, 0)
  1088. CharacterText_2.Font = Enum.Font.SourceSansItalic
  1089. CharacterText_2.FontSize = Enum.FontSize.Size24
  1090. CharacterText_2.Text = "Change your character's speed and other stats, give yourself fly, noclip and more!"
  1091. CharacterText_2.TextSize = 19
  1092. CharacterText_2.TextWrapped = true
  1093.  
  1094. TXTBOX_Stats.Name = "TXTBOX_Stats"
  1095. TXTBOX_Stats.Parent = Character_1
  1096. TXTBOX_Stats.BackgroundColor3 = Color3.new(0.956863, 0.968628, 0.972549)
  1097. TXTBOX_Stats.BorderColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1098. TXTBOX_Stats.BorderSizePixel = 6
  1099. TXTBOX_Stats.Position = UDim2.new(0.0905640349, 0, 0.373403519, 0)
  1100. TXTBOX_Stats.Size = UDim2.new(0.18112807, 0, 0.0878596455, 0)
  1101. TXTBOX_Stats.Font = Enum.Font.SourceSans
  1102. TXTBOX_Stats.FontSize = Enum.FontSize.Size14
  1103. TXTBOX_Stats.Text = "Number"
  1104. TXTBOX_Stats.TextScaled = true
  1105. TXTBOX_Stats.TextSize = 14
  1106. TXTBOX_Stats.TextWrapped = true
  1107.  
  1108. BackGroundChar.Name = "BackGroundChar"
  1109. BackGroundChar.Parent = Character_1
  1110. BackGroundChar.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1111. BackGroundChar.BorderSizePixel = 0
  1112. BackGroundChar.Position = UDim2.new(0.0769999996, 0, 0.48300001, 0)
  1113. BackGroundChar.Size = UDim2.new(0, 92, 0, 118)
  1114.  
  1115. HipHeight.Name = "HipHeight"
  1116. HipHeight.Parent = BackGroundChar
  1117. HipHeight.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
  1118. HipHeight.BorderSizePixel = 0
  1119. HipHeight.Position = UDim2.new(0, 0, 0.679050863, 0)
  1120. HipHeight.Size = UDim2.new(0, 92, 0, 25)
  1121. HipHeight.Font = Enum.Font.SourceSans
  1122. HipHeight.FontSize = Enum.FontSize.Size24
  1123. HipHeight.Text = "HipHeight"
  1124. HipHeight.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1125. HipHeight.TextSize = 22
  1126.  
  1127. JumpHeight.Name = "JumpHeight"
  1128. JumpHeight.Parent = BackGroundChar
  1129. JumpHeight.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
  1130. JumpHeight.BorderSizePixel = 0
  1131. JumpHeight.Position = UDim2.new(0, 0, 0.381966084, 0)
  1132. JumpHeight.Size = UDim2.new(0, 92, 0, 25)
  1133. JumpHeight.Font = Enum.Font.SourceSans
  1134. JumpHeight.FontSize = Enum.FontSize.Size24
  1135. JumpHeight.Text = "JumpHeight"
  1136. JumpHeight.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1137. JumpHeight.TextSize = 20
  1138.  
  1139. Speed.Name = "Speed"
  1140. Speed.Parent = BackGroundChar
  1141. Speed.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
  1142. Speed.BorderSizePixel = 0
  1143. Speed.Position = UDim2.new(0, 0, 0.0848813578, 0)
  1144. Speed.Size = UDim2.new(0, 92, 0, 25)
  1145. Speed.Font = Enum.Font.SourceSans
  1146. Speed.FontSize = Enum.FontSize.Size24
  1147. Speed.Text = "Speed"
  1148. Speed.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1149. Speed.TextSize = 22
  1150.  
  1151. TXTBOX_Chat.Name = "TXTBOX_Chat"
  1152. TXTBOX_Chat.Parent = Character_1
  1153. TXTBOX_Chat.BackgroundColor3 = Color3.new(0.956863, 0.968628, 0.972549)
  1154. TXTBOX_Chat.BorderColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1155. TXTBOX_Chat.BorderSizePixel = 6
  1156. TXTBOX_Chat.Position = UDim2.new(0.384897143, 0, 0.373403519, 0)
  1157. TXTBOX_Chat.Size = UDim2.new(0.520743191, 0, 0.0878596455, 0)
  1158. TXTBOX_Chat.Font = Enum.Font.SourceSans
  1159. TXTBOX_Chat.FontSize = Enum.FontSize.Size14
  1160. TXTBOX_Chat.Text = "Text for chatting"
  1161. TXTBOX_Chat.TextScaled = true
  1162. TXTBOX_Chat.TextSize = 14
  1163. TXTBOX_Chat.TextWrapped = true
  1164.  
  1165. BackGroundChar2.Name = "BackGroundChar2"
  1166. BackGroundChar2.Parent = Character_1
  1167. BackGroundChar2.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1168. BackGroundChar2.BorderSizePixel = 0
  1169. BackGroundChar2.Position = UDim2.new(0.370000005, 0, 0.48300001, 0)
  1170. BackGroundChar2.Size = UDim2.new(0, 242, 0, 40)
  1171.  
  1172. Chat.Name = "Chat"
  1173. Chat.Parent = BackGroundChar2
  1174. Chat.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
  1175. Chat.BorderSizePixel = 0
  1176. Chat.Position = UDim2.new(0.0620288812, 0, 0.125200003, 0)
  1177. Chat.Size = UDim2.new(0, 92, 0, 25)
  1178. Chat.Font = Enum.Font.SourceSans
  1179. Chat.FontSize = Enum.FontSize.Size24
  1180. Chat.Text = "Chat"
  1181. Chat.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1182. Chat.TextSize = 22
  1183.  
  1184. Spam_2.Name = "Spam"
  1185. Spam_2.Parent = BackGroundChar2
  1186. Spam_2.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
  1187. Spam_2.BorderSizePixel = 0
  1188. Spam_2.Position = UDim2.new(0.558259964, 0, 0.125200003, 0)
  1189. Spam_2.Size = UDim2.new(0, 92, 0, 25)
  1190. Spam_2.Font = Enum.Font.SourceSans
  1191. Spam_2.FontSize = Enum.FontSize.Size24
  1192. Spam_2.Text = "Spam"
  1193. Spam_2.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1194. Spam_2.TextSize = 22
  1195.  
  1196. BackGroundChar3.Name = "BackGroundChar3"
  1197. BackGroundChar3.Parent = Character_1
  1198. BackGroundChar3.BackgroundColor3 = Color3.new(0.0862745, 0.627451, 0.521569)
  1199. BackGroundChar3.BorderSizePixel = 0
  1200. BackGroundChar3.Position = UDim2.new(0.372000009, 0, 0.742999971, 0)
  1201. BackGroundChar3.Size = UDim2.new(0, 242, 0, 43)
  1202.  
  1203. Noclip.Name = "Noclip"
  1204. Noclip.Parent = BackGroundChar3
  1205. Noclip.BackgroundColor3 = Color3.new(0.101961, 0.737255, 0.611765)
  1206. Noclip.BorderSizePixel = 0
  1207. Noclip.Position = UDim2.new(0.558000028, 0, 0.208000004, 0)
  1208. Noclip.Size = UDim2.new(0, 92, 0, 25)
  1209. Noclip.Font = Enum.Font.SourceSans
  1210. Noclip.FontSize = Enum.FontSize.Size24
  1211. Noclip.Text = "Noclip"
  1212. Noclip.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1213. Noclip.TextSize = 22
  1214.  
  1215. Fly.Name = "Fly"
  1216. Fly.Parent = BackGroundChar3
  1217. Fly.BackgroundColor3 = Color3.new(0.101961, 0.737255, 0.611765)
  1218. Fly.BorderSizePixel = 0
  1219. Fly.Position = UDim2.new(0.061999999, 0, 0.208000004, 0)
  1220. Fly.Size = UDim2.new(0, 92, 0, 25)
  1221. Fly.Font = Enum.Font.SourceSans
  1222. Fly.FontSize = Enum.FontSize.Size24
  1223. Fly.Text = "Fly"
  1224. Fly.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1225. Fly.TextSize = 22
  1226.  
  1227. Character_toPAGE2.Name = "Character_toPAGE2"
  1228. Character_toPAGE2.Parent = Character_1
  1229. Character_toPAGE2.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1230. Character_toPAGE2.BorderSizePixel = 0
  1231. Character_toPAGE2.Position = UDim2.new(0.819999993, 0, 0.0439999998, 0)
  1232. Character_toPAGE2.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
  1233. Character_toPAGE2.Font = Enum.Font.SourceSansLight
  1234. Character_toPAGE2.FontSize = Enum.FontSize.Size24
  1235. Character_toPAGE2.Text = "Next"
  1236. Character_toPAGE2.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1237. Character_toPAGE2.TextSize = 22
  1238.  
  1239. Character_toPAGE2_IMAGE_2.Name = "Character_toPAGE2_IMAGE"
  1240. Character_toPAGE2_IMAGE_2.Parent = Character_toPAGE2
  1241. Character_toPAGE2_IMAGE_2.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1242. Character_toPAGE2_IMAGE_2.BorderSizePixel = 0
  1243. Character_toPAGE2_IMAGE_2.Position = UDim2.new(0.900659323, 0, 0, 0)
  1244. Character_toPAGE2_IMAGE_2.Size = UDim2.new(0, 25, 0, 25)
  1245. Character_toPAGE2_IMAGE_2.Image = "http://www.roblox.com/asset/?id=1282737326"
  1246.  
  1247. Others_2.Name = "Others_2"
  1248. Others_2.Parent = Pages
  1249. Others_2.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1250. Others_2.BorderSizePixel = 0
  1251. Others_2.Position = UDim2.new(1, 0, 0, 0)
  1252. Others_2.Size = UDim2.new(1, 0, 1, 0)
  1253.  
  1254. OthersTitle_2.Name = "OthersTitle"
  1255. OthersTitle_2.Parent = Others_2
  1256. OthersTitle_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1257. OthersTitle_2.BackgroundTransparency = 1
  1258. OthersTitle_2.Position = UDim2.new(0.226410091, 0, 0, 0)
  1259. OthersTitle_2.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  1260. OthersTitle_2.Font = Enum.Font.SourceSansBold
  1261. OthersTitle_2.FontSize = Enum.FontSize.Size28
  1262. OthersTitle_2.Text = "Others"
  1263. OthersTitle_2.TextSize = 25
  1264.  
  1265. Other_Image2.Name = "Other_Image2"
  1266. Other_Image2.Parent = Others_2
  1267. Other_Image2.BackgroundColor3 = Color3.new(1, 1, 1)
  1268. Other_Image2.BackgroundTransparency = 1
  1269. Other_Image2.Position = UDim2.new(0.0113205044, 0, 0.197684199, 0)
  1270. Other_Image2.Size = UDim2.new(0.101884536, 0, 0.197684199, 0)
  1271. Other_Image2.Image = "http://www.roblox.com/asset/?id=1284941440"
  1272.  
  1273. OthersText_2.Name = "OthersText"
  1274. OthersText_2.Parent = Others_2
  1275. OthersText_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1276. OthersText_2.BackgroundTransparency = 1
  1277. OthersText_2.Position = UDim2.new(0.203769073, 0, 0.109824568, 0)
  1278. OthersText_2.Size = UDim2.new(0.577345729, 0, 0.175719291, 0)
  1279. OthersText_2.Font = Enum.Font.SourceSansItalic
  1280. OthersText_2.FontSize = Enum.FontSize.Size24
  1281. OthersText_2.Text = "Use rocket propulsion to push, fling, and annoy players!"
  1282. OthersText_2.TextSize = 19
  1283. OthersText_2.TextWrapped = true
  1284.  
  1285. TXTBOX_PlrName2.Name = "TXTBOX_PlrName2"
  1286. TXTBOX_PlrName2.Parent = Others_2
  1287. TXTBOX_PlrName2.BackgroundColor3 = Color3.new(0.956863, 0.968628, 0.972549)
  1288. TXTBOX_PlrName2.BorderColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1289. TXTBOX_PlrName2.BorderSizePixel = 0
  1290. TXTBOX_PlrName2.Position = UDim2.new(0.249051109, 0, 0.395368397, 0)
  1291. TXTBOX_PlrName2.Size = UDim2.new(0.520743191, 0, 0.0878596455, 0)
  1292. TXTBOX_PlrName2.ZIndex = 2
  1293. TXTBOX_PlrName2.Font = Enum.Font.SourceSans
  1294. TXTBOX_PlrName2.FontSize = Enum.FontSize.Size14
  1295. TXTBOX_PlrName2.Text = "Player"
  1296. TXTBOX_PlrName2.TextScaled = true
  1297. TXTBOX_PlrName2.TextSize = 14
  1298. TXTBOX_PlrName2.TextWrapped = true
  1299.  
  1300. othersBaseBackground2.Name = "othersBaseBackground2"
  1301. othersBaseBackground2.Parent = Others_2
  1302. othersBaseBackground2.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  1303. othersBaseBackground2.BorderSizePixel = 0
  1304. othersBaseBackground2.Position = UDim2.new(0.124525554, 0, 0.351438582, 0)
  1305. othersBaseBackground2.Size = UDim2.new(0.769999981, 0, 0.649999976, 0)
  1306.  
  1307. Flatten.Name = "Flatten"
  1308. Flatten.Parent = othersBaseBackground2
  1309. Flatten.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1310. Flatten.BorderSizePixel = 0
  1311. Flatten.Position = UDim2.new(0.0588666238, 0, 0.27070269, 0)
  1312. Flatten.Size = UDim2.new(0, 92, 0, 25)
  1313. Flatten.Font = Enum.Font.SourceSans
  1314. Flatten.FontSize = Enum.FontSize.Size24
  1315. Flatten.Text = "Flatten"
  1316. Flatten.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1317. Flatten.TextSize = 22
  1318.  
  1319. AimHead.Name = "AimHead"
  1320. AimHead.Parent = othersBaseBackground2
  1321. AimHead.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1322. AimHead.BorderSizePixel = 0
  1323. AimHead.Position = UDim2.new(0.367916405, 0, 0.27070269, 0)
  1324. AimHead.Size = UDim2.new(0, 92, 0, 25)
  1325. AimHead.Font = Enum.Font.SourceSans
  1326. AimHead.FontSize = Enum.FontSize.Size24
  1327. AimHead.Text = "Aim Head"
  1328. AimHead.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1329. AimHead.TextSize = 22
  1330.  
  1331. Float.Name = "Float"
  1332. Float.Parent = othersBaseBackground2
  1333. Float.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1334. Float.BorderSizePixel = 0
  1335. Float.Position = UDim2.new(0.0588666238, 0, 0.507567585, 0)
  1336. Float.Size = UDim2.new(0, 92, 0, 25)
  1337. Float.Font = Enum.Font.SourceSans
  1338. Float.FontSize = Enum.FontSize.Size24
  1339. Float.Text = "Float"
  1340. Float.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1341. Float.TextSize = 22
  1342.  
  1343. Multiple.Name = "Multiple"
  1344. Multiple.Parent = othersBaseBackground2
  1345. Multiple.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1346. Multiple.BorderSizePixel = 0
  1347. Multiple.Position = UDim2.new(0.367916405, 0, 0.507567585, 0)
  1348. Multiple.Size = UDim2.new(0, 92, 0, 25)
  1349. Multiple.Font = Enum.Font.SourceSans
  1350. Multiple.FontSize = Enum.FontSize.Size24
  1351. Multiple.Text = "Multiple"
  1352. Multiple.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1353. Multiple.TextSize = 22
  1354.  
  1355. Animated.Name = "Animated"
  1356. Animated.Parent = othersBaseBackground2
  1357. Animated.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1358. Animated.BorderSizePixel = 0
  1359. Animated.Position = UDim2.new(0.67696619, 0, 0.27070269, 0)
  1360. Animated.Size = UDim2.new(0, 92, 0, 25)
  1361. Animated.Font = Enum.Font.SourceSans
  1362. Animated.FontSize = Enum.FontSize.Size24
  1363. Animated.Text = "Animated"
  1364. Animated.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1365. Animated.TextSize = 22
  1366.  
  1367. SlowAttract.Name = "SlowAttract"
  1368. SlowAttract.Parent = othersBaseBackground2
  1369. SlowAttract.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1370. SlowAttract.BorderSizePixel = 0
  1371. SlowAttract.Position = UDim2.new(0.67696619, 0, 0.507567585, 0)
  1372. SlowAttract.Size = UDim2.new(0, 92, 0, 25)
  1373. SlowAttract.Font = Enum.Font.SourceSans
  1374. SlowAttract.FontSize = Enum.FontSize.Size24
  1375. SlowAttract.Text = "SlowAttract"
  1376. SlowAttract.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1377. SlowAttract.TextSize = 22
  1378.  
  1379. WeirdOrbit.Name = "WeirdOrbit"
  1380. WeirdOrbit.Parent = othersBaseBackground2
  1381. WeirdOrbit.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1382. WeirdOrbit.BorderSizePixel = 0
  1383. WeirdOrbit.Position = UDim2.new(0.67696619, 0, 0.744432449, 0)
  1384. WeirdOrbit.Size = UDim2.new(0, 92, 0, 25)
  1385. WeirdOrbit.Font = Enum.Font.SourceSans
  1386. WeirdOrbit.FontSize = Enum.FontSize.Size24
  1387. WeirdOrbit.Text = "Weird Orbit"
  1388. WeirdOrbit.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1389. WeirdOrbit.TextSize = 22
  1390.  
  1391. Violent.Name = "Violent"
  1392. Violent.Parent = othersBaseBackground2
  1393. Violent.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1394. Violent.BorderSizePixel = 0
  1395. Violent.Position = UDim2.new(0.367916405, 0, 0.744432449, 0)
  1396. Violent.Size = UDim2.new(0, 92, 0, 25)
  1397. Violent.Font = Enum.Font.SourceSans
  1398. Violent.FontSize = Enum.FontSize.Size24
  1399. Violent.Text = "Violent"
  1400. Violent.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1401. Violent.TextSize = 22
  1402.  
  1403. Max.Name = "Max"
  1404. Max.Parent = othersBaseBackground2
  1405. Max.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1406. Max.BorderSizePixel = 0
  1407. Max.Position = UDim2.new(0.0588666238, 0, 0.744432449, 0)
  1408. Max.Size = UDim2.new(0, 92, 0, 25)
  1409. Max.Font = Enum.Font.SourceSans
  1410. Max.FontSize = Enum.FontSize.Size24
  1411. Max.Text = "Max"
  1412. Max.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1413. Max.TextSize = 22
  1414.  
  1415. Others_toPAGE3.Name = "Others_toPAGE3"
  1416. Others_toPAGE3.Parent = Others_2
  1417. Others_toPAGE3.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1418. Others_toPAGE3.BorderSizePixel = 0
  1419. Others_toPAGE3.Position = UDim2.new(0.819999993, 0, 0.0439999998, 0)
  1420. Others_toPAGE3.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
  1421. Others_toPAGE3.Font = Enum.Font.SourceSansLight
  1422. Others_toPAGE3.FontSize = Enum.FontSize.Size24
  1423. Others_toPAGE3.Text = "Next"
  1424. Others_toPAGE3.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1425. Others_toPAGE3.TextSize = 22
  1426.  
  1427. Character_toPAGE3_IMAGE.Name = "Character_toPAGE3_IMAGE"
  1428. Character_toPAGE3_IMAGE.Parent = Others_toPAGE3
  1429. Character_toPAGE3_IMAGE.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1430. Character_toPAGE3_IMAGE.BorderSizePixel = 0
  1431. Character_toPAGE3_IMAGE.Position = UDim2.new(0.900659323, 0, 0, 0)
  1432. Character_toPAGE3_IMAGE.Size = UDim2.new(0, 25, 0, 25)
  1433. Character_toPAGE3_IMAGE.Image = "http://www.roblox.com/asset/?id=1282737326"
  1434.  
  1435. Others_backPAGE1.Name = "Others_backPAGE1"
  1436. Others_backPAGE1.Parent = Others_2
  1437. Others_backPAGE1.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1438. Others_backPAGE1.BorderSizePixel = 0
  1439. Others_backPAGE1.Position = UDim2.new(0.0679230243, 0, 0.0439298227, 0)
  1440. Others_backPAGE1.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
  1441. Others_backPAGE1.Font = Enum.Font.SourceSansLight
  1442. Others_backPAGE1.FontSize = Enum.FontSize.Size24
  1443. Others_backPAGE1.Text = "Prev"
  1444. Others_backPAGE1.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1445. Others_backPAGE1.TextSize = 22
  1446.  
  1447. Character_toPAGE1_IMAGE_2.Name = "Character_toPAGE1_IMAGE"
  1448. Character_toPAGE1_IMAGE_2.Parent = Others_backPAGE1
  1449. Character_toPAGE1_IMAGE_2.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1450. Character_toPAGE1_IMAGE_2.BorderSizePixel = 0
  1451. Character_toPAGE1_IMAGE_2.Position = UDim2.new(-0.400293052, 0, 0, 0)
  1452. Character_toPAGE1_IMAGE_2.Size = UDim2.new(0, 25, 0, 25)
  1453. Character_toPAGE1_IMAGE_2.Image = "http://www.roblox.com/asset/?id=1282894968"
  1454.  
  1455. Extra_1.Name = "Extra_1"
  1456. Extra_1.Parent = Pages
  1457. Extra_1.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1458. Extra_1.BorderSizePixel = 0
  1459. Extra_1.Position = UDim2.new(1, 0, 0, 0)
  1460. Extra_1.Size = UDim2.new(1, 0, 1, 0)
  1461.  
  1462. Extra_Image.Name = "Extra_Image"
  1463. Extra_Image.Parent = Extra_1
  1464. Extra_Image.BackgroundColor3 = Color3.new(1, 1, 1)
  1465. Extra_Image.BackgroundTransparency = 1
  1466. Extra_Image.Position = UDim2.new(0.0679230243, 0, 0.0439298227, 0)
  1467. Extra_Image.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
  1468. Extra_Image.Image = "http://www.roblox.com/asset/?id=1281477720"
  1469.  
  1470. ExtraText.Name = "ExtraText"
  1471. ExtraText.Parent = Extra_1
  1472. ExtraText.BackgroundColor3 = Color3.new(1, 1, 1)
  1473. ExtraText.BackgroundTransparency = 1
  1474. ExtraText.Position = UDim2.new(0.158487067, 0, 0.109824568, 0)
  1475. ExtraText.Size = UDim2.new(0.65658927, 0, 0.0878596455, 0)
  1476. ExtraText.Font = Enum.Font.SourceSansItalic
  1477. ExtraText.FontSize = Enum.FontSize.Size24
  1478. ExtraText.Text = "Cool and unique commands for yourself!"
  1479. ExtraText.TextSize = 19
  1480. ExtraText.TextWrapped = true
  1481.  
  1482. ExtraBaseBackGround1.Name = "ExtraBaseBackGround1"
  1483. ExtraBaseBackGround1.Parent = Extra_1
  1484. ExtraBaseBackGround1.BackgroundColor3 = Color3.new(0.945098, 0.768628, 0.0588235)
  1485. ExtraBaseBackGround1.BorderSizePixel = 0
  1486. ExtraBaseBackGround1.Position = UDim2.new(0.0790000036, 0, 0.400000006, 0)
  1487. ExtraBaseBackGround1.Size = UDim2.new(0.25, 0, 0.600000024, 0)
  1488.  
  1489. CrouchRocket.Name = "CrouchRocket"
  1490. CrouchRocket.Parent = ExtraBaseBackGround1
  1491. CrouchRocket.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  1492. CrouchRocket.BorderSizePixel = 0
  1493. CrouchRocket.Position = UDim2.new(0.0901560932, 0, 0.0731094852, 0)
  1494. CrouchRocket.Size = UDim2.new(0, 92, 0, 25)
  1495. CrouchRocket.Font = Enum.Font.SourceSans
  1496. CrouchRocket.FontSize = Enum.FontSize.Size18
  1497. CrouchRocket.Text = "Crouch Rocket"
  1498. CrouchRocket.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1499. CrouchRocket.TextSize = 17
  1500.  
  1501. ExtraBaseBackGround1Side.Name = "ExtraBaseBackGround1Side"
  1502. ExtraBaseBackGround1Side.Parent = ExtraBaseBackGround1
  1503. ExtraBaseBackGround1Side.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  1504. ExtraBaseBackGround1Side.BorderSizePixel = 0
  1505. ExtraBaseBackGround1Side.Position = UDim2.new(0, 0, -0.109664232, 0)
  1506. ExtraBaseBackGround1Side.Size = UDim2.new(1, 0, 0.109999999, 0)
  1507.  
  1508. CloneIllusion.Name = "CloneIllusion"
  1509. CloneIllusion.Parent = ExtraBaseBackGround1
  1510. CloneIllusion.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  1511. CloneIllusion.BorderSizePixel = 0
  1512. CloneIllusion.Position = UDim2.new(0.0901560932, 0, 0.292437941, 0)
  1513. CloneIllusion.Size = UDim2.new(0, 92, 0, 25)
  1514. CloneIllusion.Font = Enum.Font.SourceSans
  1515. CloneIllusion.FontSize = Enum.FontSize.Size18
  1516. CloneIllusion.Text = "Clone Illusion"
  1517. CloneIllusion.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1518. CloneIllusion.TextSize = 17
  1519.  
  1520. CoolSpin.Name = "CoolSpin"
  1521. CoolSpin.Parent = ExtraBaseBackGround1
  1522. CoolSpin.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  1523. CoolSpin.BorderSizePixel = 0
  1524. CoolSpin.Position = UDim2.new(0.0901560932, 0, 0.511766434, 0)
  1525. CoolSpin.Size = UDim2.new(0, 92, 0, 25)
  1526. CoolSpin.Font = Enum.Font.SourceSans
  1527. CoolSpin.FontSize = Enum.FontSize.Size18
  1528. CoolSpin.Text = "Cool Spin"
  1529. CoolSpin.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1530. CoolSpin.TextSize = 17
  1531.  
  1532. JumpRocket.Name = "JumpRocket"
  1533. JumpRocket.Parent = ExtraBaseBackGround1
  1534. JumpRocket.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  1535. JumpRocket.BorderSizePixel = 0
  1536. JumpRocket.Position = UDim2.new(0.0901560932, 0, 0.731094897, 0)
  1537. JumpRocket.Size = UDim2.new(0, 92, 0, 25)
  1538. JumpRocket.Font = Enum.Font.SourceSans
  1539. JumpRocket.FontSize = Enum.FontSize.Size18
  1540. JumpRocket.Text = "Jump Rocket"
  1541. JumpRocket.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1542. JumpRocket.TextSize = 17
  1543.  
  1544. Extra_toPAGE2.Name = "Extra_toPAGE2"
  1545. Extra_toPAGE2.Parent = Extra_1
  1546. Extra_toPAGE2.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1547. Extra_toPAGE2.BorderSizePixel = 0
  1548. Extra_toPAGE2.Position = UDim2.new(0.819999993, 0, 0.0439999998, 0)
  1549. Extra_toPAGE2.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
  1550. Extra_toPAGE2.Font = Enum.Font.SourceSansLight
  1551. Extra_toPAGE2.FontSize = Enum.FontSize.Size24
  1552. Extra_toPAGE2.Text = "Next"
  1553. Extra_toPAGE2.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1554. Extra_toPAGE2.TextSize = 22
  1555.  
  1556. Character_toPAGE2_IMAGE_3.Name = "Character_toPAGE2_IMAGE"
  1557. Character_toPAGE2_IMAGE_3.Parent = Extra_toPAGE2
  1558. Character_toPAGE2_IMAGE_3.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1559. Character_toPAGE2_IMAGE_3.BorderSizePixel = 0
  1560. Character_toPAGE2_IMAGE_3.Position = UDim2.new(0.900659323, 0, 0, 0)
  1561. Character_toPAGE2_IMAGE_3.Size = UDim2.new(0, 25, 0, 25)
  1562. Character_toPAGE2_IMAGE_3.Image = "http://www.roblox.com/asset/?id=1282737326"
  1563.  
  1564. Extra_Title.Name = "Extra_Title"
  1565. Extra_Title.Parent = Extra_1
  1566. Extra_Title.BackgroundColor3 = Color3.new(1, 1, 1)
  1567. Extra_Title.BackgroundTransparency = 1
  1568. Extra_Title.Position = UDim2.new(0.226410091, 0, 0, 0)
  1569. Extra_Title.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  1570. Extra_Title.Font = Enum.Font.SourceSansBold
  1571. Extra_Title.FontSize = Enum.FontSize.Size28
  1572. Extra_Title.Text = "Extra"
  1573. Extra_Title.TextSize = 25
  1574.  
  1575. ExtraBaseBackGround2.Name = "ExtraBaseBackGround2"
  1576. ExtraBaseBackGround2.Parent = Extra_1
  1577. ExtraBaseBackGround2.BackgroundColor3 = Color3.new(0.101961, 0.737255, 0.611765)
  1578. ExtraBaseBackGround2.BorderSizePixel = 0
  1579. ExtraBaseBackGround2.Position = UDim2.new(0.374000013, 0, 0.400000006, 0)
  1580. ExtraBaseBackGround2.Size = UDim2.new(0.25, 0, 0.600000024, 0)
  1581.  
  1582. NoLimbs.Name = "NoLimbs"
  1583. NoLimbs.Parent = ExtraBaseBackGround2
  1584. NoLimbs.BackgroundColor3 = Color3.new(0.0862745, 0.627451, 0.521569)
  1585. NoLimbs.BorderSizePixel = 0
  1586. NoLimbs.Position = UDim2.new(0.0901560932, 0, 0.0731094852, 0)
  1587. NoLimbs.Size = UDim2.new(0, 92, 0, 25)
  1588. NoLimbs.Font = Enum.Font.SourceSans
  1589. NoLimbs.FontSize = Enum.FontSize.Size18
  1590. NoLimbs.Text = "No Limbs"
  1591. NoLimbs.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1592. NoLimbs.TextSize = 17
  1593.  
  1594. FEGodmode.Name = "FE Godmode"
  1595. FEGodmode.Parent = ExtraBaseBackGround2
  1596. FEGodmode.BackgroundColor3 = Color3.new(0.0862745, 0.627451, 0.521569)
  1597. FEGodmode.BorderSizePixel = 0
  1598. FEGodmode.Position = UDim2.new(0.0901560932, 0, 0.292437941, 0)
  1599. FEGodmode.Size = UDim2.new(0, 92, 0, 25)
  1600. FEGodmode.Font = Enum.Font.SourceSans
  1601. FEGodmode.FontSize = Enum.FontSize.Size18
  1602. FEGodmode.Text = "FE Godmode"
  1603. FEGodmode.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1604. FEGodmode.TextSize = 17
  1605.  
  1606. BrickHats.Name = "BrickHats"
  1607. BrickHats.Parent = ExtraBaseBackGround2
  1608. BrickHats.BackgroundColor3 = Color3.new(0.0862745, 0.627451, 0.521569)
  1609. BrickHats.BorderSizePixel = 0
  1610. BrickHats.Position = UDim2.new(0.0901560932, 0, 0.511766434, 0)
  1611. BrickHats.Size = UDim2.new(0, 92, 0, 25)
  1612. BrickHats.Font = Enum.Font.SourceSans
  1613. BrickHats.FontSize = Enum.FontSize.Size18
  1614. BrickHats.Text = "Brick Hats"
  1615. BrickHats.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1616. BrickHats.TextSize = 17
  1617.  
  1618. RapidPunch.Name = "RapidPunch"
  1619. RapidPunch.Parent = ExtraBaseBackGround2
  1620. RapidPunch.BackgroundColor3 = Color3.new(0.0862745, 0.627451, 0.521569)
  1621. RapidPunch.BorderSizePixel = 0
  1622. RapidPunch.Position = UDim2.new(0.0901560932, 0, 0.731094897, 0)
  1623. RapidPunch.Size = UDim2.new(0, 92, 0, 25)
  1624. RapidPunch.Font = Enum.Font.SourceSans
  1625. RapidPunch.FontSize = Enum.FontSize.Size18
  1626. RapidPunch.Text = "RapidPunch"
  1627. RapidPunch.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1628. RapidPunch.TextSize = 17
  1629.  
  1630. ExtraBaseBackGround2Side.Name = "ExtraBaseBackGround2Side"
  1631. ExtraBaseBackGround2Side.Parent = ExtraBaseBackGround2
  1632. ExtraBaseBackGround2Side.BackgroundColor3 = Color3.new(0.0862745, 0.627451, 0.521569)
  1633. ExtraBaseBackGround2Side.BorderSizePixel = 0
  1634. ExtraBaseBackGround2Side.Position = UDim2.new(0, 0, -0.109664232, 0)
  1635. ExtraBaseBackGround2Side.Size = UDim2.new(1, 0, 0.109999999, 0)
  1636.  
  1637. ExtraBaseBackGround3.Name = "ExtraBaseBackGround3"
  1638. ExtraBaseBackGround3.Parent = Extra_1
  1639. ExtraBaseBackGround3.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  1640. ExtraBaseBackGround3.BorderSizePixel = 0
  1641. ExtraBaseBackGround3.Position = UDim2.new(0.667999983, 0, 0.400000006, 0)
  1642. ExtraBaseBackGround3.Size = UDim2.new(0.25, 0, 0.600000024, 0)
  1643.  
  1644. PunchFollow.Name = "PunchFollow"
  1645. PunchFollow.Parent = ExtraBaseBackGround3
  1646. PunchFollow.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  1647. PunchFollow.BorderSizePixel = 0
  1648. PunchFollow.Position = UDim2.new(0.0901560932, 0, 0.0731094852, 0)
  1649. PunchFollow.Size = UDim2.new(0, 92, 0, 25)
  1650. PunchFollow.Font = Enum.Font.SourceSans
  1651. PunchFollow.FontSize = Enum.FontSize.Size18
  1652. PunchFollow.Text = "Punch Follow"
  1653. PunchFollow.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1654. PunchFollow.TextSize = 17
  1655.  
  1656. ArmFollow.Name = "ArmFollow"
  1657. ArmFollow.Parent = ExtraBaseBackGround3
  1658. ArmFollow.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  1659. ArmFollow.BorderSizePixel = 0
  1660. ArmFollow.Position = UDim2.new(0.0901560932, 0, 0.292437941, 0)
  1661. ArmFollow.Size = UDim2.new(0, 92, 0, 25)
  1662. ArmFollow.Font = Enum.Font.SourceSans
  1663. ArmFollow.FontSize = Enum.FontSize.Size18
  1664. ArmFollow.Text = "Arm Follow"
  1665. ArmFollow.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1666. ArmFollow.TextSize = 17
  1667.  
  1668. Spin.Name = "Spin"
  1669. Spin.Parent = ExtraBaseBackGround3
  1670. Spin.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  1671. Spin.BorderSizePixel = 0
  1672. Spin.Position = UDim2.new(0.0901560932, 0, 0.511766434, 0)
  1673. Spin.Size = UDim2.new(0, 92, 0, 25)
  1674. Spin.Font = Enum.Font.SourceSans
  1675. Spin.FontSize = Enum.FontSize.Size18
  1676. Spin.Text = "Spin"
  1677. Spin.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1678. Spin.TextSize = 17
  1679.  
  1680. Faint.Name = "Faint"
  1681. Faint.Parent = ExtraBaseBackGround3
  1682. Faint.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  1683. Faint.BorderSizePixel = 0
  1684. Faint.Position = UDim2.new(0.0901560932, 0, 0.731094897, 0)
  1685. Faint.Size = UDim2.new(0, 92, 0, 25)
  1686. Faint.Font = Enum.Font.SourceSans
  1687. Faint.FontSize = Enum.FontSize.Size18
  1688. Faint.Text = "Faint"
  1689. Faint.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1690. Faint.TextSize = 17
  1691.  
  1692. ExtraBaseBackGround3Side.Name = "ExtraBaseBackGround3Side"
  1693. ExtraBaseBackGround3Side.Parent = ExtraBaseBackGround3
  1694. ExtraBaseBackGround3Side.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  1695. ExtraBaseBackGround3Side.BorderSizePixel = 0
  1696. ExtraBaseBackGround3Side.Position = UDim2.new(0, 0, -0.109664232, 0)
  1697. ExtraBaseBackGround3Side.Size = UDim2.new(1, 0, 0.109999999, 0)
  1698.  
  1699. Extra_2.Name = "Extra_2"
  1700. Extra_2.Parent = Pages
  1701. Extra_2.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1702. Extra_2.BorderSizePixel = 0
  1703. Extra_2.Position = UDim2.new(1, 0, 0, 0)
  1704. Extra_2.Size = UDim2.new(1, 0, 1, 0)
  1705.  
  1706. Extra_Image_2.Name = "Extra_Image"
  1707. Extra_Image_2.Parent = Extra_2
  1708. Extra_Image_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1709. Extra_Image_2.BackgroundTransparency = 1
  1710. Extra_Image_2.Position = UDim2.new(0.80375582, 0, 0.0439298227, 0)
  1711. Extra_Image_2.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
  1712. Extra_Image_2.Image = "http://www.roblox.com/asset/?id=1282931168"
  1713.  
  1714. ExtraText_2.Name = "ExtraText"
  1715. ExtraText_2.Parent = Extra_2
  1716. ExtraText_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1717. ExtraText_2.BackgroundTransparency = 1
  1718. ExtraText_2.Position = UDim2.new(0.158487067, 0, 0.109824568, 0)
  1719. ExtraText_2.Size = UDim2.new(0.65658927, 0, 0.175719291, 0)
  1720. ExtraText_2.Font = Enum.Font.SourceSansItalic
  1721. ExtraText_2.FontSize = Enum.FontSize.Size24
  1722. ExtraText_2.Text = "Cool and unique commands for other players!"
  1723. ExtraText_2.TextSize = 19
  1724. ExtraText_2.TextWrapped = true
  1725.  
  1726. Extra_Title_2.Name = "Extra_Title"
  1727. Extra_Title_2.Parent = Extra_2
  1728. Extra_Title_2.BackgroundColor3 = Color3.new(1, 1, 1)
  1729. Extra_Title_2.BackgroundTransparency = 1
  1730. Extra_Title_2.Position = UDim2.new(0.226410091, 0, 0, 0)
  1731. Extra_Title_2.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  1732. Extra_Title_2.Font = Enum.Font.SourceSansBold
  1733. Extra_Title_2.FontSize = Enum.FontSize.Size28
  1734. Extra_Title_2.Text = "Extra"
  1735. Extra_Title_2.TextSize = 25
  1736.  
  1737. ExtraBaseBackGround2_2.Name = "ExtraBaseBackGround2"
  1738. ExtraBaseBackGround2_2.Parent = Extra_2
  1739. ExtraBaseBackGround2_2.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
  1740. ExtraBaseBackGround2_2.BorderSizePixel = 0
  1741. ExtraBaseBackGround2_2.Position = UDim2.new(0.158000007, 0, 0.38499999, 0)
  1742. ExtraBaseBackGround2_2.Size = UDim2.new(0.667909801, 0, 0.615017533, 0)
  1743.  
  1744. CrouchAttack.Name = "CrouchAttack"
  1745. CrouchAttack.Parent = ExtraBaseBackGround2_2
  1746. CrouchAttack.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1747. CrouchAttack.BorderSizePixel = 0
  1748. CrouchAttack.Position = UDim2.new(0.576693356, 0, 0.321942836, 0)
  1749. CrouchAttack.Size = UDim2.new(0, 92, 0, 25)
  1750. CrouchAttack.Font = Enum.Font.SourceSans
  1751. CrouchAttack.FontSize = Enum.FontSize.Size18
  1752. CrouchAttack.Text = "Crouch Attack"
  1753. CrouchAttack.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1754. CrouchAttack.TextSize = 17
  1755.  
  1756. WalkThrough.Name = "WalkThrough"
  1757. WalkThrough.Parent = ExtraBaseBackGround2_2
  1758. WalkThrough.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1759. WalkThrough.BorderSizePixel = 0
  1760. WalkThrough.Position = UDim2.new(0.118730992, 0, 0.536571443, 0)
  1761. WalkThrough.Size = UDim2.new(0, 92, 0, 25)
  1762. WalkThrough.Font = Enum.Font.SourceSans
  1763. WalkThrough.FontSize = Enum.FontSize.Size18
  1764. WalkThrough.Text = "Walk Through"
  1765. WalkThrough.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1766. WalkThrough.TextSize = 17
  1767.  
  1768. CreepyWatch.Name = "CreepyWatch"
  1769. CreepyWatch.Parent = ExtraBaseBackGround2_2
  1770. CreepyWatch.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1771. CreepyWatch.BorderSizePixel = 0
  1772. CreepyWatch.Position = UDim2.new(0.118730992, 0, 0.321942836, 0)
  1773. CreepyWatch.Size = UDim2.new(0, 92, 0, 25)
  1774. CreepyWatch.Font = Enum.Font.SourceSans
  1775. CreepyWatch.FontSize = Enum.FontSize.Size18
  1776. CreepyWatch.Text = "Creepy Watch"
  1777. CreepyWatch.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1778. CreepyWatch.TextSize = 17
  1779.  
  1780. SpinAttack.Name = "SpinAttack"
  1781. SpinAttack.Parent = ExtraBaseBackGround2_2
  1782. SpinAttack.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1783. SpinAttack.BorderSizePixel = 0
  1784. SpinAttack.Position = UDim2.new(0.576693356, 0, 0.536571443, 0)
  1785. SpinAttack.Size = UDim2.new(0, 92, 0, 25)
  1786. SpinAttack.Font = Enum.Font.SourceSans
  1787. SpinAttack.FontSize = Enum.FontSize.Size18
  1788. SpinAttack.Text = "Spin Attack"
  1789. SpinAttack.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1790. SpinAttack.TextSize = 17
  1791.  
  1792. ExtraBaseBackGround2Side_2.Name = "ExtraBaseBackGround2Side"
  1793. ExtraBaseBackGround2Side_2.Parent = ExtraBaseBackGround2_2
  1794. ExtraBaseBackGround2Side_2.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1795. ExtraBaseBackGround2Side_2.BorderSizePixel = 0
  1796. ExtraBaseBackGround2Side_2.Position = UDim2.new(0, 0, -0.109664232, 0)
  1797. ExtraBaseBackGround2Side_2.Size = UDim2.new(1, 0, 0.109999999, 0)
  1798.  
  1799. TXTBOX_PlrNameEXTRA.Name = "TXTBOX_PlrNameEXTRA"
  1800. TXTBOX_PlrNameEXTRA.Parent = ExtraBaseBackGround2_2
  1801. TXTBOX_PlrNameEXTRA.BackgroundColor3 = Color3.new(0.956863, 0.968628, 0.972549)
  1802. TXTBOX_PlrNameEXTRA.BorderColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1803. TXTBOX_PlrNameEXTRA.BorderSizePixel = 0
  1804. TXTBOX_PlrNameEXTRA.Position = UDim2.new(0.22050041, 0, 0.0715428591, 0)
  1805. TXTBOX_PlrNameEXTRA.Size = UDim2.new(0.559731781, 0, 0.143085718, 0)
  1806. TXTBOX_PlrNameEXTRA.ZIndex = 2
  1807. TXTBOX_PlrNameEXTRA.Font = Enum.Font.SourceSans
  1808. TXTBOX_PlrNameEXTRA.FontSize = Enum.FontSize.Size14
  1809. TXTBOX_PlrNameEXTRA.Text = "Player"
  1810. TXTBOX_PlrNameEXTRA.TextScaled = true
  1811. TXTBOX_PlrNameEXTRA.TextSize = 14
  1812. TXTBOX_PlrNameEXTRA.TextWrapped = true
  1813.  
  1814. _18.Name = "18+"
  1815. _18.Parent = ExtraBaseBackGround2_2
  1816. _18.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1817. _18.BorderSizePixel = 0
  1818. _18.Position = UDim2.new(0.576693356, 0, 0.75120002, 0)
  1819. _18.Size = UDim2.new(0, 92, 0, 25)
  1820. _18.Font = Enum.Font.SourceSans
  1821. _18.FontSize = Enum.FontSize.Size18
  1822. _18.Text = "18+"
  1823. _18.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1824. _18.TextSize = 17
  1825.  
  1826. SlamPropulsion.Name = "SlamPropulsion"
  1827. SlamPropulsion.Parent = ExtraBaseBackGround2_2
  1828. SlamPropulsion.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1829. SlamPropulsion.BorderSizePixel = 0
  1830. SlamPropulsion.Position = UDim2.new(0.118730992, 0, 0.75120002, 0)
  1831. SlamPropulsion.Size = UDim2.new(0, 92, 0, 25)
  1832. SlamPropulsion.Font = Enum.Font.SourceSans
  1833. SlamPropulsion.FontSize = Enum.FontSize.Size18
  1834. SlamPropulsion.Text = "Slam Propulsion"
  1835. SlamPropulsion.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1836. SlamPropulsion.TextSize = 15
  1837. SlamPropulsion.TextWrapped = true
  1838.  
  1839. Extra_backPAGE1.Name = "Extra_backPAGE1"
  1840. Extra_backPAGE1.Parent = Extra_2
  1841. Extra_backPAGE1.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1842. Extra_backPAGE1.BorderSizePixel = 0
  1843. Extra_backPAGE1.Position = UDim2.new(0.0679230243, 0, 0.0439298227, 0)
  1844. Extra_backPAGE1.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
  1845. Extra_backPAGE1.Font = Enum.Font.SourceSansLight
  1846. Extra_backPAGE1.FontSize = Enum.FontSize.Size24
  1847. Extra_backPAGE1.Text = "Prev"
  1848. Extra_backPAGE1.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1849. Extra_backPAGE1.TextSize = 22
  1850.  
  1851. Character_toPAGE1_IMAGE_3.Name = "Character_toPAGE1_IMAGE"
  1852. Character_toPAGE1_IMAGE_3.Parent = Extra_backPAGE1
  1853. Character_toPAGE1_IMAGE_3.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1854. Character_toPAGE1_IMAGE_3.BorderSizePixel = 0
  1855. Character_toPAGE1_IMAGE_3.Position = UDim2.new(-0.400293052, 0, 0, 0)
  1856. Character_toPAGE1_IMAGE_3.Size = UDim2.new(0, 25, 0, 25)
  1857. Character_toPAGE1_IMAGE_3.Image = "http://www.roblox.com/asset/?id=1282894968"
  1858.  
  1859. Others_3.Name = "Others_3"
  1860. Others_3.Parent = Pages
  1861. Others_3.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1862. Others_3.BorderSizePixel = 0
  1863. Others_3.Position = UDim2.new(1, 0, 0, 0)
  1864. Others_3.Size = UDim2.new(1, 0, 1, 0)
  1865.  
  1866. OthersTitle_3.Name = "OthersTitle"
  1867. OthersTitle_3.Parent = Others_3
  1868. OthersTitle_3.BackgroundColor3 = Color3.new(1, 1, 1)
  1869. OthersTitle_3.BackgroundTransparency = 1
  1870. OthersTitle_3.Position = UDim2.new(0.226410091, 0, 0, 0)
  1871. OthersTitle_3.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  1872. OthersTitle_3.Font = Enum.Font.SourceSansBold
  1873. OthersTitle_3.FontSize = Enum.FontSize.Size28
  1874. OthersTitle_3.Text = "Others"
  1875. OthersTitle_3.TextSize = 25
  1876.  
  1877. Other_Image3.Name = "Other_Image3"
  1878. Other_Image3.Parent = Others_3
  1879. Other_Image3.BackgroundColor3 = Color3.new(1, 1, 1)
  1880. Other_Image3.BackgroundTransparency = 1
  1881. Other_Image3.Position = UDim2.new(0.124525554, 0, 0.219649136, 0)
  1882. Other_Image3.Size = UDim2.new(0.101884536, 0, 0.197684199, 0)
  1883. Other_Image3.Image = "http://www.roblox.com/asset/?id=1281286925"
  1884.  
  1885. OthersText_3.Name = "OthersText"
  1886. OthersText_3.Parent = Others_3
  1887. OthersText_3.BackgroundColor3 = Color3.new(1, 1, 1)
  1888. OthersText_3.BackgroundTransparency = 1
  1889. OthersText_3.Position = UDim2.new(0.237730592, 0, 0.197684199, 0)
  1890. OthersText_3.Size = UDim2.new(0.65658927, 0, 0.219649136, 0)
  1891. OthersText_3.Font = Enum.Font.SourceSansItalic
  1892. OthersText_3.FontSize = Enum.FontSize.Size24
  1893. OthersText_3.Text = "Warning! You require tools in your inventory to use these. Some games/tools do not work."
  1894. OthersText_3.TextSize = 19
  1895. OthersText_3.TextWrapped = true
  1896.  
  1897. TXTBOX_PlrNameOTHER3.Name = "TXTBOX_PlrNameOTHER3"
  1898. TXTBOX_PlrNameOTHER3.Parent = Others_3
  1899. TXTBOX_PlrNameOTHER3.BackgroundColor3 = Color3.new(0.956863, 0.968628, 0.972549)
  1900. TXTBOX_PlrNameOTHER3.BorderColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  1901. TXTBOX_PlrNameOTHER3.BorderSizePixel = 0
  1902. TXTBOX_PlrNameOTHER3.Position = UDim2.new(0.249051109, 0, 0.571087658, 0)
  1903. TXTBOX_PlrNameOTHER3.Size = UDim2.new(0.520743191, 0, 0.0878596455, 0)
  1904. TXTBOX_PlrNameOTHER3.ZIndex = 2
  1905. TXTBOX_PlrNameOTHER3.Font = Enum.Font.SourceSans
  1906. TXTBOX_PlrNameOTHER3.FontSize = Enum.FontSize.Size14
  1907. TXTBOX_PlrNameOTHER3.Text = "Player"
  1908. TXTBOX_PlrNameOTHER3.TextScaled = true
  1909. TXTBOX_PlrNameOTHER3.TextSize = 14
  1910. TXTBOX_PlrNameOTHER3.TextWrapped = true
  1911.  
  1912. othersBaseBackground3.Name = "othersBaseBackground3"
  1913. othersBaseBackground3.Parent = Others_3
  1914. othersBaseBackground3.BackgroundColor3 = Color3.new(0.752941, 0.223529, 0.168627)
  1915. othersBaseBackground3.BorderSizePixel = 0
  1916. othersBaseBackground3.Position = UDim2.new(0.125, 0, 0.518999994, 0)
  1917. othersBaseBackground3.Size = UDim2.new(0.769794285, 0, 0.483228087, 0)
  1918.  
  1919. FreeFall.Name = "FreeFall"
  1920. FreeFall.Parent = othersBaseBackground3
  1921. FreeFall.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
  1922. FreeFall.BorderSizePixel = 0
  1923. FreeFall.Position = UDim2.new(0.367916405, 0, 0.364218175, 0)
  1924. FreeFall.Size = UDim2.new(0, 92, 0, 25)
  1925. FreeFall.Font = Enum.Font.SourceSans
  1926. FreeFall.FontSize = Enum.FontSize.Size24
  1927. FreeFall.Text = "Free Fall"
  1928. FreeFall.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1929. FreeFall.TextSize = 22
  1930.  
  1931. Attach.Name = "Attach"
  1932. Attach.Parent = othersBaseBackground3
  1933. Attach.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
  1934. Attach.BorderSizePixel = 0
  1935. Attach.Position = UDim2.new(0.67696619, 0, 0.364218175, 0)
  1936. Attach.Size = UDim2.new(0, 92, 0, 25)
  1937. Attach.Font = Enum.Font.SourceSans
  1938. Attach.FontSize = Enum.FontSize.Size24
  1939. Attach.Text = "Attach"
  1940. Attach.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1941. Attach.TextSize = 22
  1942.  
  1943. Bring.Name = "Bring"
  1944. Bring.Parent = othersBaseBackground3
  1945. Bring.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
  1946. Bring.BorderSizePixel = 0
  1947. Bring.Position = UDim2.new(0.67696619, 0, 0.682909131, 0)
  1948. Bring.Size = UDim2.new(0, 92, 0, 25)
  1949. Bring.Font = Enum.Font.SourceSans
  1950. Bring.FontSize = Enum.FontSize.Size24
  1951. Bring.Text = "Bring"
  1952. Bring.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1953. Bring.TextSize = 22
  1954.  
  1955. SafeKill.Name = "SafeKill"
  1956. SafeKill.Parent = othersBaseBackground3
  1957. SafeKill.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
  1958. SafeKill.BorderSizePixel = 0
  1959. SafeKill.Position = UDim2.new(0.367916405, 0, 0.682909131, 0)
  1960. SafeKill.Size = UDim2.new(0, 92, 0, 25)
  1961. SafeKill.Font = Enum.Font.SourceSans
  1962. SafeKill.FontSize = Enum.FontSize.Size24
  1963. SafeKill.Text = "SafeKill"
  1964. SafeKill.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1965. SafeKill.TextSize = 22
  1966.  
  1967. SuperSpin.Name = "SuperSpin"
  1968. SuperSpin.Parent = othersBaseBackground3
  1969. SuperSpin.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
  1970. SuperSpin.BorderSizePixel = 0
  1971. SuperSpin.Position = UDim2.new(0.0588666238, 0, 0.682909131, 0)
  1972. SuperSpin.Size = UDim2.new(0, 92, 0, 25)
  1973. SuperSpin.Font = Enum.Font.SourceSans
  1974. SuperSpin.FontSize = Enum.FontSize.Size24
  1975. SuperSpin.Text = "SuperSpin"
  1976. SuperSpin.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1977. SuperSpin.TextSize = 22
  1978.  
  1979. Kill.Name = "Kill"
  1980. Kill.Parent = othersBaseBackground3
  1981. Kill.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
  1982. Kill.BorderSizePixel = 0
  1983. Kill.Position = UDim2.new(0.0588666238, 0, 0.364218175, 0)
  1984. Kill.Size = UDim2.new(0, 92, 0, 25)
  1985. Kill.Font = Enum.Font.SourceSans
  1986. Kill.FontSize = Enum.FontSize.Size24
  1987. Kill.Text = "Kill"
  1988. Kill.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  1989. Kill.TextSize = 22
  1990.  
  1991. Others_backPAGE2.Name = "Others_backPAGE2"
  1992. Others_backPAGE2.Parent = Others_3
  1993. Others_backPAGE2.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  1994. Others_backPAGE2.BorderSizePixel = 0
  1995. Others_backPAGE2.Position = UDim2.new(0.0679230243, 0, 0.0439298227, 0)
  1996. Others_backPAGE2.Size = UDim2.new(0.113205045, 0, 0.109824568, 0)
  1997. Others_backPAGE2.Font = Enum.Font.SourceSansLight
  1998. Others_backPAGE2.FontSize = Enum.FontSize.Size24
  1999. Others_backPAGE2.Text = "Prev"
  2000. Others_backPAGE2.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2001. Others_backPAGE2.TextSize = 22
  2002.  
  2003. Character_toPAGE1_IMAGE_4.Name = "Character_toPAGE1_IMAGE"
  2004. Character_toPAGE1_IMAGE_4.Parent = Others_backPAGE2
  2005. Character_toPAGE1_IMAGE_4.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  2006. Character_toPAGE1_IMAGE_4.BorderSizePixel = 0
  2007. Character_toPAGE1_IMAGE_4.Position = UDim2.new(-0.400293052, 0, 0, 0)
  2008. Character_toPAGE1_IMAGE_4.Size = UDim2.new(0, 25, 0, 25)
  2009. Character_toPAGE1_IMAGE_4.Image = "http://www.roblox.com/asset/?id=1282894968"
  2010.  
  2011. Games.Name = "Games"
  2012. Games.Parent = Pages
  2013. Games.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2014. Games.BorderSizePixel = 0
  2015. Games.Position = UDim2.new(1, 0, 0, 0)
  2016. Games.Size = UDim2.new(1, 0, 1, 0)
  2017.  
  2018. Games_IMAGE.Name = "Games_IMAGE"
  2019. Games_IMAGE.Parent = Games
  2020. Games_IMAGE.BackgroundColor3 = Color3.new(1, 1, 1)
  2021. Games_IMAGE.BackgroundTransparency = 1
  2022. Games_IMAGE.Position = UDim2.new(0.0679230243, 0, 0.109824568, 0)
  2023. Games_IMAGE.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
  2024. Games_IMAGE.Image = "http://www.roblox.com/asset/?id=1281454262"
  2025.  
  2026. GamesText.Name = "GamesText"
  2027. GamesText.Parent = Games
  2028. GamesText.BackgroundColor3 = Color3.new(1, 1, 1)
  2029. GamesText.BackgroundTransparency = 1
  2030. GamesText.Position = UDim2.new(0.158487067, 0, 0.109824568, 0)
  2031. GamesText.Size = UDim2.new(0.65658927, 0, 0.175719291, 0)
  2032. GamesText.Font = Enum.Font.SourceSansItalic
  2033. GamesText.FontSize = Enum.FontSize.Size24
  2034. GamesText.Text = "Not a completed part, I will be updating with more games."
  2035. GamesText.TextSize = 19
  2036. GamesText.TextWrapped = true
  2037.  
  2038. Games_TITLE.Name = "Games_TITLE"
  2039. Games_TITLE.Parent = Games
  2040. Games_TITLE.BackgroundColor3 = Color3.new(1, 1, 1)
  2041. Games_TITLE.BackgroundTransparency = 1
  2042. Games_TITLE.Position = UDim2.new(0.226410091, 0, 0, 0)
  2043. Games_TITLE.Size = UDim2.new(0.522657692, 0, 0.1364429, 0)
  2044. Games_TITLE.Font = Enum.Font.SourceSansBold
  2045. Games_TITLE.FontSize = Enum.FontSize.Size28
  2046. Games_TITLE.Text = "Games"
  2047. Games_TITLE.TextSize = 25
  2048.  
  2049. Games_IMAGE2.Name = "Games_IMAGE2"
  2050. Games_IMAGE2.Parent = Games
  2051. Games_IMAGE2.BackgroundColor3 = Color3.new(1, 1, 1)
  2052. Games_IMAGE2.BackgroundTransparency = 1
  2053. Games_IMAGE2.Position = UDim2.new(0.815076292, 0, 0.109824568, 0)
  2054. Games_IMAGE2.Size = UDim2.new(0.0908969939, 0, 0.175596073, 0)
  2055. Games_IMAGE2.Image = "http://www.roblox.com/asset/?id=1281454262"
  2056.  
  2057. SwordFightingTournament.Name = "SwordFightingTournament"
  2058. SwordFightingTournament.Parent = Games
  2059. SwordFightingTournament.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  2060. SwordFightingTournament.BorderSizePixel = 0
  2061. SwordFightingTournament.Position = UDim2.new(0.350935638, 0, 0.329473704, 0)
  2062. SwordFightingTournament.Size = UDim2.new(0.283012629, 0, 0.109824568, 0)
  2063. SwordFightingTournament.Font = Enum.Font.SourceSans
  2064. SwordFightingTournament.FontSize = Enum.FontSize.Size14
  2065. SwordFightingTournament.Text = "Sword Fighting Tournament"
  2066. SwordFightingTournament.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2067. SwordFightingTournament.TextScaled = true
  2068. SwordFightingTournament.TextSize = 14
  2069. SwordFightingTournament.TextWrapped = true
  2070.  
  2071. PlatesOfFateMayhem.Name = "PlatesOfFateMayhem"
  2072. PlatesOfFateMayhem.Parent = Games
  2073. PlatesOfFateMayhem.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  2074. PlatesOfFateMayhem.BorderSizePixel = 0
  2075. PlatesOfFateMayhem.Position = UDim2.new(0.350935638, 0, 0.483228087, 0)
  2076. PlatesOfFateMayhem.Size = UDim2.new(0.283012629, 0, 0.109824568, 0)
  2077. PlatesOfFateMayhem.Font = Enum.Font.SourceSans
  2078. PlatesOfFateMayhem.FontSize = Enum.FontSize.Size14
  2079. PlatesOfFateMayhem.Text = "Plates of Fate: Mayhem"
  2080. PlatesOfFateMayhem.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2081. PlatesOfFateMayhem.TextScaled = true
  2082. PlatesOfFateMayhem.TextSize = 14
  2083. PlatesOfFateMayhem.TextWrapped = true
  2084.  
  2085. GamesText2.Name = "GamesText2"
  2086. GamesText2.Parent = Games
  2087. GamesText2.BackgroundColor3 = Color3.new(1, 1, 1)
  2088. GamesText2.BackgroundTransparency = 1
  2089. GamesText2.Position = UDim2.new(0.0679230243, 0, 0.768771946, 0)
  2090. GamesText2.Size = UDim2.new(0.871678829, 0, 0.175719291, 0)
  2091. GamesText2.Font = Enum.Font.SourceSansItalic
  2092. GamesText2.FontSize = Enum.FontSize.Size24
  2093. GamesText2.Text = "Since games update, buttons can sometimes not work. If they do not work, please let me know so I can update."
  2094. GamesText2.TextSize = 19
  2095. GamesText2.TextWrapped = true
  2096.  
  2097. Frappe.Name = "Frappe"
  2098. Frappe.Parent = Games
  2099. Frappe.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  2100. Frappe.BorderSizePixel = 0
  2101. Frappe.Position = UDim2.new(0.350935638, 0, 0.636982441, 0)
  2102. Frappe.Size = UDim2.new(0.283012629, 0, 0.109824568, 0)
  2103. Frappe.Font = Enum.Font.SourceSans
  2104. Frappe.FontSize = Enum.FontSize.Size14
  2105. Frappe.Text = "Frappe"
  2106. Frappe.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2107. Frappe.TextScaled = true
  2108. Frappe.TextSize = 14
  2109. Frappe.TextWrapped = true
  2110.  
  2111. Frappe_2.Name = "Frappe"
  2112. Frappe_2.Parent = Games
  2113. Frappe_2.BackgroundColor3 = Color3.new(0.203922, 0.286275, 0.368627)
  2114. Frappe_2.BorderSizePixel = 0
  2115. Frappe_2.Position = UDim2.new(0.667909801, 0, 0.329473704, 0)
  2116. Frappe_2.Size = UDim2.new(0.283012629, 0, 0.109824568, 0)
  2117. Frappe_2.Font = Enum.Font.SourceSans
  2118. Frappe_2.FontSize = Enum.FontSize.Size14
  2119. Frappe_2.Text = "Frappe"
  2120. Frappe_2.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2121. Frappe_2.TextScaled = true
  2122. Frappe_2.TextSize = 14
  2123. Frappe_2.TextWrapped = true
  2124.  
  2125. MenuFrame.Name = "MenuFrame"
  2126. MenuFrame.Parent = MainFrame
  2127. MenuFrame.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
  2128. MenuFrame.BorderSizePixel = 0
  2129. MenuFrame.Position = UDim2.new(-0.38499999, 0, 0.075000003, 0)
  2130. MenuFrame.Size = UDim2.new(0, 170, 0, 271)
  2131.  
  2132. Welcome.Name = "Welcome"
  2133. Welcome.Parent = MenuFrame
  2134. Welcome.BackgroundColor3 = Color3.new(1, 1, 1)
  2135. Welcome.BackgroundTransparency = 1
  2136. Welcome.Position = UDim2.new(0.0294333119, 0, 0.0184797049, 0)
  2137. Welcome.Size = UDim2.new(0.941865981, 0, 0.0739188194, 0)
  2138. Welcome.Font = Enum.Font.SourceSansLight
  2139. Welcome.FontSize = Enum.FontSize.Size14
  2140. Welcome.Text = "Welcome,"
  2141. Welcome.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2142. Welcome.TextScaled = true
  2143. Welcome.TextSize = 14
  2144. Welcome.TextWrapped = true
  2145.  
  2146. NameOfPlayer.Name = "NameOfPlayer"
  2147. NameOfPlayer.Parent = MenuFrame
  2148. NameOfPlayer.BackgroundColor3 = Color3.new(1, 1, 1)
  2149. NameOfPlayer.BackgroundTransparency = 1
  2150. NameOfPlayer.Position = UDim2.new(0, 0, 0.0923985243, 0)
  2151. NameOfPlayer.Size = UDim2.new(0.971299291, 0, 0.0739188194, 0)
  2152. NameOfPlayer.Font = Enum.Font.SourceSansItalic
  2153. NameOfPlayer.FontSize = Enum.FontSize.Size14
  2154. NameOfPlayer.Text = "PlayerName"
  2155. NameOfPlayer.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2156. NameOfPlayer.TextScaled = true
  2157. NameOfPlayer.TextSize = 14
  2158. NameOfPlayer.TextWrapped = true
  2159.  
  2160. T_Information.Name = "T_Information"
  2161. T_Information.Parent = MenuFrame
  2162. T_Information.BackgroundColor3 = Color3.new(0.584314, 0.647059, 0.65098)
  2163. T_Information.BorderSizePixel = 0
  2164. T_Information.Position = UDim2.new(0, 0, 0.221756458, 0)
  2165. T_Information.Size = UDim2.new(1.00073266, 0, 0.0923985243, 0)
  2166. T_Information.Font = Enum.Font.SourceSans
  2167. T_Information.FontSize = Enum.FontSize.Size18
  2168. T_Information.Text = "Information"
  2169. T_Information.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2170. T_Information.TextSize = 16
  2171. T_Information.TextXAlignment = Enum.TextXAlignment.Left
  2172.  
  2173. T_InfoImage.Name = "T_InfoImage"
  2174. T_InfoImage.Parent = T_Information
  2175. T_InfoImage.BackgroundColor3 = Color3.new(1, 1, 1)
  2176. T_InfoImage.BackgroundTransparency = 1
  2177. T_InfoImage.Position = UDim2.new(0.79469943, 0, -0.400639981, 0)
  2178. T_InfoImage.Size = UDim2.new(0.176599875, 0, 1.20192003, 0)
  2179. T_InfoImage.Image = "http://www.roblox.com/asset/?id=1281284684"
  2180.  
  2181. T_Character.Name = "T_Character"
  2182. T_Character.Parent = MenuFrame
  2183. T_Character.BackgroundColor3 = Color3.new(0.584314, 0.647059, 0.65098)
  2184. T_Character.BorderSizePixel = 0
  2185. T_Character.Position = UDim2.new(0, 0, 0.388073802, 0)
  2186. T_Character.Size = UDim2.new(1.00073266, 0, 0.0923985243, 0)
  2187. T_Character.Font = Enum.Font.SourceSans
  2188. T_Character.FontSize = Enum.FontSize.Size18
  2189. T_Character.Text = "Character"
  2190. T_Character.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2191. T_Character.TextSize = 16
  2192. T_Character.TextXAlignment = Enum.TextXAlignment.Left
  2193.  
  2194. T_CharImage.Name = "T_CharImage"
  2195. T_CharImage.Parent = T_Character
  2196. T_CharImage.BackgroundColor3 = Color3.new(1, 1, 1)
  2197. T_CharImage.BackgroundTransparency = 1
  2198. T_CharImage.Position = UDim2.new(0.79469943, 0, -0.400639981, 0)
  2199. T_CharImage.Size = UDim2.new(0.176599875, 0, 1.20192003, 0)
  2200. T_CharImage.Image = "http://www.roblox.com/asset/?id=1281299598"
  2201.  
  2202. T_Games.Name = "T_Games"
  2203. T_Games.Parent = MenuFrame
  2204. T_Games.BackgroundColor3 = Color3.new(0.584314, 0.647059, 0.65098)
  2205. T_Games.BorderSizePixel = 0
  2206. T_Games.Position = UDim2.new(0, 0, 0.498952031, 0)
  2207. T_Games.Size = UDim2.new(1.00073266, 0, 0.0923985243, 0)
  2208. T_Games.Font = Enum.Font.SourceSans
  2209. T_Games.FontSize = Enum.FontSize.Size18
  2210. T_Games.Text = "Games"
  2211. T_Games.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2212. T_Games.TextSize = 16
  2213. T_Games.TextXAlignment = Enum.TextXAlignment.Left
  2214.  
  2215. T_GameImage.Name = "T_GameImage"
  2216. T_GameImage.Parent = T_Games
  2217. T_GameImage.BackgroundColor3 = Color3.new(1, 1, 1)
  2218. T_GameImage.BackgroundTransparency = 1
  2219. T_GameImage.Position = UDim2.new(0.79469943, 0, -0.400639981, 0)
  2220. T_GameImage.Size = UDim2.new(0.176599875, 0, 1.20192003, 0)
  2221. T_GameImage.Image = "http://www.roblox.com/asset/?id=1281454262"
  2222.  
  2223. T_Others.Name = "T_Others"
  2224. T_Others.Parent = MenuFrame
  2225. T_Others.BackgroundColor3 = Color3.new(0.584314, 0.647059, 0.65098)
  2226. T_Others.BorderSizePixel = 0
  2227. T_Others.Position = UDim2.new(0, 0, 0.60983026, 0)
  2228. T_Others.Size = UDim2.new(1.00073266, 0, 0.0923985243, 0)
  2229. T_Others.Font = Enum.Font.SourceSans
  2230. T_Others.FontSize = Enum.FontSize.Size18
  2231. T_Others.Text = "Others"
  2232. T_Others.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2233. T_Others.TextSize = 16
  2234. T_Others.TextXAlignment = Enum.TextXAlignment.Left
  2235.  
  2236. T_OtherImage.Name = "T_OtherImage"
  2237. T_OtherImage.Parent = T_Others
  2238. T_OtherImage.BackgroundColor3 = Color3.new(1, 1, 1)
  2239. T_OtherImage.BackgroundTransparency = 1
  2240. T_OtherImage.Position = UDim2.new(0.795000017, 0, -0.351000011, 0)
  2241. T_OtherImage.Size = UDim2.new(0, 30, 0, 30)
  2242. T_OtherImage.Image = "http://www.roblox.com/asset/?id=1281476978"
  2243.  
  2244. T_Extra.Name = "T_Extra"
  2245. T_Extra.Parent = MenuFrame
  2246. T_Extra.BackgroundColor3 = Color3.new(0.584314, 0.647059, 0.65098)
  2247. T_Extra.BorderSizePixel = 0
  2248. T_Extra.Position = UDim2.new(0, 0, 0.720708489, 0)
  2249. T_Extra.Size = UDim2.new(1.00073266, 0, 0.0923985243, 0)
  2250. T_Extra.Font = Enum.Font.SourceSans
  2251. T_Extra.FontSize = Enum.FontSize.Size18
  2252. T_Extra.Text = "Extra"
  2253. T_Extra.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2254. T_Extra.TextSize = 16
  2255. T_Extra.TextXAlignment = Enum.TextXAlignment.Left
  2256.  
  2257. T_ExtraImage.Name = "T_ExtraImage"
  2258. T_ExtraImage.Parent = T_Extra
  2259. T_ExtraImage.BackgroundColor3 = Color3.new(1, 1, 1)
  2260. T_ExtraImage.BackgroundTransparency = 1
  2261. T_ExtraImage.Position = UDim2.new(0.79469943, 0, -0.400639981, 0)
  2262. T_ExtraImage.Size = UDim2.new(0.176599875, 0, 1.20192003, 0)
  2263. T_ExtraImage.Image = "http://www.roblox.com/asset/?id=1281477720"
  2264.  
  2265. DeleteGUI.Name = "DeleteGUI"
  2266. DeleteGUI.Parent = MenuFrame
  2267. DeleteGUI.BackgroundColor3 = Color3.new(0.752941, 0.223529, 0.168627)
  2268. DeleteGUI.BorderSizePixel = 0
  2269. DeleteGUI.Position = UDim2.new(0, 0, 0.887025833, 0)
  2270. DeleteGUI.Size = UDim2.new(1.00073266, 0, 0.0923985243, 0)
  2271. DeleteGUI.Font = Enum.Font.SourceSans
  2272. DeleteGUI.FontSize = Enum.FontSize.Size18
  2273. DeleteGUI.Text = "Delete GUI"
  2274. DeleteGUI.TextColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  2275. DeleteGUI.TextSize = 16
  2276. DeleteGUI.TextXAlignment = Enum.TextXAlignment.Left
  2277.  
  2278. DELETEIMAGE.Name = "DELETEIMAGE"
  2279. DELETEIMAGE.Parent = DeleteGUI
  2280. DELETEIMAGE.BackgroundColor3 = Color3.new(1, 1, 1)
  2281. DELETEIMAGE.BackgroundTransparency = 1
  2282. DELETEIMAGE.Position = UDim2.new(0.853566051, 0, 0, 0)
  2283. DELETEIMAGE.Size = UDim2.new(0.14716655, 0, 1.00160003, 0)
  2284. DELETEIMAGE.Image = "http://www.roblox.com/asset/?id=1281475635"
  2285.  
  2286. Darkness.Name = "Darkness"
  2287. Darkness.Parent = MainFrame
  2288. Darkness.BackgroundColor3 = Color3.new(0.180392, 0.192157, 0.176471)
  2289. Darkness.BackgroundTransparency = 0.8
  2290. Darkness.BorderSizePixel = 0
  2291. Darkness.Position = UDim2.new(0.38499999, 0, 0.075000003, 0)
  2292. Darkness.Size = UDim2.new(0, 272, 0, 271)
  2293. Darkness.Visible = false
  2294. Darkness.ZIndex = 7
  2295. Darkness.Font = Enum.Font.SourceSans
  2296. Darkness.FontSize = Enum.FontSize.Size14
  2297. Darkness.Text = ""
  2298. Darkness.TextSize = 14
  2299.  
  2300. -----------------------------------------------------------------
  2301. -----------------------------------------------------------------
  2302. NameOfPlayer.Text = game.Players.LocalPlayer.Name
  2303. if game.Workspace.FilteringEnabled == true then
  2304. Image_FE_ENABLED.Visible = true
  2305. Image_FE_DISABLED.Visible = false
  2306. Text_FE_ENABLED.Visible = true
  2307. Text_FE_DISABLED.Visible = false
  2308. else
  2309. Image_FE_ENABLED.Visible = false
  2310. Image_FE_DISABLED.Visible = true
  2311. Text_FE_ENABLED.Visible = false
  2312. Text_FE_DISABLED.Visible = true
  2313. end
  2314.  
  2315. function GetPlayer(String) -- Credit to Timeless/xFunnieuss
  2316. local Found = {}
  2317. local strl = String:lower()
  2318. if strl == "all" then
  2319. for i,v in pairs(game.Players:GetPlayers()) do
  2320. table.insert(Found,v)
  2321. end
  2322. elseif strl == "others" then
  2323. for i,v in pairs(game.Players:GetPlayers()) do
  2324. if v.Name ~= game.Players.LocalPlayer.Name then
  2325. table.insert(Found,v)
  2326. end
  2327. end
  2328. else
  2329. for i,v in pairs(game.Players:GetPlayers()) do
  2330. if v.Name:lower():sub(1, #String) == String:lower() then
  2331. table.insert(Found,v)
  2332. end
  2333. end
  2334. end
  2335. return Found
  2336. end
  2337.  
  2338. OpenMenu.MouseButton1Click:connect(function()
  2339. MenuFrame:TweenPosition(UDim2.new(0, 0, 0.075, 0), "Out", "Sine", 0.7)
  2340. MenuEnterFrame:TweenPosition(UDim2.new(0, 170, 0.075, 0), "Out", "Sine", 0.7)
  2341. Pages:TweenPosition(UDim2.new(0, 170, 0.223, 0), "Out", "Sine", 0.7)
  2342. wait(0.7)
  2343. Darkness.Visible = true
  2344. Darkness.BackgroundTransparency = 0.8
  2345. end)
  2346.  
  2347. Darkness.MouseButton1Click:connect(function()
  2348. MenuFrame:TweenPosition(UDim2.new(-0.385, 0, 0.075, 0), "Out", "Sine", 0.7)
  2349. MenuEnterFrame:TweenPosition(UDim2.new(0, 0, 0.074, 0), "Out", "Sine", 0.7)
  2350. Pages:TweenPosition(UDim2.new(0, 0, 0.223, 0), "Out", "Sine", 0.7)
  2351. Darkness.Visible = false
  2352. end)
  2353.  
  2354. closedgui = true
  2355. CloseGUI.MouseButton1Click:connect(function()
  2356. wait(0.3)
  2357. if closedgui then
  2358. Pages.Position = UDim2.new(0, 0, 0.223, 0)
  2359. OpenMenu.Position = UDim2.new(0, 0, 0, 0)
  2360. MenuFrame.Position = UDim2.new(-0.38499999, 0, 0.075000003, 0)
  2361. MenuEnterFrame.Position = UDim2.new(0, 0, 0.0741975307, 0)
  2362. Darkness.Visible = false
  2363. Pages:TweenPosition(UDim2.new(0, 0, -0.786, 0), "Out", "Sine", 1.5)
  2364. OpenMenu:TweenPosition(UDim2.new(-0.102, 0, 0, 0), "Out", "Sine", 1.5)
  2365. wait(1.6)
  2366. MenuFrame.Position = UDim2.new(-0.38499999, 0, 0.075000003, 0)
  2367. Darkness.Visible = false
  2368. MenuEnterFrame.Position = UDim2.new(0, 0, 0.0741975307, 0)
  2369. closedgui = false
  2370. else
  2371. Pages:TweenPosition(UDim2.new(0, 0, 0.223, 0), "Out", "Sine", 1.5)
  2372. wait(1.5)
  2373. OpenMenu:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2374. wait(0.6)
  2375. closedgui = true
  2376. end
  2377. end)
  2378.  
  2379. DeleteGUI.MouseButton1Click:connect(function()
  2380. game.CoreGui.OPFinality:Destroy()
  2381. end)
  2382.  
  2383. T_Character.MouseButton1Click:connect(function()
  2384. MenuFrame:TweenPosition(UDim2.new(-0.385, 0, 0.075, 0), "Out", "Sine", 0.5)
  2385. MenuEnterFrame:TweenPosition(UDim2.new(0, 0, 0.074, 0), "Out", "Sine", 0.5)
  2386. Pages:TweenPosition(UDim2.new(0, 0, 0.223, 0), "Out", "Sine", 0.5)
  2387. Darkness.Visible = false
  2388. wait(0.5)
  2389. Character_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2390. Extra_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2391. Extra_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2392. Games:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2393. Information:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2394. Others_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2395. Others_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2396. Others_3:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2397. wait(0.5)
  2398. Character_1:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2399. end)
  2400.  
  2401. T_Extra.MouseButton1Click:connect(function()
  2402. MenuFrame:TweenPosition(UDim2.new(-0.385, 0, 0.075, 0), "Out", "Sine", 0.5)
  2403. MenuEnterFrame:TweenPosition(UDim2.new(0, 0, 0.074, 0), "Out", "Sine", 0.5)
  2404. Pages:TweenPosition(UDim2.new(0, 0, 0.223, 0), "Out", "Sine", 0.5)
  2405. Darkness.Visible = false
  2406. wait(0.5)
  2407. Character_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2408. Character_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2409. Extra_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2410. Games:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2411. Information:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2412. Others_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2413. Others_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2414. Others_3:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2415. wait(0.5)
  2416. Extra_1:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2417. end)
  2418.  
  2419. T_Games.MouseButton1Click:connect(function()
  2420. MenuFrame:TweenPosition(UDim2.new(-0.385, 0, 0.075, 0), "Out", "Sine", 0.5)
  2421. MenuEnterFrame:TweenPosition(UDim2.new(0, 0, 0.074, 0), "Out", "Sine", 0.5)
  2422. Pages:TweenPosition(UDim2.new(0, 0, 0.223, 0), "Out", "Sine", 0.5)
  2423. Darkness.Visible = false
  2424. wait(0.5)
  2425. Character_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2426. Character_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2427. Extra_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2428. Extra_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2429. Information:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2430. Others_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2431. Others_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2432. Others_3:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2433. wait(0.5)
  2434. Games:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2435. end)
  2436.  
  2437. T_Information.MouseButton1Click:connect(function()
  2438. MenuFrame:TweenPosition(UDim2.new(-0.385, 0, 0.075, 0), "Out", "Sine", 0.5)
  2439. MenuEnterFrame:TweenPosition(UDim2.new(0, 0, 0.074, 0), "Out", "Sine", 0.5)
  2440. Pages:TweenPosition(UDim2.new(0, 0, 0.223, 0), "Out", "Sine", 0.5)
  2441. Darkness.Visible = false
  2442. wait(0.5)
  2443. Character_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2444. Character_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2445. Extra_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2446. Games:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2447. Extra_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2448. Others_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2449. Others_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2450. Others_3:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2451. wait(0.5)
  2452. Information:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2453. end)
  2454.  
  2455. T_Others.MouseButton1Click:connect(function()
  2456. MenuFrame:TweenPosition(UDim2.new(-0.385, 0, 0.075, 0), "Out", "Sine", 0.5)
  2457. MenuEnterFrame:TweenPosition(UDim2.new(0, 0, 0.074, 0), "Out", "Sine", 0.5)
  2458. Pages:TweenPosition(UDim2.new(0, 0, 0.223, 0), "Out", "Sine", 0.5)
  2459. Darkness.Visible = false
  2460. wait(0.5)
  2461. Character_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2462. Character_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2463. Extra_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2464. Games:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2465. Information:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2466. Extra_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2467. Others_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2468. Others_3:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2469. wait(0.5)
  2470. Others_1:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2471. end)
  2472.  
  2473. Character_toPAGE2.MouseButton1Click:connect(function()
  2474. Character_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2475. wait(0.5)
  2476. Character_2:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2477. end)
  2478. Character_backPAGE1.MouseButton1Click:connect(function()
  2479. Character_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2480. wait(0.5)
  2481. Character_1:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2482. end)
  2483. Extra_toPAGE2.MouseButton1Click:connect(function()
  2484. Extra_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2485. wait(0.5)
  2486. Extra_2:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2487. end)
  2488. Extra_backPAGE1.MouseButton1Click:connect(function()
  2489. Extra_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2490. wait(0.5)
  2491. Extra_1:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2492. end)
  2493. Others_toPAGE2.MouseButton1Click:connect(function()
  2494. Others_1:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2495. wait(0.5)
  2496. Others_2:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2497. end)
  2498. Others_toPAGE3.MouseButton1Click:connect(function()
  2499. Others_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2500. wait(0.5)
  2501. Others_3:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2502. end)
  2503. Others_backPAGE1.MouseButton1Click:connect(function()
  2504. Others_2:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2505. wait(0.5)
  2506. Others_1:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2507. end)
  2508. Others_backPAGE2.MouseButton1Click:connect(function()
  2509. Others_3:TweenPosition(UDim2.new(1, 0, 0, 0), "Out", "Sine", 0.5)
  2510. wait(0.5)
  2511. Others_2:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Sine", 0.5)
  2512. end)
  2513.  
  2514. -------------------------------------------------------------------------------
  2515. -------------------------------------------------------------------------------
  2516.  
  2517. HipHeight.MouseButton1Click:connect(function()
  2518. game.Players.LocalPlayer.Character.Humanoid.HipHeight = TXTBOX_Stats.Text
  2519. end)
  2520. Speed.MouseButton1Click:connect(function()
  2521. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = TXTBOX_Stats.Text
  2522. end)
  2523. JumpHeight.MouseButton1Click:connect(function()
  2524. game.Players.LocalPlayer.Character.Humanoid.JumpPower = TXTBOX_Stats.Text
  2525. end)
  2526. Chat.MouseButton1Click:connect(function()
  2527. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(TXTBOX_Chat.Text, "All")
  2528. end)
  2529. SpammingChar = false
  2530. Spam_2.MouseButton1Click:connect(function()
  2531. SpammingChar = not SpammingChar
  2532. end)
  2533.  
  2534. local flying = false
  2535. Fly.MouseButton1Click:connect(function()
  2536. flying = not flying
  2537. repeat wait()
  2538. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  2539. local mouse = game.Players.LocalPlayer:GetMouse()
  2540. repeat wait() until mouse
  2541. local plr = game.Players.LocalPlayer
  2542. local torso = plr.Character.Torso
  2543. local deb = true
  2544. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  2545. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  2546. local maxspeed = 80
  2547. local speed = 0
  2548. if flying then
  2549. Fly.BackgroundColor3 = Color3.new(0.201961, 0.837255, 0.711765)
  2550. else
  2551. Fly.BackgroundColor3 = Color3.new(0.101961, 0.737255, 0.611765)
  2552. end
  2553.  
  2554. function FlyFunction()
  2555. local bg = Instance.new("BodyGyro", torso)
  2556. bg.P = 9e4
  2557. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  2558. bg.cframe = torso.CFrame
  2559. local bv = Instance.new("BodyVelocity", torso)
  2560. bv.velocity = Vector3.new(0,0.1,0)
  2561. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2562. repeat wait()
  2563. plr.Character.Humanoid.PlatformStand = true
  2564. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  2565. speed = speed+.5+(speed/maxspeed)
  2566. if speed > maxspeed then
  2567. speed = maxspeed
  2568. end
  2569. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  2570. speed = speed-1
  2571. if speed < 0 then
  2572. speed = 0
  2573. end
  2574. end
  2575. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  2576. 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
  2577. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  2578. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  2579. 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
  2580. else
  2581. bv.velocity = Vector3.new(0,0.1,0)
  2582. end
  2583. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  2584. until not flying
  2585. ctrl = {f = 0, b = 0, l = 0, r = 0}
  2586. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  2587. speed = 0
  2588. bg:Destroy()
  2589. bv:Destroy()
  2590. plr.Character.Humanoid.PlatformStand = false
  2591. end
  2592. mouse.KeyDown:connect(function(key)
  2593. if key:lower() == "w" then
  2594. ctrl.f = 1
  2595. elseif key:lower() == "s" then
  2596. ctrl.b = -1
  2597. elseif key:lower() == "a" then
  2598. ctrl.l = -1
  2599. elseif key:lower() == "d" then
  2600. ctrl.r = 1
  2601. end
  2602. end)
  2603. mouse.KeyUp:connect(function(key)
  2604. if key:lower() == "w" then
  2605. ctrl.f = 0
  2606. elseif key:lower() == "s" then
  2607. ctrl.b = 0
  2608. elseif key:lower() == "a" then
  2609. ctrl.l = 0
  2610. elseif key:lower() == "d" then
  2611. ctrl.r = 0
  2612. end
  2613. end)
  2614. FlyFunction()
  2615. end)
  2616.  
  2617. clip = true
  2618. Noclip.MouseButton1Click:connect(function()
  2619. clip = not clip
  2620. game:GetService('RunService').Stepped:connect(function()
  2621. if not clip then
  2622. Noclip.BackgroundColor3 = Color3.new(0.201961, 0.837255, 0.711765)
  2623. game.Players.LocalPlayer.Character.Head.CanCollide = false
  2624. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  2625. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  2626. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  2627. else
  2628. Noclip.BackgroundColor3 = Color3.new(0.101961, 0.737255, 0.611765)
  2629. end
  2630. end)
  2631. end)
  2632.  
  2633. local Anim = Instance.new("Animation")
  2634. Anim.AnimationId = "rbxassetid://33169583"
  2635. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2636. local armsareoff = false
  2637. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2638. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2639. armsareoff = false
  2640. armsoff.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2641. end)
  2642. armsoff.MouseButton1Click:connect(function()
  2643. armsareoff = not armsareoff
  2644. if armsareoff then
  2645. armsoff.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2646. while wait() do
  2647. if track.IsPlaying == false then
  2648. if armsareoff then
  2649. track:Play(.1, 1, 1e6)
  2650. end
  2651. end
  2652. end
  2653. else
  2654. track:Stop()
  2655. armsoff.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2656. end
  2657. end)
  2658.  
  2659. local Anim = Instance.new("Animation")
  2660. Anim.AnimationId = "rbxassetid://121572214"
  2661. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2662. headfloatACTIVE = false
  2663. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2664. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2665. headfloatACTIVE = false
  2666. headfloat.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2667. end)
  2668. headfloat.MouseButton1Click:connect(function()
  2669. headfloatACTIVE = not headfloatACTIVE
  2670. if headfloatACTIVE then
  2671. headfloat.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2672. while wait() do
  2673. if track.IsPlaying == false then
  2674. if headfloatACTIVE then
  2675. track:Play(.1, 1, 1)
  2676. end
  2677. end
  2678. end
  2679. else
  2680. track:Stop()
  2681. headfloat.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2682. end
  2683. end)
  2684.  
  2685. local Anim = Instance.new("Animation")
  2686. Anim.AnimationId = "rbxassetid://35154961"
  2687. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2688. local headthrowACTIVE = false
  2689. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2690. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2691. headthrowACTIVE = false
  2692. headthrow.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2693. end)
  2694. headthrow.MouseButton1Click:connect(function()
  2695. headthrowACTIVE = not headthrowACTIVE
  2696. if headthrowACTIVE then
  2697. headthrow.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2698. while wait() do
  2699. if track.IsPlaying == false then
  2700. if headthrowACTIVE then
  2701. track:Play(.1, 1, 1)
  2702. end
  2703. end
  2704. end
  2705. else
  2706. track:Stop()
  2707. headthrow.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2708. end
  2709. end)
  2710.  
  2711. local Anim = Instance.new("Animation")
  2712. Anim.AnimationId = "rbxassetid://35154961"
  2713. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2714. local loopheadACTIVE = false
  2715. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2716. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2717. loopheadACTIVE = false
  2718. loophead.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2719. end)
  2720. loophead.MouseButton1Click:connect(function()
  2721. loopheadACTIVE = not loopheadACTIVE
  2722. if loopheadACTIVE then
  2723. loophead.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2724. while wait() do
  2725. if track.IsPlaying == false then
  2726. if loopheadACTIVE then
  2727. track:Play(.1, 1, 1e6)
  2728. end
  2729. end
  2730. end
  2731. else
  2732. track:Stop()
  2733. loophead.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2734. end
  2735. end)
  2736.  
  2737. local Anim = Instance.new("Animation")
  2738. Anim.AnimationId = "rbxassetid://313762630"
  2739. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2740. local levitateACTIVE = false
  2741. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2742. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2743. levitateACTIVE = false
  2744. levitate.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2745. end)
  2746. levitate.MouseButton1Click:connect(function()
  2747. levitateACTIVE = not levitateACTIVE
  2748. if levitateACTIVE then
  2749. levitate.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2750. while wait() do
  2751. if track.IsPlaying == false then
  2752. if levitateACTIVE then
  2753. track:Play(.1, 1, 1)
  2754. end
  2755. end
  2756. end
  2757. else
  2758. track:Stop()
  2759. levitate.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2760. end
  2761. end)
  2762.  
  2763. local Anim = Instance.new("Animation")
  2764. Anim.AnimationId = "rbxassetid://282574440"
  2765. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2766. local crawlACTIVE = false
  2767. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2768. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2769. crawlACTIVE = false
  2770. crawl.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2771. end)
  2772. crawl.MouseButton1Click:connect(function()
  2773. crawlACTIVE = not crawlACTIVE
  2774. if crawlACTIVE then
  2775. crawl.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2776. while wait() do
  2777. if track.IsPlaying == false then
  2778. if crawlACTIVE then
  2779. track:Play(.1, 1, 1)
  2780. end
  2781. end
  2782. end
  2783. else
  2784. track:Stop()
  2785. crawl.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2786. end
  2787. end)
  2788.  
  2789. local Anim = Instance.new("Animation")
  2790. Anim.AnimationId = "rbxassetid://184574340"
  2791. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2792. local jumplandACTIVE = false
  2793. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2794. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2795. jumplandACTIVE = false
  2796. jumpland.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2797. end)
  2798. jumpland.MouseButton1Click:connect(function()
  2799. jumplandACTIVE = not jumplandACTIVE
  2800. if jumplandACTIVE then
  2801. jumpland.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2802. while wait() do
  2803. if track.IsPlaying == false then
  2804. if jumplandACTIVE then
  2805. track:Play(.1, 1, 1)
  2806. end
  2807. end
  2808. end
  2809. else
  2810. track:Stop()
  2811. jumpland.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2812. end
  2813. end)
  2814.  
  2815. local Anim = Instance.new("Animation")
  2816. Anim.AnimationId = "rbxassetid://126753849"
  2817. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2818. local punchesACTIVE = false
  2819. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2820. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2821. punchesACTIVE = false
  2822. punches.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2823. end)
  2824. punches.MouseButton1Click:connect(function()
  2825. punchesACTIVE = not punchesACTIVE
  2826. if punchesACTIVE then
  2827. punches.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2828. while wait() do
  2829. if track.IsPlaying == false then
  2830. if punchesACTIVE then
  2831. track:Play(.1, 1, 1)
  2832. end
  2833. end
  2834. end
  2835. else
  2836. track:Stop()
  2837. punches.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2838. end
  2839. end)
  2840.  
  2841. local Anim = Instance.new("Animation")
  2842. Anim.AnimationId = "rbxassetid://204062532"
  2843. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2844. local swingACTIVE = false
  2845. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2846. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2847. swingACTIVE = false
  2848. swing.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2849. end)
  2850. swing.MouseButton1Click:connect(function()
  2851. swingACTIVE = not swingACTIVE
  2852. if swingACTIVE then
  2853. swing.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2854. while wait() do
  2855. if track.IsPlaying == false then
  2856. if swingACTIVE then
  2857. track:Play(.1, 1, 1)
  2858. end
  2859. end
  2860. end
  2861. else
  2862. track:Stop()
  2863. swing.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2864. end
  2865. end)
  2866.  
  2867. local Anim = Instance.new("Animation")
  2868. Anim.AnimationId = "rbxassetid://204295235"
  2869. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2870. local swordstrikeACTIVE = false
  2871. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2872. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2873. swordstrikeACTIVE = false
  2874. swordstrike.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2875. end)
  2876. swordstrike.MouseButton1Click:connect(function()
  2877. swordstrikeACTIVE = not swordstrikeACTIVE
  2878. if swordstrikeACTIVE then
  2879. swordstrike.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2880. while wait() do
  2881. if track.IsPlaying == false then
  2882. if swordstrikeACTIVE then
  2883. track:Play(.1, 1, 1)
  2884. end
  2885. end
  2886. end
  2887. else
  2888. track:Stop()
  2889. swordstrike.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2890. end
  2891. end)
  2892.  
  2893. local Anim = Instance.new("Animation")
  2894. Anim.AnimationId = "rbxassetid://45834924"
  2895. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2896. local happyACTIVE = false
  2897. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2898. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2899. happyACTIVE = false
  2900. happy.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2901. end)
  2902. happy.MouseButton1Click:connect(function()
  2903. happyACTIVE = not happyACTIVE
  2904. if happyACTIVE then
  2905. happy.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2906. while wait() do
  2907. if track.IsPlaying == false then
  2908. if happyACTIVE then
  2909. track:Play(.1, 1, 1)
  2910. end
  2911. end
  2912. end
  2913. else
  2914. track:Stop()
  2915. happy.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2916. end
  2917. end)
  2918.  
  2919. local Anim = Instance.new("Animation")
  2920. Anim.AnimationId = "rbxassetid://33796059"
  2921. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2922. local insaneACTIVE = false
  2923. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2924. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2925. insaneACTIVE = false
  2926. insane.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2927. end)
  2928. insane.MouseButton1Click:connect(function()
  2929. insaneACTIVE = not insaneACTIVE
  2930. if insaneACTIVE then
  2931. insane.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2932. while wait() do
  2933. if track.IsPlaying == false then
  2934. if insaneACTIVE then
  2935. track:Play(.1, 1, 1e6)
  2936. end
  2937. end
  2938. end
  2939. else
  2940. track:Stop()
  2941. insane.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2942. end
  2943. end)
  2944.  
  2945. local Anim = Instance.new("Animation")
  2946. Anim.AnimationId = "rbxassetid://429703734"
  2947. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2948. local movingdanceACTIVE = false
  2949. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2950. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2951. movingdanceACTIVE = false
  2952. movingdance.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2953. end)
  2954. movingdance.MouseButton1Click:connect(function()
  2955. movingdanceACTIVE = not movingdanceACTIVE
  2956. if movingdanceACTIVE then
  2957. movingdance.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2958. while wait() do
  2959. if track.IsPlaying == false then
  2960. if movingdanceACTIVE then
  2961. track:Play(.1, 1, 1)
  2962. end
  2963. end
  2964. end
  2965. else
  2966. track:Stop()
  2967. movingdance.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2968. end
  2969. end)
  2970.  
  2971. local Anim = Instance.new("Animation")
  2972. Anim.AnimationId = "rbxassetid://35654637"
  2973. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  2974. local normalACTIVE = false
  2975. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  2976. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  2977. normalACTIVE = false
  2978. normal.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2979. end)
  2980. normal.MouseButton1Click:connect(function()
  2981. normalACTIVE = not normalACTIVE
  2982. if normalACTIVE then
  2983. normal.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  2984. while wait() do
  2985. if track.IsPlaying == false then
  2986. if normalACTIVE then
  2987. track:Play(.1, 1, 1)
  2988. end
  2989. end
  2990. end
  2991. else
  2992. track:Stop()
  2993. normal.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  2994. end
  2995. end)
  2996.  
  2997. local Anim = Instance.new("Animation")
  2998. Anim.AnimationId = "rbxassetid://186934910"
  2999. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3000. local spindanceACTIVE = false
  3001. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3002. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3003. spindanceACTIVE = false
  3004. spindance.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  3005. end)
  3006. spindance.MouseButton1Click:connect(function()
  3007. spindanceACTIVE = not spindanceACTIVE
  3008. if spindanceACTIVE then
  3009. spindance.BackgroundColor3 = Color3.new(0.851961, 0.694118, 0.333333)
  3010. while wait() do
  3011. if track.IsPlaying == false then
  3012. if spindanceACTIVE then
  3013. track:Play(.1, 1, 1)
  3014. end
  3015. end
  3016. end
  3017. else
  3018. track:Stop()
  3019. spindance.BackgroundColor3 = Color3.new(0.901961, 0.494118, 0.133333)
  3020. end
  3021. end)
  3022.  
  3023. local Anim = Instance.new("Animation")
  3024. Anim.AnimationId = "rbxassetid://215384594"
  3025. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3026. local CloneIllusionACTIVE = false
  3027. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3028. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3029. CloneIllusionACTIVE = false
  3030. CloneIllusion.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  3031. end)
  3032. CloneIllusion.MouseButton1Click:connect(function()
  3033. CloneIllusionACTIVE = not CloneIllusionACTIVE
  3034. if CloneIllusionACTIVE then
  3035. CloneIllusion.BackgroundColor3 = Color3.new(0.992941, 0.811765, 0.2705882)
  3036. while wait() do
  3037. if track.IsPlaying == false then
  3038. if CloneIllusionACTIVE then
  3039. track:Play(.1, 1, 1e6)
  3040. end
  3041. end
  3042. end
  3043. else
  3044. track:Stop()
  3045. CloneIllusion.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  3046. end
  3047. end)
  3048.  
  3049. spinning = false
  3050. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3051. spinning = false
  3052. CoolSpin.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  3053. end)
  3054. CoolSpin.MouseButton1Click:connect(function()
  3055. spinning = not spinning
  3056. if spinning then
  3057. local p = Instance.new("RocketPropulsion")
  3058. p.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3059. p.Name = "CrazySpin"
  3060. p.Target = game.Players.LocalPlayer.Character["Left Arm"]
  3061. p:Fire()
  3062. CoolSpin.BackgroundColor3 = Color3.new(0.992941, 0.811765, 0.2705882)
  3063. else
  3064. game.Players.LocalPlayer.Character.HumanoidRootPart.CrazySpin:Destroy()
  3065. CoolSpin.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  3066. end
  3067. end)
  3068.  
  3069. local Anim = Instance.new("Animation")
  3070. Anim.AnimationId = "rbxassetid://180612465"
  3071. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3072. local ScaredACTIVE = false
  3073. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3074. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3075. ScaredACTIVE = false
  3076. CrouchRocket.BackgroundColor3 = Color3.new(0.952941, 0.711765, 0.1705882)
  3077. end)
  3078. CrouchRocket.MouseButton1Click:connect(function()
  3079. ScaredACTIVE = not ScaredACTIVE
  3080. if ScaredACTIVE then
  3081. local u = Instance.new("RocketPropulsion")
  3082. u.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3083. u.Name = "CrouchRocket"
  3084. u.Target = game.Players.LocalPlayer.Character.Head
  3085. u:Fire()
  3086. CrouchRocket.BackgroundColor3 = Color3.new(0.992941, 0.811765, 0.2705882)
  3087. while wait() do
  3088. if track.IsPlaying == false then
  3089. if ScaredACTIVE then
  3090. track:Play(.1, 1, 1)
  3091. end
  3092. end
  3093. end
  3094. else
  3095. track:Stop()
  3096. CrouchRocket.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  3097. game.Players.LocalPlayer.Character.HumanoidRootPart.CrouchRocket:Destroy()
  3098. end
  3099. end)
  3100.  
  3101. local Anim = Instance.new("Animation")
  3102. Anim.AnimationId = "rbxassetid://184574340"
  3103. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3104. local jumprocketnow = false
  3105. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3106. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3107. jumprocketnow = false
  3108. JumpRocket.BackgroundColor3 = Color3.new(0.952941, 0.711765, 0.1705882)
  3109. end)
  3110. JumpRocket.MouseButton1Click:connect(function()
  3111. jumprocketnow = not jumprocketnow
  3112. if jumprocketnow then
  3113. local u = Instance.new("RocketPropulsion")
  3114. u.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3115. u.Name = "JumpRocket"
  3116. u.Target = game.Players.LocalPlayer.Character.Head
  3117. u:Fire()
  3118. JumpRocket.BackgroundColor3 = Color3.new(0.992941, 0.811765, 0.2705882)
  3119. while wait() do
  3120. if track.IsPlaying == false then
  3121. if jumprocketnow then
  3122. track:Play(.1, 1, 1)
  3123. end
  3124. end
  3125. end
  3126. else
  3127. track:Stop()
  3128. JumpRocket.BackgroundColor3 = Color3.new(0.952941, 0.611765, 0.0705882)
  3129. game.Players.LocalPlayer.Character.HumanoidRootPart.JumpRocket:Destroy()
  3130. end
  3131. end)
  3132.  
  3133. local Anim = Instance.new("Animation")
  3134. Anim.AnimationId = "rbxassetid://126753849"
  3135. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3136. local RapidPunchACTIVE = false
  3137. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3138. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3139. RapidPunchACTIVE = false
  3140. RapidPunch.BackgroundColor3 = Color3.new(0.0862745, 0.627451, 0.521569)
  3141. end)
  3142. RapidPunch.MouseButton1Click:connect(function()
  3143. RapidPunchACTIVE = not RapidPunchACTIVE
  3144. if RapidPunchACTIVE then
  3145. RapidPunch.BackgroundColor3 = Color3.new(0.1962745, 0.827451, 0.721569)
  3146. while wait() do
  3147. if track.IsPlaying == false then
  3148. if RapidPunchACTIVE then
  3149. track:Play(.1, 1, 10)
  3150. end
  3151. end
  3152. end
  3153. else
  3154. track:Stop()
  3155. RapidPunch.BackgroundColor3 = Color3.new(0.0862745, 0.627451, 0.521569)
  3156. end
  3157. end)
  3158.  
  3159. FEGodmode.MouseButton1Click:connect(function()
  3160. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  3161. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  3162. l.Parent = game.Players.LocalPlayer.Character
  3163. l.Name = "Humanoid"
  3164. wait(0.1)
  3165. game.Players.LocalPlayer.Character["1"]:Destroy()
  3166. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3167. game.Players.LocalPlayer.Character.Animate.Disabled = true
  3168. wait(0.1)
  3169. game.Players.LocalPlayer.Character.Animate.Disabled = false
  3170. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  3171. end)
  3172.  
  3173. NoLimbs.MouseButton1Click:connect(function()
  3174. game.Players.LocalPlayer.Character["Left Leg"]:Destroy()
  3175. game.Players.LocalPlayer.Character["Left Arm"]:Destroy()
  3176. game.Players.LocalPlayer.Character["Right Leg"]:Destroy()
  3177. game.Players.LocalPlayer.Character["Right Arm"]:Destroy()
  3178. end)
  3179.  
  3180. BrickHats.MouseButton1Click:connect(function()
  3181. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  3182. if (v:IsA("Accessory")) then
  3183. v.Handle.Mesh:Destroy()
  3184. end
  3185. end
  3186. end)
  3187.  
  3188. local Anim = Instance.new("Animation")
  3189. Anim.AnimationId = "rbxassetid://181525546"
  3190. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3191. local FaintACTIVE = false
  3192. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3193. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3194. FaintACTIVE = false
  3195. Faint.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  3196. end)
  3197. Faint.MouseButton1Click:connect(function()
  3198. FaintACTIVE = not FaintACTIVE
  3199. if FaintACTIVE then
  3200. Faint.BackgroundColor3 = Color3.new(0.756863, 0.466667, 0.878431)
  3201. while wait() do
  3202. if track.IsPlaying == false then
  3203. if FaintACTIVE then
  3204. track:Play(.1, 1, 1)
  3205. end
  3206. end
  3207. end
  3208. else
  3209. track:Stop()
  3210. Faint.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  3211. end
  3212. end)
  3213.  
  3214. local Anim = Instance.new("Animation")
  3215. Anim.AnimationId = "rbxassetid://188632011"
  3216. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3217. local SpinACTIVE = false
  3218. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3219. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3220. SpinACTIVE = false
  3221. Spin.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  3222. end)
  3223. Spin.MouseButton1Click:connect(function()
  3224. SpinACTIVE = not SpinACTIVE
  3225. if SpinACTIVE then
  3226. Spin.BackgroundColor3 = Color3.new(0.756863, 0.466667, 0.878431)
  3227. while wait() do
  3228. if track.IsPlaying == false then
  3229. if SpinACTIVE then
  3230. track:Play(.1, 1, 1)
  3231. end
  3232. end
  3233. end
  3234. else
  3235. track:Stop()
  3236. Spin.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  3237. end
  3238. end)
  3239.  
  3240. local Anim = Instance.new("Animation")
  3241. Anim.AnimationId = "rbxassetid://33169583"
  3242. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3243. local ArmFollowACTIVE = false
  3244. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3245. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3246. ArmFollowACTIVE = false
  3247. ArmFollow.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  3248. end)
  3249. ArmFollow.MouseButton1Click:connect(function()
  3250. ArmFollowACTIVE = not ArmFollowACTIVE
  3251. if ArmFollowACTIVE then
  3252. local u = Instance.new("RocketPropulsion")
  3253. u.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3254. u.Name = "ArmFollow"
  3255. u.Target = game.Players.LocalPlayer.Character["Right Arm"]
  3256. u:Fire()
  3257. ArmFollow.BackgroundColor3 = Color3.new(0.756863, 0.466667, 0.878431)
  3258. while wait() do
  3259. if track.IsPlaying == false then
  3260. if ArmFollowACTIVE then
  3261. track:Play(.1, 1, 1)
  3262. end
  3263. end
  3264. end
  3265. else
  3266. track:Stop()
  3267. ArmFollow.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  3268. game.Players.LocalPlayer.Character.HumanoidRootPart.ArmFollow:Destroy()
  3269. end
  3270. end)
  3271.  
  3272. local Anim = Instance.new("Animation")
  3273. Anim.AnimationId = "rbxassetid://126753849"
  3274. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3275. local PunchFollowACTIVE = false
  3276. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3277. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3278. PunchFollowACTIVE = false
  3279. PunchFollow.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  3280. end)
  3281. PunchFollow.MouseButton1Click:connect(function()
  3282. PunchFollowACTIVE = not PunchFollowACTIVE
  3283. if PunchFollowACTIVE then
  3284. local u = Instance.new("RocketPropulsion")
  3285. u.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3286. u.Name = "PunchFollow"
  3287. u.Target = game.Players.LocalPlayer.Character["Right Arm"]
  3288. u:Fire()
  3289. PunchFollow.BackgroundColor3 = Color3.new(0.756863, 0.466667, 0.878431)
  3290. while wait() do
  3291. if track.IsPlaying == false then
  3292. if PunchFollowACTIVE then
  3293. track:Play(.1, 1, 1)
  3294. end
  3295. end
  3296. end
  3297. else
  3298. track:Stop()
  3299. PunchFollow.BackgroundColor3 = Color3.new(0.556863, 0.266667, 0.678431)
  3300. game.Players.LocalPlayer.Character.HumanoidRootPart.PunchFollow:Destroy()
  3301. end
  3302. end)
  3303.  
  3304. AnimationId = "148840371"
  3305. local Anim = Instance.new("Animation")
  3306. Anim.AnimationId = "rbxassetid://"..AnimationId
  3307. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3308. _18active = false
  3309. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3310. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3311. _18active = false
  3312. _18.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3313. end)
  3314. _18.MouseButton1Click:connect(function()
  3315. _18active = not _18active
  3316. if _18active then
  3317. _18.BackgroundColor3 = Color3.new(0.352941, 0.882353, 0.576471)
  3318. for i,v in pairs(GetPlayer(TXTBOX_PlrNameEXTRA.Text))do
  3319. track:Play()
  3320. while wait() do
  3321. if _18active then
  3322. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  3323. end
  3324. end
  3325. end
  3326. else
  3327. track:Stop()
  3328. _18.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3329. end
  3330. end)
  3331.  
  3332. local Anim = Instance.new("Animation")
  3333. Anim.AnimationId = "rbxassetid://180612465"
  3334. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3335. local crouchattacking = false
  3336. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3337. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3338. crouchattacking = false
  3339. CrouchAttack.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3340. end)
  3341. CrouchAttack.MouseButton1Click:connect(function()
  3342. crouchattacking = not crouchattacking
  3343. if crouchattacking then
  3344. local u = Instance.new("RocketPropulsion")
  3345. u.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3346. u.Name = "CrouchAttack"
  3347. for i,v in pairs(GetPlayer(TXTBOX_PlrNameEXTRA.Text))do
  3348. u.Target = game.Players[v.Name].Character.HumanoidRootPart
  3349. end
  3350. u:Fire()
  3351. CrouchAttack.BackgroundColor3 = Color3.new(0.352941, 0.882353, 0.576471)
  3352. while wait() do
  3353. if track.IsPlaying == false then
  3354. if crouchattacking then
  3355. track:Play(.1, 1, 1)
  3356. end
  3357. end
  3358. end
  3359. else
  3360. track:Stop()
  3361. CrouchAttack.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3362. game.Players.LocalPlayer.Character.HumanoidRootPart.CrouchAttack:Destroy()
  3363. end
  3364. end)
  3365.  
  3366. local Anim = Instance.new("Animation")
  3367. Anim.AnimationId = "rbxassetid://184574340"
  3368. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3369. local SlamPropulsioning = false
  3370. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3371. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3372. SlamPropulsioning = false
  3373. SlamPropulsion.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3374. end)
  3375. SlamPropulsion.MouseButton1Click:connect(function()
  3376. SlamPropulsioning = not SlamPropulsioning
  3377. if SlamPropulsioning then
  3378. local u = Instance.new("RocketPropulsion")
  3379. u.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3380. u.Name = "SlamPropulsion"
  3381. for i,v in pairs(GetPlayer(TXTBOX_PlrNameEXTRA.Text))do
  3382. u.Target = game.Players[v.Name].Character.HumanoidRootPart
  3383. end
  3384. u:Fire()
  3385. SlamPropulsion.BackgroundColor3 = Color3.new(0.352941, 0.882353, 0.576471)
  3386. while wait() do
  3387. if track.IsPlaying == false then
  3388. if SlamPropulsioning then
  3389. track:Play(.1, 1, 1)
  3390. end
  3391. end
  3392. end
  3393. else
  3394. track:Stop()
  3395. SlamPropulsion.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3396. game.Players.LocalPlayer.Character.HumanoidRootPart.SlamPropulsion:Destroy()
  3397. end
  3398. end)
  3399.  
  3400. local Anim = Instance.new("Animation")
  3401. Anim.AnimationId = "rbxassetid://429730430"
  3402. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3403. local SpinAttacking = false
  3404. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3405. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3406. SpinAttacking = false
  3407. SpinAttack.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3408. end)
  3409. SpinAttack.MouseButton1Click:connect(function()
  3410. SpinAttacking = not SpinAttacking
  3411. if SpinAttacking then
  3412. local u = Instance.new("RocketPropulsion")
  3413. u.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3414. u.Name = "SpinAttack"
  3415. for i,v in pairs(GetPlayer(TXTBOX_PlrNameEXTRA.Text))do
  3416. u.Target = game.Players[v.Name].Character.HumanoidRootPart
  3417. end
  3418. u:Fire()
  3419. SpinAttack.BackgroundColor3 = Color3.new(0.352941, 0.882353, 0.576471)
  3420. while wait() do
  3421. if track.IsPlaying == false then
  3422. if SpinAttacking then
  3423. track:Play(.1, 1, 1)
  3424. end
  3425. end
  3426. end
  3427. else
  3428. track:Stop()
  3429. SpinAttack.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3430. game.Players.LocalPlayer.Character.HumanoidRootPart.SpinAttack:Destroy()
  3431. end
  3432. end)
  3433.  
  3434. watching = false
  3435. CreepyWatch.MouseButton1Click:connect(function()
  3436. watching = not watching
  3437. end)
  3438.  
  3439. local Anim = Instance.new("Animation")
  3440. Anim.AnimationId = "rbxassetid://215384594"
  3441. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3442. walkingthrough = false
  3443. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3444. walkingthrough = false
  3445. WalkThrough.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3446. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3447. end)
  3448. WalkThrough.MouseButton1Click:connect(function()
  3449. walkingthrough = not walkingthrough
  3450. if walkingthrough then
  3451. WalkThrough.BackgroundColor3 = Color3.new(0.352941, 0.882353, 0.576471)
  3452. while wait() do
  3453. if walkingthrough then
  3454. for i,v in pairs(GetPlayer(TXTBOX_PlrNameEXTRA.Text))do
  3455. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  3456. if track.IsPlaying == false then
  3457. if walkingthrough then
  3458. track:Play(.1, 1, 1e6)
  3459. end
  3460. end
  3461. end
  3462. end
  3463. end
  3464. else
  3465. WalkThrough.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  3466. track:Stop()
  3467. end
  3468. end)
  3469.  
  3470. annoying = false
  3471. Annoy.MouseButton1Click:connect(function()
  3472. annoying = not annoying
  3473. end)
  3474. local Anim = Instance.new("Animation")
  3475. Anim.AnimationId = "rbxassetid://282574440"
  3476. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3477. local crawlACTIVE = false
  3478. Carpett = false
  3479. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3480. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3481. Carpett = false
  3482. Carpet.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  3483. end)
  3484. Carpet.MouseButton1Click:connect(function()
  3485. Carpett = not Carpett
  3486. if Carpett then
  3487. Carpet.BackgroundColor3 = Color3.new(0.403922, 0.796078, 0.858824)
  3488. while wait() do
  3489. if track.IsPlaying == false then
  3490. if Carpett then
  3491. track:Play(.1, 1, 1)
  3492. end
  3493. end
  3494. end
  3495. else
  3496. track:Stop()
  3497. Carpet.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  3498. end
  3499. end)
  3500. following = false
  3501. Follow.MouseButton1Click:connect(function()
  3502. following = not following
  3503. end)
  3504. headwalking = false
  3505. HeadWalk.MouseButton1Click:connect(function()
  3506. headwalking = not headwalking
  3507. end)
  3508. Spammer = false
  3509. Spam.MouseButton1Click:connect(function()
  3510. Spammer = not Spammer
  3511. end)
  3512. stuck = false
  3513. Stick.MouseButton1Click:connect(function()
  3514. stuck = not stuck
  3515. end)
  3516. TeleportTo.MouseButton1Click:connect(function()
  3517. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  3518. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  3519. end
  3520. end)
  3521.  
  3522. orbital = false
  3523. Orbit.MouseButton1Click:connect(function()
  3524. orbital = not orbital
  3525. if orbital then
  3526. Orbit.BackgroundColor3 = Color3.new(0.403922, 0.796078, 0.858824)
  3527. local o = Instance.new("RocketPropulsion")
  3528. o.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3529. o.Name = "Orbit"
  3530. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  3531. o.Target = game.Players[v.Name].Character.HumanoidRootPart
  3532. o:Fire()
  3533. game:GetService('RunService').Stepped:connect(function()
  3534. if orbital then
  3535. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3536. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3537. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3538. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3539. end
  3540. end)
  3541. end
  3542. else
  3543. game.Players.LocalPlayer.Character.HumanoidRootPart.Orbit:Destroy()
  3544. Orbit.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  3545. end
  3546. end)
  3547.  
  3548. currentview = false
  3549. View.MouseButton1Click:connect(function()
  3550. currentview = not currentview
  3551. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  3552. if currentview then
  3553. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3554. View.BackgroundColor3 = Color3.new(0.403922, 0.796078, 0.858824)
  3555. else
  3556. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Head
  3557. View.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  3558. end
  3559. end
  3560. end)
  3561.  
  3562. floating = false
  3563. Float.MouseButton1Click:connect(function()
  3564. floating = not floating
  3565. if floating then
  3566. Float.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3567. local y = Instance.new("RocketPropulsion")
  3568. y.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3569. y.CartoonFactor = 1
  3570. y.MaxThrust = 50000
  3571. y.MaxSpeed = 1000
  3572. y.ThrustP = 50000
  3573. y.Name = "Float"
  3574. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3575. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3576. y.Target = game.Players[v.Name].Character.Head
  3577. y:Fire()
  3578. game:GetService('RunService').Stepped:connect(function()
  3579. if floating then
  3580. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3581. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3582. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3583. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3584. end
  3585. end)
  3586. while wait(0.3) do
  3587. if floating then
  3588. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character["Left Leg"].CFrame
  3589. end
  3590. end
  3591. end
  3592. else
  3593. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3594. game.Players.LocalPlayer.Character.HumanoidRootPart.Float:Destroy()
  3595. Float.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3596. end
  3597. end)
  3598.  
  3599. local Anim = Instance.new("Animation")
  3600. Anim.AnimationId = "rbxassetid://282574440"
  3601. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3602. flattening = false
  3603. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3604. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3605. flattening = false
  3606. Flatten.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3607. end)
  3608. Flatten.MouseButton1Click:connect(function()
  3609. flattening = not flattening
  3610. if flattening then
  3611. Flatten.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3612. local y = Instance.new("RocketPropulsion")
  3613. y.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3614. y.CartoonFactor = 1
  3615. y.MaxThrust = 50000
  3616. y.MaxSpeed = 1000
  3617. y.ThrustP = 50000
  3618. y.Name = "Flatten"
  3619. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3620. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3621. y.Target = game.Players[v.Name].Character["Left Leg"]
  3622. y:Fire()
  3623. track:Play(.1, 1, 1)
  3624. game:GetService('RunService').Stepped:connect(function()
  3625. if flattening then
  3626. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3627. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3628. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3629. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3630. end
  3631. end)
  3632. while wait(0.3) do
  3633. if flattening then
  3634. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame + Vector3.new(0,2,0)
  3635. end
  3636. end
  3637. end
  3638. else
  3639. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3640. game.Players.LocalPlayer.Character.HumanoidRootPart.Flatten:Destroy()
  3641. track:Stop()
  3642. Flatten.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3643. end
  3644. end)
  3645.  
  3646. SlowAttracting = false
  3647. SlowAttract.MouseButton1Click:connect(function()
  3648. SlowAttracting = not SlowAttracting
  3649. if SlowAttracting then
  3650. SlowAttract.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3651. local b = Instance.new("RocketPropulsion")
  3652. b.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3653. b.TurnD = 5000
  3654. b.MaxThrust = 5000
  3655. b.MaxSpeed = 200
  3656. b.ThrustP = 5000
  3657. b.CartoonFactor = 1
  3658. b.Name = "SlowAttract"
  3659. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3660. b.Target = game.Players[v.Name].Character.HumanoidRootPart
  3661. b:Fire()
  3662. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3663. game:GetService('RunService').Stepped:connect(function()
  3664. if SlowAttracting then
  3665. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3666. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3667. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3668. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3669. end
  3670. end)
  3671. end
  3672. else
  3673. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3674. game.Players.LocalPlayer.Character.HumanoidRootPart.SlowAttract:Destroy()
  3675. SlowAttract.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3676. end
  3677. end)
  3678.  
  3679. AimHeading = false
  3680. AimHead.MouseButton1Click:connect(function()
  3681. AimHeading = not AimHeading
  3682. if AimHeading then
  3683. AimHead.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3684. local b = Instance.new("RocketPropulsion")
  3685. b.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3686. b.TurnP = 2500
  3687. b.MaxThrust = 50000
  3688. b.MaxSpeed = 1000
  3689. b.ThrustP = 50000
  3690. b.CartoonFactor = 1
  3691. b.Name = "AimHead"
  3692. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3693. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3694. b.Target = game.Players[v.Name].Character.Head
  3695. b:Fire()
  3696. game:GetService('RunService').Stepped:connect(function()
  3697. if AimHeading then
  3698. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3699. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3700. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3701. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3702. end
  3703. end)
  3704. end
  3705. else
  3706. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3707. game.Players.LocalPlayer.Character.HumanoidRootPart.AimHead:Destroy()
  3708. AimHead.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3709. end
  3710. end)
  3711.  
  3712. Multipleing = false
  3713. Multiple.MouseButton1Click:connect(function()
  3714. Multipleing = not Multipleing
  3715. if Multipleing then
  3716. Multiple.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3717. local t1 = Instance.new("RocketPropulsion")
  3718. t1.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3719. t1.TurnP = 30000
  3720. t1.MaxThrust = 30000
  3721. t1.MaxSpeed = 1000
  3722. t1.ThrustP = 30000
  3723. t1.CartoonFactor = 1
  3724. t1.Name = "one"
  3725. local t2 = Instance.new("RocketPropulsion")
  3726. t2.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3727. t2.TurnP = 30000
  3728. t2.MaxThrust = 30000
  3729. t2.MaxSpeed = 1000
  3730. t2.ThrustP = 30000
  3731. t2.CartoonFactor = 1
  3732. t2.Name = "two"
  3733. local t3 = Instance.new("RocketPropulsion")
  3734. t3.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3735. t3.TurnP = 30000
  3736. t3.MaxThrust = 30000
  3737. t3.MaxSpeed = 1000
  3738. t3.ThrustP = 30000
  3739. t3.CartoonFactor = 1
  3740. t3.Name = "three"
  3741. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3742. t1.Target = game.Players[v.Name].Character.Torso
  3743. t1:Fire()
  3744. t2.Target = game.Players[v.Name].Character["Right Leg"]
  3745. t2:Fire()
  3746. t3.Target = game.Players[v.Name].Character["Left Arm"]
  3747. t3:Fire()
  3748. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3749. game:GetService('RunService').Stepped:connect(function()
  3750. if Multipleing then
  3751. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3752. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3753. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3754. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3755. end
  3756. end)
  3757. end
  3758. else
  3759. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3760. game.Players.LocalPlayer.Character.HumanoidRootPart.one:Destroy()
  3761. game.Players.LocalPlayer.Character.HumanoidRootPart.two:Destroy()
  3762. game.Players.LocalPlayer.Character.HumanoidRootPart.three:Destroy()
  3763. Multiple.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3764. end
  3765. end)
  3766.  
  3767. local Anim = Instance.new("Animation")
  3768. Anim.AnimationId = "rbxassetid://215384594"
  3769. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3770. Violenting = false
  3771. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3772. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3773. Violenting = false
  3774. Violent.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3775. end)
  3776. Violent.MouseButton1Click:connect(function()
  3777. Violenting = not Violenting
  3778. if Violenting then
  3779. Violent.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3780. local y = Instance.new("RocketPropulsion")
  3781. y.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3782. y.CartoonFactor = 1
  3783. y.MaxThrust = 50000
  3784. y.MaxSpeed = 1000
  3785. y.ThrustP = 50000
  3786. y.Name = "Violent"
  3787. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3788. y.Target = game.Players[v.Name].Character.HumanoidRootPart
  3789. y:Fire()
  3790. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3791. track:Play(.1, 1, 10)
  3792. game:GetService('RunService').Stepped:connect(function()
  3793. if Violenting then
  3794. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3795. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3796. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3797. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3798. end
  3799. end)
  3800. end
  3801. else
  3802. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3803. game.Players.LocalPlayer.Character.HumanoidRootPart.Violent:Destroy()
  3804. track:Stop()
  3805. Violent.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3806. end
  3807. end)
  3808.  
  3809. local Anim = Instance.new("Animation")
  3810. Anim.AnimationId = "rbxassetid://215384594"
  3811. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3812. Violenting = false
  3813. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3814. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3815. Violenting = false
  3816. Violent.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3817. end)
  3818. Violent.MouseButton1Click:connect(function()
  3819. Violenting = not Violenting
  3820. if Violenting then
  3821. Violent.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3822. local y = Instance.new("RocketPropulsion")
  3823. y.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3824. y.CartoonFactor = 1
  3825. y.MaxThrust = 500000
  3826. y.MaxSpeed = 1000
  3827. y.ThrustP = 50000
  3828. y.Name = "Violent"
  3829. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3830. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3831. y.Target = game.Players[v.Name].Character.HumanoidRootPart
  3832. y:Fire()
  3833. track:Play(.1, 1, 10)
  3834. game:GetService('RunService').Stepped:connect(function()
  3835. if Violenting then
  3836. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3837. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3838. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3839. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3840. end
  3841. end)
  3842. end
  3843. else
  3844. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3845. game.Players.LocalPlayer.Character.HumanoidRootPart.Violent:Destroy()
  3846. track:Stop()
  3847. Violent.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3848. end
  3849. end)
  3850.  
  3851. WeirdOrbital = false
  3852. WeirdOrbit.MouseButton1Click:connect(function()
  3853. WeirdOrbital = not WeirdOrbital
  3854. if WeirdOrbital then
  3855. WeirdOrbit.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3856. local o = Instance.new("RocketPropulsion")
  3857. o.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3858. o.TurnD = 50000
  3859. o.Name = "WeirdOrbit"
  3860. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  3861. o.Target = game.Players[v.Name].Character.HumanoidRootPart
  3862. o:Fire()
  3863. game:GetService('RunService').Stepped:connect(function()
  3864. if WeirdOrbital then
  3865. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3866. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3867. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3868. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3869. end
  3870. end)
  3871. end
  3872. else
  3873. game.Players.LocalPlayer.Character.HumanoidRootPart.WeirdOrbit:Destroy()
  3874. WeirdOrbit.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3875. end
  3876. end)
  3877.  
  3878. Maxing = false
  3879. Max.MouseButton1Click:connect(function()
  3880. Maxing = not Maxing
  3881. if Maxing then
  3882. Max.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3883. local t1 = Instance.new("RocketPropulsion")
  3884. t1.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3885. t1.TurnP = 100000
  3886. t1.MaxThrust = 100000
  3887. t1.MaxSpeed = 5000
  3888. t1.ThrustP = 100000
  3889. t1.CartoonFactor = 1
  3890. t1.Name = "onee"
  3891. local t2 = Instance.new("RocketPropulsion")
  3892. t2.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3893. t2.TurnP = 100000
  3894. t2.MaxThrust = 100000
  3895. t2.MaxSpeed = 5000
  3896. t2.ThrustP = 100000
  3897. t2.CartoonFactor = 1
  3898. t2.Name = "twoo"
  3899. local t3 = Instance.new("RocketPropulsion")
  3900. t3.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3901. t3.TurnP = 100000
  3902. t3.MaxThrust = 100000
  3903. t3.MaxSpeed = 5000
  3904. t3.ThrustP = 100000
  3905. t3.CartoonFactor = 1
  3906. t3.Name = "threee"
  3907. local t4 = Instance.new("RocketPropulsion")
  3908. t4.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3909. t4.TurnP = 100000
  3910. t4.MaxThrust = 100000
  3911. t4.MaxSpeed = 5000
  3912. t4.ThrustP = 100000
  3913. t4.CartoonFactor = 1
  3914. t4.Name = "fourr"
  3915. local t5 = Instance.new("RocketPropulsion")
  3916. t5.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3917. t5.TurnP = 100000
  3918. t5.MaxThrust = 100000
  3919. t5.MaxSpeed = 5000
  3920. t5.ThrustP = 100000
  3921. t5.CartoonFactor = 1
  3922. t5.Name = "fivee"
  3923. local t6 = Instance.new("RocketPropulsion")
  3924. t6.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3925. t6.TurnP = 100000
  3926. t6.MaxThrust = 100000
  3927. t6.MaxSpeed = 5000
  3928. t6.ThrustP = 100000
  3929. t6.CartoonFactor = 1
  3930. t6.Name = "sixx"
  3931. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3932. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3933. t1.Target = game.Players[v.Name].Character.Torso
  3934. t1:Fire()
  3935. t2.Target = game.Players[v.Name].Character["Right Leg"]
  3936. t2:Fire()
  3937. t3.Target = game.Players[v.Name].Character["Left Arm"]
  3938. t3:Fire()
  3939. t4.Target = game.Players[v.Name].Character["Left Leg"]
  3940. t4:Fire()
  3941. t5.Target = game.Players[v.Name].Character["Right Arm"]
  3942. t5:Fire()
  3943. t6.Target = game.Players[v.Name].Character.Head
  3944. t6:Fire()
  3945. game:GetService('RunService').Stepped:connect(function()
  3946. if Maxing then
  3947. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3948. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3949. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3950. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3951. end
  3952. end)
  3953. end
  3954. else
  3955. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  3956. game.Players.LocalPlayer.Character.HumanoidRootPart.onee:Destroy()
  3957. game.Players.LocalPlayer.Character.HumanoidRootPart.twoo:Destroy()
  3958. game.Players.LocalPlayer.Character.HumanoidRootPart.threee:Destroy()
  3959. game.Players.LocalPlayer.Character.HumanoidRootPart.fourr:Destroy()
  3960. game.Players.LocalPlayer.Character.HumanoidRootPart.fivee:Destroy()
  3961. game.Players.LocalPlayer.Character.HumanoidRootPart.sixx:Destroy()
  3962. Max.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3963. end
  3964. end)
  3965.  
  3966. local Anim = Instance.new("Animation")
  3967. Anim.AnimationId = "rbxassetid://184574340"
  3968. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  3969. Animateding = false
  3970. game.Players.LocalPlayer.CharacterAdded:Connect(function(character)
  3971. track = character:WaitForChild("Humanoid"):LoadAnimation(Anim)
  3972. Animateding = false
  3973. Animated.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  3974. end)
  3975. Animated.MouseButton1Click:connect(function()
  3976. Animateding = not Animateding
  3977. if Animateding then
  3978. Animated.BackgroundColor3 = Color3.new(0.707843, 0.54902, 0.813726)
  3979. local y = Instance.new("RocketPropulsion")
  3980. y.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  3981. y.CartoonFactor = 1
  3982. y.MaxThrust = 200000
  3983. y.MaxSpeed = 1000
  3984. y.ThrustP = 50000
  3985. y.Name = "Animated"
  3986. for i,v in pairs(GetPlayer(TXTBOX_PlrName2.Text))do
  3987. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  3988. y.Target = game.Players[v.Name].Character.HumanoidRootPart
  3989. y:Fire()
  3990. track:Play(.1, 1, 10)
  3991. game:GetService('RunService').Stepped:connect(function()
  3992. if Animateding then
  3993. game.Players.LocalPlayer.Character.Head.CanCollide = false
  3994. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  3995. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  3996. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  3997. end
  3998. end)
  3999. end
  4000. else
  4001. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  4002. game.Players.LocalPlayer.Character.HumanoidRootPart.Animated:Destroy()
  4003. track:Stop()
  4004. Animated.BackgroundColor3 = Color3.new(0.607843, 0.34902, 0.713726)
  4005. end
  4006. end)
  4007.  
  4008. Attach.MouseButton1Click:connect(function()
  4009. for i,v in pairs(GetPlayer(TXTBOX_PlrNameOTHER3.Text))do
  4010. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  4011. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  4012. l.Parent = game.Players.LocalPlayer.Character
  4013. l.Name = "Humanoid"
  4014. wait(0.1)
  4015. game.Players.LocalPlayer.Character["1"]:Destroy()
  4016. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  4017. game.Players.LocalPlayer.Character.Animate.Disabled = true
  4018. wait(0.1)
  4019. game.Players.LocalPlayer.Character.Animate.Disabled = false
  4020. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  4021. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4022. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  4023. end
  4024. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character["Left Arm"].CFrame
  4025. end
  4026. end)
  4027.  
  4028. superspinning = false
  4029. SuperSpin.MouseButton1Click:connect(function()
  4030. superspinning = not superspinning
  4031. if superspinning then
  4032. SuperSpin.BackgroundColor3 = Color3.new(0.905882, 0.498039, 0.435294)
  4033. for i,v in pairs(GetPlayer(TXTBOX_PlrNameOTHER3.Text))do
  4034. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  4035. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  4036. l.Parent = game.Players.LocalPlayer.Character
  4037. l.Name = "Humanoid"
  4038. wait(0.1)
  4039. game.Players.LocalPlayer.Character["1"]:Destroy()
  4040. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  4041. game.Players.LocalPlayer.Character.Animate.Disabled = true
  4042. wait(0.1)
  4043. game.Players.LocalPlayer.Character.Animate.Disabled = false
  4044. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  4045. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4046. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  4047. end
  4048. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character["Left Arm"].CFrame
  4049. wait(1)
  4050. while wait() do
  4051. if superspinning then
  4052. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4053. end
  4054. end
  4055. end
  4056. else
  4057. SuperSpin.BackgroundColor3 = Color3.new(0.905882, 0.298039, 0.235294)
  4058. end
  4059. end)
  4060.  
  4061. Kill.MouseButton1Click:connect(function()
  4062. for i,v in pairs(GetPlayer(TXTBOX_PlrNameOTHER3.Text))do
  4063. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  4064. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  4065. l.Parent = game.Players.LocalPlayer.Character
  4066. l.Name = "Humanoid"
  4067. wait(0.1)
  4068. game.Players.LocalPlayer.Character["1"]:Destroy()
  4069. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  4070. game.Players.LocalPlayer.Character.Animate.Disabled = true
  4071. wait(0.1)
  4072. game.Players.LocalPlayer.Character.Animate.Disabled = false
  4073. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  4074. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4075. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  4076. end
  4077. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4078. wait(0.2)
  4079. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4080. wait(0.4)
  4081. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(100000, 0, 100000))
  4082. end
  4083. end)
  4084.  
  4085. SafeKill.MouseButton1Click:connect(function()
  4086. local NOW = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  4087. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  4088. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  4089. l.Parent = game.Players.LocalPlayer.Character
  4090. l.Name = "Humanoid"
  4091. wait(0.1)
  4092. game.Players.LocalPlayer.Character["1"]:Destroy()
  4093. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  4094. game.Players.LocalPlayer.Character.Animate.Disabled = true
  4095. wait(0.1)
  4096. game.Players.LocalPlayer.Character.Animate.Disabled = false
  4097. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  4098. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4099. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  4100. end
  4101. local function tp(player,player2)
  4102. local char1,char2=player.Character,player2.Character
  4103. if char1 and char2 then
  4104. char1:MoveTo(char2.Head.Position)
  4105. end
  4106. end
  4107. for i,v in pairs(GetPlayer(TXTBOX_PlrNameOTHER3.Text))do
  4108. wait(0.1)
  4109. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4110. wait(0.2)
  4111. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4112. wait(0.2)
  4113. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,0,-100000))
  4114. wait(0.7)
  4115. tp(game.Players.LocalPlayer,game.Players[v.Name])
  4116. wait(0.7)
  4117. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
  4118. end
  4119. end)
  4120.  
  4121. Bring.MouseButton1Click:connect(function()
  4122. local NOW = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  4123. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  4124. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  4125. l.Parent = game.Players.LocalPlayer.Character
  4126. l.Name = "Humanoid"
  4127. wait(0.1)
  4128. game.Players.LocalPlayer.Character["1"]:Destroy()
  4129. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  4130. game.Players.LocalPlayer.Character.Animate.Disabled = true
  4131. wait(0.1)
  4132. game.Players.LocalPlayer.Character.Animate.Disabled = false
  4133. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  4134. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4135. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  4136. end
  4137.  
  4138. local function tp(player,player2)
  4139. local char1,char2=player.Character,player2.Character
  4140. if char1 and char2 then
  4141. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  4142. end
  4143. end
  4144.  
  4145. local function getout(player,player2)
  4146. local char1,char2=player.Character,player2.Character
  4147. if char1 and char2 then
  4148. char1:MoveTo(char2.Head.Position)
  4149. end
  4150. end
  4151.  
  4152. for i,v in pairs(GetPlayer(TXTBOX_PlrNameOTHER3.Text))do
  4153. tp(game.Players[v.Name], game.Players.LocalPlayer)
  4154. wait(0.2)
  4155. tp(game.Players[v.Name], game.Players.LocalPlayer)
  4156. wait(0.5)
  4157. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
  4158. wait(0.5)
  4159. getout(game.Players.LocalPlayer, game.Players[v.Name])
  4160. wait(0.3)
  4161. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
  4162. end
  4163. end)
  4164.  
  4165. FreeFall.MouseButton1Click:connect(function()
  4166. local NOW = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  4167. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  4168. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  4169. l.Parent = game.Players.LocalPlayer.Character
  4170. l.Name = "Humanoid"
  4171. wait(0.1)
  4172. game.Players.LocalPlayer.Character["1"]:Destroy()
  4173. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  4174. game.Players.LocalPlayer.Character.Animate.Disabled = true
  4175. wait(0.1)
  4176. game.Players.LocalPlayer.Character.Animate.Disabled = false
  4177. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  4178. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4179. game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
  4180. end
  4181. for i,v in pairs(GetPlayer(TXTBOX_PlrNameOTHER3.Text))do
  4182. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4183. wait(0.2)
  4184. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4185. wait(0.6)
  4186. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = NOW
  4187. wait(0.6)
  4188. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
  4189. end
  4190. end)
  4191.  
  4192. while wait() do
  4193. if SpammingChar then
  4194. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(TXTBOX_Chat.Text, "All")
  4195. Spam_2.BackgroundColor3 = Color3.new(0.280392, 0.9, 0.543137)
  4196. wait(0.5)
  4197. else
  4198. Spam_2.BackgroundColor3 = Color3.new(0.180392, 0.8, 0.443137)
  4199. end
  4200. if annoying then
  4201. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  4202. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4203. Annoy.BackgroundColor3 = Color3.new(0.403922, 0.796078, 0.858824)
  4204. end
  4205. else
  4206. Annoy.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  4207. end
  4208. if Carpett then
  4209. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  4210. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  4211. Carpet.BackgroundColor3 = Color3.new(0.403922, 0.796078, 0.858824)
  4212. end
  4213. else
  4214. Carpet.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  4215. end
  4216. if following then
  4217. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  4218. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame + Vector3.new(5,0,0)
  4219. Follow.BackgroundColor3 = Color3.new(0.403922, 0.796078, 0.858824)
  4220. end
  4221. else
  4222. Follow.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  4223. end
  4224. if headwalking then
  4225. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  4226. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.Head.CFrame
  4227. HeadWalk.BackgroundColor3 = Color3.new(0.403922, 0.796078, 0.858824)
  4228. end
  4229. else
  4230. HeadWalk.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  4231. end
  4232. if Spammer then
  4233. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  4234. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/w "..v.Name.." @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", "All")
  4235. Spam.BackgroundColor3 = Color3.new(0.403922, 0.796078, 0.858824)
  4236. wait(0.5)
  4237. end
  4238. else
  4239. Spam.BackgroundColor3 = Color3.new(0.203922, 0.596078, 0.858824)
  4240. end
  4241. if watching then
  4242. for i,v in pairs(GetPlayer(TXTBOX_PlrName.Text))do
  4243. CreepyWatch.BackgroundColor3 = Color3.new(0.352941, 0.882353, 0.576471)
  4244. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game.Players.LocalPlayer.Character.Torso.Position, game.Players[v.Name].Character.Torso.Position)
  4245. end
  4246. else
  4247. CreepyWatch.BackgroundColor3 = Color3.new(0.152941, 0.682353, 0.376471)
  4248. end
  4249. end
  4250.  
  4251.  
  4252. end
  4253. coroutine.resume(coroutine.create(SCRIPT_GLCH86_FAKESCRIPT))
  4254. -- Creator: illremember#3799
  4255.  
  4256. -- Credits to infinite yield, harkinian, dex creators
  4257.  
  4258. prefix = ":"
  4259. wait(0.3)
  4260. Commands = {
  4261. '[-] cmdbar is shown when ; is pressed.',
  4262. '[1] kill [plr] -- You need a tool! Will kill the player, use rkill to kill you and player',
  4263. '[2] bring [plr] -- You need a tool! Will bring player to you',
  4264. '[3] spin [plr] -- You need a tool! Makes you and the player spin crazy',
  4265. '[4] unspin -- Use after using spin cmd and dying, so you stop loop teleporting',
  4266. '[5] attach [plr] -- You need a tool! Attaches you to player',
  4267. '[6] unattach [plr] -- Attempts to unattach you from a player',
  4268. '[7] follow [plr] -- Makes you follow behind the player',
  4269. '[8] unfollow',
  4270. '[9] freefall [plr] -- You need a tool! Teleports you and the player up into the air',
  4271. '[10] trail [plr] -- The opposite of follow, you stay infront of player',
  4272. '[11] untrail',
  4273. '[12] orbit [plr] -- Makes you orbit the player',
  4274. '[13] unorbit',
  4275. '[14] fling [plr] -- Makes you fling the player',
  4276. '[15] unfling',
  4277. '[16] fecheck -- Checks if the game is FE or not',
  4278. '[17] void [plr] -- Teleports player to the void',
  4279. '[18] noclip -- Gives you noclip to walk through walls',
  4280. '[19] clip -- Removes noclip',
  4281. '[20] speed [num]/ws [num] -- Changes how fast you walk 16 is default',
  4282. '[21] jumppower [num]/jp [num] -- Changes how high you jump 50 is default',
  4283. '[22] hipheight [num]/hh [num] -- Changes how high you float 0 is default',
  4284. '[23] default -- Changes your speed, jumppower and hipheight to default values',
  4285. '[24] annoy [plr] -- Loop teleports you to the player',
  4286. '[25] unannoy',
  4287. '[26] headwalk [plr] -- Loop teleports you to the player head',
  4288. '[27] unheadwalk',
  4289. '[28] nolimbs -- Removes your arms and legs',
  4290. '[29] god -- Gives you FE Godmode',
  4291. '[30] drophats -- Drops your accessories',
  4292. '[31] droptool -- Drops any tool you have equipped',
  4293. '[32] loopdhats -- Loop drops your accessories',
  4294. '[33] unloopdhats',
  4295. '[34] loopdtool -- Loop drops any tools you have equipped',
  4296. '[35] unloopdtool',
  4297. '[36] invisible -- Gives you invisibility CREDIT TO TIMELESS',
  4298. '[37] view [plr] -- Changes your camera to the player character',
  4299. '[38] unview',
  4300. '[39] goto [plr] -- Teleports you to player',
  4301. '[40] fly -- Allows you to fly, credit to Infinite Yield',
  4302. '[41] unfly',
  4303. '[42] chat [msg] -- Makes you chat a message',
  4304. '[43] spam [msg] -- Spams a message',
  4305. '[44] unspam',
  4306. '[45] spamwait [num] -- Changes delay of chatting a message for the spam command in seconds default is 1 second',
  4307. '[46] pmspam [plr] -- Spams a player in private message',
  4308. '[47] unpmspam',
  4309. '[48] cfreeze [plr] -- Freezes a player on your client, they will only be frozen for you',
  4310. '[49] uncfreeze [plr]',
  4311. '[50] unlockws -- Unlocks the workspace',
  4312. '[51] lockws -- Locks the workspace',
  4313. '[52] btools -- Gives you btools that will only show to you useful for deleting certain blocks only for you',
  4314. '[53] pstand -- Enables platform stand',
  4315. '[54] unpstand -- Disables platform stand',
  4316. '[55] blockhead -- Removes your head mesh',
  4317. '[56] sit',
  4318. '[57] bringobj [obj] -- Only shows on client, brings an object/part to you constantly, can be used to bring healing parts, weapons, money etc, type in exact name',
  4319. '[58] wsvis [num] -- Changes visibility of workspace parts, num should be between 0 and 1, only shows client sided',
  4320. '[59] hypertotal -- Loads in my FE GUI Hypertotal',
  4321. '[60] cmds -- Prints all commands',
  4322. '[61] rmeshhats/blockhats -- Removes the meshes of all your accessories aka block hats',
  4323. '[62] rmeshtool/blocktool -- Removes the mesh of the tool you have equipped aka block tool',
  4324. '[63] spinner -- Makes you spin',
  4325. '[64] nospinner',
  4326. '[65] reach [num] -- Gives you reach, mostly used for swords, say ;reachd for default and enter number after for custom',
  4327. '[66] noreach -- Removes reach, must have tool equipped',
  4328. '[67] rkill [plr] -- Kills you and the player, use kill to just kill the player without dying',
  4329. '[68] tp me [plr] -- Alternative to goto',
  4330. '[69] cbring [plr] -- Brings player infront of you, shows only on client, allows you to do damage to player',
  4331. '[70] uncbring',
  4332. '[71] swap [plr] -- You need a tool! Swaps players position with yours and your position with players',
  4333. '[72] givetool [plr] -- Gives the tool you have equipped to the player',
  4334. '[73] glitch [plr] -- Glitches you and the player, looks very cool',
  4335. '[74] unglitch -- Unglitches you',
  4336. '[75] grespawn -- Alternative to normal respawn and usually works best for when you want to reset with FE Godmode',
  4337. '[76] explorer -- Loads up DEX',
  4338. '[77] reset -- Resets your character.',
  4339. '[78] anim [id] -- Applies an animation on you, must be created by ROBLOX',
  4340. '[79] animgui -- Loads up Energize animations GUI',
  4341. '[80] savepos -- Saves your current position',
  4342. '[81] loadpos -- Teleports you to your saved position',
  4343. '[82] bang [plr] -- 18+ will not work if you have FE Godmode on',
  4344. '[83] unbang',
  4345. '[84] delcmdbar -- Removes the command bar completely',
  4346. '[85] bringmod [obj] -- Brings all the parts in a model, client only, comes from ;bringobj enter exact name of model',
  4347. '[86] shutdown -- Uses harkinians script to shutdown server',
  4348. '[87] respawn -- If grespawn doesnt work you can use respawn',
  4349. '[88] delobj [obj] -- Deletes a certain brick in workspace, client sided',
  4350. '[89] getplrs -- Prints all players in game',
  4351. '[90] deldecal -- Deletes all decals client sided',
  4352. '[91] opfinality -- Loads in my FE GUI Opfinality',
  4353. '[92] remotes -- Prints all remotes in the game in the console when added',
  4354. '[93] noremotes -- Stops printing remotes',
  4355. '[94] tpdefault -- Stops all loop teleports to a player',
  4356. '[95] stopsit -- Will not allow you to sit',
  4357. '[96] gosit -- Allows you to sit',
  4358. '[97] clicktp -- Enables click tp',
  4359. '[98] noclicktp -- Disables click tp',
  4360. '[99] toolson -- If any tools are dropped in the workspace you will automatically get them',
  4361. '[100] toolsoff -- Stops ;toolson',
  4362. '[101] version -- Gets the admin version',
  4363. '[102] state [num] -- Changes your humanoid state, ;unstate to stop.',
  4364. '[103] gravity [num] -- Changes workspace gravity default is 196.2',
  4365. '[104] pgs -- Checks if the game has PGSPhysicsSolverEnabled enabled',
  4366. '[105] clickdel -- Delete any block you press q on, client sided',
  4367. '[106] noclickdel -- Stops clickdel',
  4368. '[107] looprhats -- Loop removes mesh of your hats/loop block hats',
  4369. '[108] unlooprhats -- Stops loop removing mesh',
  4370. '[109] looprtool -- Loop removes mesh of your tool/loop block tools',
  4371. '[110] unlooprtool -- Stops loop removing mesh',
  4372. '[111] givealltools [plr] -- Gives all the tools you have in your backpack to the player',
  4373. '[112] age [plr] -- Makes you chat the account age of the player',
  4374. '[113] id [plr] -- Makes you chat the account ID of the player',
  4375. '[114] .age [plr] -- Privately shows you the account age of the player',
  4376. '[115] .id [plr] -- Privately shows you the account ID of the player',
  4377. '[116] gameid -- Shows the game ID',
  4378. '[117] removeinvis -- Removes all invisible walls/parts, client sided',
  4379. '[118] removefog -- Removes fog, client sided',
  4380. '[119] disable -- Disables your character by removing humanoid',
  4381. '[120] enable -- Enables your character by adding humanoid',
  4382. '[121] prefix [key] -- Changes the prefix used, default is ;',
  4383. '[122] ;resetprefix -- Resets the prefix to ; incase you change it to an unusable prefix. Say exactly ";resetprefix" to do this command, no matter what your prefix is set to.',
  4384. '[123] flyspeed [num] -- Change your fly speed, default is 1',
  4385. '[124] carpet [plr] -- Makes you a carpet for a player, will not work if FE Godmode is on',
  4386. '[125] uncarpet -- Stops carpet player',
  4387. '[126] stare [plr] -- Turns your character to stare at another player',
  4388. '[127] unstare -- Stops stare player',
  4389. '[128] logchat -- Logs all chat (including /e and whispers) of all players',
  4390. '[129] unlogchat -- Disables logchat',
  4391. '[130] fixcam -- Fixes/resets your camera',
  4392. '[131] unstate -- Stops changing state',
  4393. }
  4394. speedget = 1
  4395.  
  4396. lplayer = game:GetService("Players").LocalPlayer
  4397.  
  4398. lplayer.CharacterAdded:Connect(function(character)
  4399. spin = false
  4400. flying = false
  4401. staring = false
  4402. banpl = false
  4403. end)
  4404.  
  4405. function change()
  4406. prefix = prefix
  4407. speedfly = speedfly
  4408. end
  4409.  
  4410. function GetPlayer(String) -- Credit to Timeless/xFunnieuss
  4411. local Found = {}
  4412. local strl = String:lower()
  4413. if strl == "all" then
  4414. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4415. table.insert(Found,v)
  4416. end
  4417. elseif strl == "others" then
  4418. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4419. if v.Name ~= lplayer.Name then
  4420. table.insert(Found,v)
  4421. end
  4422. end
  4423. elseif strl == "me" then
  4424. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4425. if v.Name == lplayer.Name then
  4426. table.insert(Found,v)
  4427. end
  4428. end
  4429. else
  4430. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4431. if v.Name:lower():sub(1, #String) == String:lower() then
  4432. table.insert(Found,v)
  4433. end
  4434. end
  4435. end
  4436. return Found
  4437. end
  4438.  
  4439. local Mouse = lplayer:GetMouse()
  4440.  
  4441. spin = false
  4442. followed = false
  4443. traill = false
  4444. noclip = false
  4445. annoying = false
  4446. hwalk = false
  4447. droppinghats = false
  4448. droppingtools = false
  4449. flying = false
  4450. spamdelay = 1
  4451. spamming = false
  4452. spammingpm = false
  4453. cbringing = false
  4454. remotes = true
  4455. added = true
  4456. binds = false
  4457. stopsitting = false
  4458. clickgoto = false
  4459. gettingtools = false
  4460. removingmeshhats = false
  4461. removingmeshtool = false
  4462. clickdel = false
  4463. staring = false
  4464. chatlogs = false
  4465. banpl = false
  4466. changingstate = false
  4467. statechosen = 0
  4468.  
  4469. adminversion = "Reviz Admin by illremember, Version 2.0"
  4470.  
  4471. flying = false
  4472. speedfly = 1
  4473.  
  4474. function plrchat(plr, chat)
  4475. print(plr.Name..": "..tick().."\n"..chat)
  4476. end
  4477.  
  4478. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4479. v.Chatted:connect(function(chat)
  4480. if chatlogs then
  4481. plrchat(v, chat)
  4482. end
  4483. end)
  4484. end
  4485. game:GetService("Players").PlayerAdded:connect(function(plr)
  4486. plr.Chatted:connect(function(chat)
  4487. if chatlogs then
  4488. plrchat(plr, chat)
  4489. end
  4490. end)
  4491. end)
  4492.  
  4493.  
  4494. local ScreenGui = Instance.new("ScreenGui")
  4495. local Frame = Instance.new("Frame")
  4496. local CMDBAR = Instance.new("TextBox")
  4497. ScreenGui.Parent = game:GetService("CoreGui")
  4498. Frame.Parent = ScreenGui
  4499. Frame.BackgroundColor3 = Color3.new(0.3, 0.1, 0.1)
  4500. Frame.BackgroundTransparency = 0.3
  4501. Frame.Position = UDim2.new(0.5, 0, 0, 10)
  4502. Frame.Size = UDim2.new(0, 200, 0, 40)
  4503. Frame.Active = true
  4504. Frame.Draggable = true
  4505. CMDBAR.Name = "CMDBAR"
  4506. CMDBAR.Parent = Frame
  4507. CMDBAR.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  4508. CMDBAR.BackgroundTransparency = 0.20000000298023
  4509. CMDBAR.Size = UDim2.new(0, 180, 0, 20)
  4510. CMDBAR.Position = UDim2.new(0.05, 0, 0.25, 0)
  4511. CMDBAR.Font = Enum.Font.SourceSansLight
  4512. CMDBAR.FontSize = Enum.FontSize.Size14
  4513. CMDBAR.TextColor3 = Color3.new(0.945098, 0.945098, 0.945098)
  4514. CMDBAR.TextScaled = true
  4515. CMDBAR.TextSize = 14
  4516. CMDBAR.TextWrapped = true
  4517. CMDBAR.Text = "Press ; to type, Enter to execute"
  4518.  
  4519. local CMDS = Instance.new("ScreenGui")
  4520. local CMDSFRAME = Instance.new("Frame")
  4521. local ScrollingFrame = Instance.new("ScrollingFrame")
  4522. local TextLabel = Instance.new("TextLabel")
  4523. local closegui = Instance.new("TextButton")
  4524. CMDS.Name = "CMDS"
  4525. CMDS.Parent = game:GetService("CoreGui")
  4526. CMDSFRAME.Name = "CMDSFRAME"
  4527. CMDSFRAME.Parent = CMDS
  4528. CMDSFRAME.Active = true
  4529. CMDSFRAME.BackgroundColor3 = Color3.new(0.223529, 0.231373, 0.309804)
  4530. CMDSFRAME.BorderSizePixel = 0
  4531. CMDSFRAME.Draggable = true
  4532. CMDSFRAME.Position = UDim2.new(0, 315, 0, 100)
  4533. CMDSFRAME.Size = UDim2.new(0, 275, 0, 275)
  4534. CMDSFRAME.Visible = false
  4535. ScrollingFrame.Parent = CMDSFRAME
  4536. ScrollingFrame.BackgroundColor3 = Color3.new(0.160784, 0.160784, 0.203922)
  4537. ScrollingFrame.BorderSizePixel = 0
  4538. ScrollingFrame.Position = UDim2.new(0, 0, 0.0729999989, 0)
  4539. ScrollingFrame.Size = UDim2.new(1.04999995, 0, 0.92900002, 0)
  4540. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 10, 0)
  4541. TextLabel.Parent = ScrollingFrame
  4542. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  4543. TextLabel.BackgroundTransparency = 1
  4544. TextLabel.Size = UDim2.new(0.930000007, 0, 1, 0)
  4545. TextLabel.Font = Enum.Font.SourceSans
  4546. TextLabel.FontSize = Enum.FontSize.Size18
  4547. TextLabel.Text = "[-] cmdbar is shown when ; is pressed.,\n[1] kill [plr] -- You need a tool! Will kill the player, use rkill to kill you and player,\n[2] bring [plr] -- You need a tool! Will bring player to you,\n[3] spin [plr] -- You need a tool! Makes you and the player spin crazy,\n[4] unspin -- Use after using spin cmd and dying, so you stop loop teleporting,\n[5] attach [plr] -- You need a tool! Attaches you to player,\n[6] unattach [plr] -- Attempts to unattach you from a player,\n[7] follow [plr] -- Makes you follow behind the player,\n[8] unfollow,\n[9] freefall [plr] -- You need a tool! Teleports you and the player up into the air,\n[10] trail [plr] -- The opposite of follow, you stay infront of player,\n[11] untrail,\n[12] orbit [plr] -- Makes you orbit the player,\n[13] unorbit,\n[14] fling [plr] -- Makes you fling the player,\n[15] unfling,\n[16] fecheck -- Checks if the game is FE or not,\n[17] void [plr] -- Teleports player to the void,\n[18] noclip -- Gives you noclip to walk through walls,\n[19] clip -- Removes noclip,\n[20] speed [num]/ws [num] -- Changes how fast you walk 16 is default,\n[21] jumppower [num]/jp [num] -- Changes how high you jump 50 is default,\n[22] hipheight [num]/hh [num] -- Changes how high you float 0 is default,\n[23] default -- Changes your speed, jumppower and hipheight to default values,\n[24] annoy [plr] -- Loop teleports you to the player,\n[25] unannoy,\n[26] headwalk [plr] -- Loop teleports you to the player head,\n[27] unheadwalk,\n[28] nolimbs -- Removes your arms and legs,\n[29] god -- Gives you FE Godmode,\n[30] drophats -- Drops your accessories,\n[31] droptool -- Drops any tool you have equipped,\n[32] loopdhats -- Loop drops your accessories,\n[33] unloopdhats,\n[34] loopdtool -- Loop drops any tools you have equipped,\n[35] unloopdtool,\n[36] invisible -- Gives you invisibility CREDIT TO TIMELESS,\n[37] view [plr] -- Changes your camera to the player character,\n[38] unview,\n[39] goto [plr] -- Teleports you to player,\n[40] fly -- Allows you to fly,\n[41] unfly,\n[42] chat [msg] -- Makes you chat a message,\n[43] spam [msg] -- Spams a message,\n[44] unspam,\n[45] spamwait [num] -- Changes delay of chatting a message for the spam command in seconds default is 1 second,\n[46] pmspam [plr] -- Spams a player in private message,\n[47] unpmspam,\n[48] cfreeze [plr] -- Freezes a player on your client, they will only be frozen for you,\n[49] uncfreeze [plr],\n[50] unlockws -- Unlocks the workspace,\n[51] lockws -- Locks the workspace,\n[52] btools -- Gives you btools that will only show to you useful for deleting certain blocks only for you,\n[53] pstand -- Enables platform stand,\n[54] unpstand -- Disables platform stand,\n[55] blockhead -- Removes your head mesh,\n[56] sit,\n[57] bringobj [obj] -- Only shows on client, brings an object/part to you constantly, can be used to bring healing parts, weapons, money etc, type in exact name,\n[58] wsvis [num] -- Changes visibility of workspace parts, num should be between 0 and 1, only shows client sided,\n[59] hypertotal -- Loads in my FE GUI Hypertotal,\n[60] cmds -- Prints all commands,\n[61] rmeshhats/blockhats -- Removes the meshes of all your accessories aka block hats,\n[62] rmeshtool/blocktool -- Removes the mesh of the tool you have equipped aka block tool,\n[63] spinner -- Makes you spin,\n[64] nospinner,\n[65] reach [num] -- Gives you reach, mostly used for swords, say ;reachd for default and enter number after for custom,\n[66] noreach -- Removes reach, must have tool equipped,\n[67] rkill [plr] -- Kills you and the player, use kill to just kill the player without dying,\n[68] tp me [plr] -- Alternative to goto,\n[69] cbring [plr] -- Brings player infront of you, shows only on client, allows you to do damage to player,\n[70] uncbring,\n[71] swap [plr] -- You need a tool! Swaps players position with yours and your position with players,\n[72] givetool [plr] -- Gives the tool you have equipped to the player,\n[73] glitch [plr] -- Glitches you and the player, looks very cool,\n[74] unglitch -- Unglitches you,\n[75] grespawn -- Alternative to normal respawn and usually works best for when you want to reset with FE Godmode,\n[76] explorer -- Loads up DEX,\n[77] reset -- Resets your character.,\n[78] anim [id] -- Applies an animation on you, must be created by ROBLOX,\n[79] animgui -- Loads up Energize animations GUI,\n[80] savepos -- Saves your current position,\n[81] loadpos -- Teleports you to your saved position,\n[82] bang [plr] -- 18+,\n[83] unbang,\n[84] delcmdbar -- Removes the command bar completely,\n[85] bringmod [obj] -- Brings all the parts in a model, client only, comes from ;bringobj enter exact name of model,\n[86] shutdown -- Uses harkinians script to shutdown server,\n[87] respawn -- If grespawn doesnt work you can use respawn,\n[88] delobj [obj] -- Deletes a certain brick in workspace, client sided,\n[89] getplrs -- Prints all players in game,\n[90] deldecal -- Deletes all decals client sided,\n[91] opfinality -- Loads in my FE GUI Opfinality,\n[92] remotes -- Prints all remotes in the game in the console when added,\n[93] noremotes -- Stops printing remotes,\n[94] tpdefault -- Stops all loop teleports to a player,\n[95] stopsit -- Will not allow you to sit,\n[96] gosit -- Allows you to sit,\n[97] clicktp -- Enables click tp,\n[98] noclicktp -- Disables click tp,\n[99] toolson -- If any tools are dropped in the workspace you will automatically get them,\n[100] toolsoff -- Stops ;toolson,\n[101] version -- Gets the admin version, \n This list of commands is NOT showing everything, go to my thread in the pastebin link to see ALL commands."
  4548. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  4549. TextLabel.TextSize = 15
  4550. TextLabel.TextWrapped = true
  4551. TextLabel.TextXAlignment = Enum.TextXAlignment.Left
  4552. TextLabel.TextYAlignment = Enum.TextYAlignment.Top
  4553. closegui.Name = "closegui"
  4554. closegui.Parent = CMDSFRAME
  4555. closegui.BackgroundColor3 = Color3.new(0.890196, 0.223529, 0.0588235)
  4556. closegui.BorderSizePixel = 0
  4557. closegui.Position = UDim2.new(0.995000005, 0, 0, 0)
  4558. closegui.Size = UDim2.new(0.0545952693, 0, 0.0728644878, 0)
  4559. closegui.Font = Enum.Font.SourceSansBold
  4560. closegui.FontSize = Enum.FontSize.Size24
  4561. closegui.Text = "X"
  4562. closegui.TextColor3 = Color3.new(1, 1, 1)
  4563. closegui.TextSize = 20
  4564.  
  4565. closegui.MouseButton1Click:connect(function()
  4566. CMDSFRAME.Visible = false
  4567. end)
  4568.  
  4569. game:GetService('RunService').Stepped:connect(function()
  4570. if spin then
  4571. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[spinplr.Name].Character.HumanoidRootPart.CFrame
  4572. end
  4573. if followed then
  4574. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[flwplr.Name].Character.HumanoidRootPart.CFrame + game:GetService("Players")[flwplr.Name].Character.HumanoidRootPart.CFrame.lookVector * -5
  4575. end
  4576. if traill then
  4577. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[trlplr.Name].Character.HumanoidRootPart.CFrame + game:GetService("Players")[trlplr.Name].Character.HumanoidRootPart.CFrame.lookVector * 5
  4578. end
  4579. if annoying then
  4580. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[annplr.Name].Character.HumanoidRootPart.CFrame
  4581. end
  4582. if hwalk then
  4583. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[hdwplr.Name].Character.HumanoidRootPart.CFrame + Vector3.new(0, 4, 0)
  4584. end
  4585. if staring then
  4586. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(lplayer.Character.Torso.Position, game:GetService("Players")[stareplr.Name].Character.Torso.Position)
  4587. end
  4588. end)
  4589. game:GetService('RunService').Stepped:connect(function()
  4590. if noclip then
  4591. if lplayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  4592. lplayer.Character.Head.CanCollide = false
  4593. lplayer.Character.Torso.CanCollide = false
  4594. lplayer.Character["Left Leg"].CanCollide = false
  4595. lplayer.Character["Right Leg"].CanCollide = false
  4596. else
  4597. lplayer.Character.Humanoid:ChangeState(11)
  4598. end
  4599. end
  4600. if changingstate then
  4601. lplayer.Character.Humanoid:ChangeState(statechosen)
  4602. end
  4603. end)
  4604. game:GetService('RunService').Stepped:connect(function()
  4605. if droppinghats then
  4606. for i,v in pairs(lplayer.Character:GetChildren()) do
  4607. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  4608. v.Parent = workspace
  4609. end
  4610. end
  4611. end
  4612. if droppingtools then
  4613. for i,v in pairs(lplayer.Character:GetChildren()) do
  4614. if (v:IsA("Tool")) then
  4615. v.Parent = workspace
  4616. end
  4617. end
  4618. end
  4619. if removingmeshhats then
  4620. for i,v in pairs(lplayer.Character:GetChildren()) do
  4621. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  4622. v.Handle.Mesh:Destroy()
  4623. end
  4624. end
  4625. end
  4626. if removingmeshtool then
  4627. for i,v in pairs(lplayer.Character:GetChildren()) do
  4628. if (v:IsA("Tool")) then
  4629. v.Handle.Mesh:Destroy()
  4630. end
  4631. end
  4632. end
  4633. end)
  4634. game:GetService('RunService').Stepped:connect(function()
  4635. if banpl then
  4636. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[bplrr].Character.HumanoidRootPart.CFrame
  4637. end
  4638. end)
  4639. game:GetService('RunService').Stepped:connect(function()
  4640. if stopsitting then
  4641. lplayer.Character.Humanoid.Sit = false
  4642. end
  4643. end)
  4644.  
  4645. plr = lplayer
  4646. hum = plr.Character.HumanoidRootPart
  4647. mouse = plr:GetMouse()
  4648. mouse.KeyDown:connect(function(key)
  4649. if key == "e" then
  4650. if mouse.Target then
  4651. if clickgoto then
  4652. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  4653. elseif clickdel then
  4654. mouse.Target:Destroy()
  4655. end
  4656. end
  4657. end
  4658. end)
  4659.  
  4660. game:GetService("Workspace").ChildAdded:connect(function(part)
  4661. if gettingtools then
  4662. if part:IsA("Tool") then
  4663. part.Handle.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  4664. end
  4665. end
  4666. end)
  4667.  
  4668. lplayer.Chatted:Connect(function(msg)
  4669. if string.sub(msg, 1, 6) == (prefix.."kill ") then
  4670. if string.sub(msg, 7) == "me" then
  4671. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(100000,0,100000)
  4672. else
  4673. for i,v in pairs(GetPlayer(string.sub(msg, 7)))do
  4674. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  4675. lplayer.Character.Humanoid.Name = 1
  4676. local l = lplayer.Character["1"]:Clone()
  4677. l.Parent = lplayer.Character
  4678. l.Name = "Humanoid"
  4679. wait(0.1)
  4680. lplayer.Character["1"]:Destroy()
  4681. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4682. lplayer.Character.Animate.Disabled = true
  4683. wait(0.1)
  4684. lplayer.Character.Animate.Disabled = false
  4685. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4686. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4687. lplayer.Character.Humanoid:EquipTool(v)
  4688. end
  4689. local function tp(player,player2)
  4690. local char1,char2=player.Character,player2.Character
  4691. if char1 and char2 then
  4692. char1:MoveTo(char2.Head.Position)
  4693. end
  4694. end
  4695. wait(0.1)
  4696. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4697. wait(0.2)
  4698. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4699. wait(0.5)
  4700. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  4701. wait(0.7)
  4702. tp(lplayer,game:GetService("Players")[v.Name])
  4703. wait(0.7)
  4704. lplayer.Character.HumanoidRootPart.CFrame = NOW
  4705. game:GetService("StarterGui"):SetCore("SendNotification", {
  4706. Title = "Tools needed!";
  4707. Text = "You need a tool in your backpack for this command!";
  4708. })
  4709. end
  4710. end
  4711. end
  4712. if string.sub(msg, 1, 7) == (prefix.."bring ") then
  4713. for i,v in pairs(GetPlayer(string.sub(msg, 8)))do
  4714. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  4715. lplayer.Character.Humanoid.Name = 1
  4716. local l = lplayer.Character["1"]:Clone()
  4717. l.Parent = lplayer.Character
  4718. l.Name = "Humanoid"
  4719. wait(0.1)
  4720. lplayer.Character["1"]:Destroy()
  4721. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4722. lplayer.Character.Animate.Disabled = true
  4723. wait(0.1)
  4724. lplayer.Character.Animate.Disabled = false
  4725. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4726. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4727. lplayer.Character.Humanoid:EquipTool(v)
  4728. end
  4729. local function tp(player,player2)
  4730. local char1,char2=player.Character,player2.Character
  4731. if char1 and char2 then
  4732. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  4733. end
  4734. end
  4735. local function getout(player,player2)
  4736. local char1,char2=player.Character,player2.Character
  4737. if char1 and char2 then
  4738. char1:MoveTo(char2.Head.Position)
  4739. end
  4740. end
  4741. tp(game:GetService("Players")[v.Name], lplayer)
  4742. wait(0.2)
  4743. tp(game:GetService("Players")[v.Name], lplayer)
  4744. wait(0.5)
  4745. lplayer.Character.HumanoidRootPart.CFrame = NOW
  4746. wait(0.5)
  4747. getout(lplayer, game:GetService("Players")[v.Name])
  4748. wait(0.3)
  4749. lplayer.Character.HumanoidRootPart.CFrame = NOW
  4750. game:GetService("StarterGui"):SetCore("SendNotification", {
  4751. Title = "Tools needed!";
  4752. Text = "You need a tool in your backpack for this command!";
  4753. })
  4754. end
  4755. end
  4756. if string.sub(msg, 1, 6) == (prefix.."spin ") then
  4757. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  4758. lplayer.Character.Humanoid.Name = 1
  4759. local l = lplayer.Character["1"]:Clone()
  4760. l.Parent = lplayer.Character
  4761. l.Name = "Humanoid"
  4762. wait(0.1)
  4763. lplayer.Character["1"]:Destroy()
  4764. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4765. lplayer.Character.Animate.Disabled = true
  4766. wait(0.1)
  4767. lplayer.Character.Animate.Disabled = false
  4768. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4769. lplayer.Character.Animate.Disabled = false
  4770. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4771. lplayer.Character.Humanoid:EquipTool(v)
  4772. end
  4773. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  4774. spinplr = v
  4775. wait(0.5)
  4776. spin = true
  4777. game:GetService("StarterGui"):SetCore("SendNotification", {
  4778. Title = "Tools needed!";
  4779. Text = "You need a tool in your backpack for this command!";
  4780. })
  4781. end
  4782. end
  4783. if string.sub(msg, 1, 7) == (prefix.."unspin") then
  4784. spin = false
  4785. end
  4786. if string.sub(msg, 1, 8) == (prefix.."attach ") then
  4787. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  4788. lplayer.Character.Humanoid.Name = 1
  4789. local l = lplayer.Character["1"]:Clone()
  4790. l.Parent = lplayer.Character
  4791. l.Name = "Humanoid"
  4792. wait(0.1)
  4793. lplayer.Character["1"]:Destroy()
  4794. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4795. lplayer.Character.Animate.Disabled = true
  4796. wait(0.1)
  4797. lplayer.Character.Animate.Disabled = false
  4798. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4799. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4800. lplayer.Character.Humanoid:EquipTool(v)
  4801. end
  4802. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  4803. wait(0.3)
  4804. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  4805. attplr = v
  4806. game:GetService("StarterGui"):SetCore("SendNotification", {
  4807. Title = "Tools needed!";
  4808. Text = "You need a tool in your backpack for this command!";
  4809. })
  4810. end
  4811. end
  4812. if string.sub(msg, 1, 10) == (prefix.."unattach ") then
  4813. for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
  4814. local function getout(player,player2)
  4815. local char1,char2=player.Character,player2.Character
  4816. if char1 and char2 then
  4817. char1:MoveTo(char2.Head.Position)
  4818. end
  4819. end
  4820. getout(lplayer, game:GetService("Players")[v.Name])
  4821. end
  4822. end
  4823. if string.sub(msg, 1, 8) == (prefix.."follow ") then
  4824. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  4825. followed = true
  4826. flwplr = v
  4827. end
  4828. end
  4829. if string.sub(msg, 1, 9) == (prefix.."unfollow") then
  4830. followed = false
  4831. end
  4832. if string.sub(msg, 1, 10) == (prefix.."freefall ") then
  4833. for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
  4834. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  4835. lplayer.Character.Humanoid.Name = 1
  4836. local l = lplayer.Character["1"]:Clone()
  4837. l.Parent = lplayer.Character
  4838. l.Name = "Humanoid"
  4839. wait(0.1)
  4840. lplayer.Character["1"]:Destroy()
  4841. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4842. lplayer.Character.Animate.Disabled = true
  4843. wait(0.1)
  4844. lplayer.Character.Animate.Disabled = false
  4845. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4846. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4847. lplayer.Character.Humanoid:EquipTool(v)
  4848. end
  4849. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4850. wait(0.2)
  4851. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4852. wait(0.6)
  4853. lplayer.Character.HumanoidRootPart.CFrame = NOW
  4854. wait(0.6)
  4855. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
  4856. game:GetService("StarterGui"):SetCore("SendNotification", {
  4857. Title = "Tools needed!";
  4858. Text = "You need a tool in your backpack for this command!";
  4859. })
  4860. end
  4861. end
  4862. if string.sub(msg, 1, 7) == (prefix.."trail ") then
  4863. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  4864. traill = true
  4865. trlplr = v
  4866. end
  4867. end
  4868. if string.sub(msg, 1, 8) == (prefix.."untrail") then
  4869. traill = false
  4870. end
  4871. if string.sub(msg, 1, 7) == (prefix.."orbit ") then
  4872. if string.sub(msg, 8) == "all" or string.sub(msg, 8) == "others" or string.sub(msg, 8) == "me" then
  4873. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  4874. else
  4875. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  4876. local o = Instance.new("RocketPropulsion")
  4877. o.Parent = lplayer.Character.HumanoidRootPart
  4878. o.Name = "Orbit"
  4879. o.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  4880. o:Fire()
  4881. noclip = true
  4882. end
  4883. end
  4884. end
  4885. if string.sub(msg, 1, 8) == (prefix.."unorbit") then
  4886. lplayer.Character.HumanoidRootPart.Orbit:Destroy()
  4887. noclip = false
  4888. end
  4889. if string.sub(msg, 1, 7) == (prefix.."fling ") then
  4890. if string.sub(msg, 8) == "all" or string.sub(msg, 8) == "others" or string.sub(msg, 8) == "me" then
  4891. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  4892. else
  4893. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  4894. local y = Instance.new("RocketPropulsion")
  4895. y.Parent = lplayer.Character.HumanoidRootPart
  4896. y.CartoonFactor = 1
  4897. y.MaxThrust = 800000
  4898. y.MaxSpeed = 1000
  4899. y.ThrustP = 200000
  4900. y.Name = "Fling"
  4901. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  4902. y.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  4903. y:Fire()
  4904. noclip = true
  4905. end
  4906. end
  4907. end
  4908. if string.sub(msg, 1, 8) == (prefix.."unfling") then
  4909. noclip = false
  4910. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  4911. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  4912. wait(0.4)
  4913. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  4914. end
  4915. if string.sub(msg, 1, 8) == (prefix.."fecheck") then
  4916. if game:GetService("Workspace").FilteringEnabled == true then
  4917. warn("FE is Enabled (Filtering Enabled)")
  4918. game:GetService("StarterGui"):SetCore("SendNotification", {
  4919. Title = "FE is Enabled";
  4920. Text = "Filtering Enabled. Enjoy using Reviz Admin!";
  4921. })
  4922. else
  4923. warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
  4924. game:GetService("StarterGui"):SetCore("SendNotification", {
  4925. Title = "FE is Disabled";
  4926. Text = "Filtering Disabled. Consider using a different admin script.";
  4927. })
  4928. end
  4929. end
  4930. if string.sub(msg, 1, 6) == (prefix.."void ") then
  4931. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  4932. lplayer.Character.Humanoid.Name = 1
  4933. local l = lplayer.Character["1"]:Clone()
  4934. l.Parent = lplayer.Character
  4935. l.Name = "Humanoid"
  4936. wait(0.1)
  4937. lplayer.Character["1"]:Destroy()
  4938. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  4939. lplayer.Character.Animate.Disabled = true
  4940. wait(0.1)
  4941. lplayer.Character.Animate.Disabled = false
  4942. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  4943. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  4944. lplayer.Character.Humanoid:EquipTool(v)
  4945. end
  4946. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4947. wait(0.2)
  4948. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  4949. wait(0.6)
  4950. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(999999999999999,0,999999999999999)
  4951. game:GetService("StarterGui"):SetCore("SendNotification", {
  4952. Title = "Tools needed!";
  4953. Text = "You need a tool in your backpack for this command!";
  4954. })
  4955. end
  4956. end
  4957. if string.sub(msg, 1, 7) == (prefix.."noclip") then
  4958. noclip = true
  4959. game:GetService("StarterGui"):SetCore("SendNotification", {
  4960. Title = "Noclip enabled";
  4961. Text = "Type ;clip to disable";
  4962. })
  4963. end
  4964. if string.sub(msg, 1, 5) == (prefix.."clip") then
  4965. noclip = false
  4966. game:GetService("StarterGui"):SetCore("SendNotification", {
  4967. Title = "Noclip disabled";
  4968. Text = "Type ;noclip to enable";
  4969. })
  4970. end
  4971. if string.sub(msg, 1, 7) == (prefix.."speed ") then
  4972. lplayer.Character.Humanoid.WalkSpeed = (string.sub(msg, 8))
  4973. end
  4974. if string.sub(msg, 1, 4) == (prefix.."ws ") then
  4975. lplayer.Character.Humanoid.WalkSpeed = (string.sub(msg, 5))
  4976. end
  4977. if string.sub(msg, 1, 11) == (prefix.."hipheight ") then
  4978. lplayer.Character.Humanoid.HipHeight = (string.sub(msg, 12))
  4979. end
  4980. if string.sub(msg, 1, 4) == (prefix.."hh ") then
  4981. lplayer.Character.Humanoid.HipHeight = (string.sub(msg, 5))
  4982. end
  4983. if string.sub(msg, 1, 11) == (prefix.."jumppower ") then
  4984. lplayer.Character.Humanoid.JumpPower = (string.sub(msg, 12))
  4985. end
  4986. if string.sub(msg, 1, 4) == (prefix.."jp ") then
  4987. lplayer.Character.Humanoid.JumpPower = (string.sub(msg, 5))
  4988. end
  4989. if string.sub(msg, 1, 8) == (prefix.."default") then
  4990. lplayer.Character.Humanoid.JumpPower = 50
  4991. lplayer.Character.Humanoid.WalkSpeed = 16
  4992. lplayer.Character.Humanoid.HipHeight = 0
  4993. end
  4994. if string.sub(msg, 1, 7) == (prefix.."annoy ") then
  4995. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  4996. annoying = true
  4997. annplr = v
  4998. end
  4999. end
  5000. if string.sub(msg, 1, 8) == (prefix.."unannoy") then
  5001. annoying = false
  5002. end
  5003. if string.sub(msg, 1, 10) == (prefix.."headwalk ") then
  5004. for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
  5005. hwalk = true
  5006. hdwplr = v
  5007. end
  5008. end
  5009. if string.sub(msg, 1, 11) == (prefix.."unheadwalk") then
  5010. hwalk = false
  5011. end
  5012. if string.sub(msg, 1, 8) == (prefix.."nolimbs") then
  5013. lplayer.Character["Left Leg"]:Destroy()
  5014. lplayer.Character["Left Arm"]:Destroy()
  5015. lplayer.Character["Right Leg"]:Destroy()
  5016. lplayer.Character["Right Arm"]:Destroy()
  5017. end
  5018. if string.sub(msg, 1, 4) == (prefix.."god") then
  5019. lplayer.Character.Humanoid.Name = 1
  5020. local l = lplayer.Character["1"]:Clone()
  5021. l.Parent = lplayer.Character
  5022. l.Name = "Humanoid"
  5023. wait(0.1)
  5024. lplayer.Character["1"]:Destroy()
  5025. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  5026. lplayer.Character.Animate.Disabled = true
  5027. wait(0.1)
  5028. lplayer.Character.Animate.Disabled = false
  5029. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  5030. game:GetService("StarterGui"):SetCore("SendNotification", {
  5031. Title = "FE Godmode enabled";
  5032. Text = "Use ;grespawn or ;respawn to remove";
  5033. })
  5034. end
  5035. if string.sub(msg, 1, 9) == (prefix.."drophats") then
  5036. for i,v in pairs(lplayer.Character:GetChildren()) do
  5037. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  5038. v.Parent = workspace
  5039. end
  5040. end
  5041. end
  5042. if string.sub(msg, 1, 9) == (prefix.."droptool") then
  5043. for i,v in pairs(lplayer.Character:GetChildren()) do
  5044. if (v:IsA("Tool")) then
  5045. v.Parent = workspace
  5046. end
  5047. end
  5048. end
  5049. if string.sub(msg, 1, 10) == (prefix.."loopdhats") then
  5050. droppinghats = true
  5051. game:GetService("StarterGui"):SetCore("SendNotification", {
  5052. Title = "Loop Drop Enabled";
  5053. Text = "Type ;unloopdhats to disable";
  5054. })
  5055. end
  5056. if string.sub(msg, 1, 12) == (prefix.."unloopdhats") then
  5057. droppinghats = false
  5058. game:GetService("StarterGui"):SetCore("SendNotification", {
  5059. Title = "Loop Drop Disabled";
  5060. Text = "Type ;loopdhats to enable.";
  5061. })
  5062. end
  5063. if string.sub(msg, 1, 10) == (prefix.."loopdtool") then
  5064. droppingtools = true
  5065. game:GetService("StarterGui"):SetCore("SendNotification", {
  5066. Title = "Loop Drop Enabled";
  5067. Text = "Type ;unloopdtool to disable";
  5068. })
  5069. end
  5070. if string.sub(msg, 1, 12) == (prefix.."unloopdtool") then
  5071. droppingtools = false
  5072. game:GetService("StarterGui"):SetCore("SendNotification", {
  5073. Title = "Loop Drop Disabled";
  5074. Text = "Type ;loopdtool to enable.";
  5075. })
  5076. end
  5077. if string.sub(msg, 1, 10) == (prefix.."invisible") then -- Credit to Timeless
  5078. Local = game:GetService('Players').LocalPlayer
  5079. Char = Local.Character
  5080. touched,tpdback = false, false
  5081. box = Instance.new('Part',workspace)
  5082. box.Anchored = true
  5083. box.CanCollide = true
  5084. box.Size = Vector3.new(10,1,10)
  5085. box.Position = Vector3.new(0,10000,0)
  5086. box.Touched:connect(function(part)
  5087. if (part.Parent.Name == Local.Name) then
  5088. if touched == false then
  5089. touched = true
  5090. function apply()
  5091. if script.Disabled ~= true then
  5092. no = Char.HumanoidRootPart:Clone()
  5093. wait(.25)
  5094. Char.HumanoidRootPart:Destroy()
  5095. no.Parent = Char
  5096. Char:MoveTo(loc)
  5097. touched = false
  5098. end end
  5099. if Char then
  5100. apply()
  5101. end
  5102. end
  5103. end
  5104. end)
  5105. repeat wait() until Char
  5106. loc = Char.HumanoidRootPart.Position
  5107. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
  5108. game:GetService("StarterGui"):SetCore("SendNotification", {
  5109. Title = "Invisibility enabled!";
  5110. Text = "Reset or use ;respawn to remove.";
  5111. })
  5112. end
  5113. if string.sub(msg, 1, 6) == (prefix.."view ") then
  5114. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  5115. if game:GetService("Players")[v.Name].Character.Humanoid then
  5116. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Humanoid
  5117. else
  5118. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  5119. end
  5120. end
  5121. end
  5122. if string.sub(msg, 1, 7) == (prefix.."unview") then
  5123. if lplayer.Character.Humanoid then
  5124. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  5125. else
  5126. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  5127. end
  5128. end
  5129. if string.sub(msg, 1, 6) == (prefix.."goto ") then
  5130. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  5131. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  5132. end
  5133. end
  5134. if string.sub(msg, 1, 4) == (prefix.."fly") then
  5135. repeat wait() until lplayer and lplayer.Character and lplayer.Character:FindFirstChild('HumanoidRootPart') and lplayer.Character:FindFirstChild('Humanoid')
  5136. repeat wait() until Mouse
  5137.  
  5138. local T = lplayer.Character.HumanoidRootPart
  5139. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  5140. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  5141. local SPEED = speedget
  5142.  
  5143. local function fly()
  5144. flying = true
  5145. local BG = Instance.new('BodyGyro', T)
  5146. local BV = Instance.new('BodyVelocity', T)
  5147. BG.P = 9e4
  5148. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  5149. BG.cframe = T.CFrame
  5150. BV.velocity = Vector3.new(0, 0.1, 0)
  5151. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  5152. spawn(function()
  5153. repeat wait()
  5154. lplayer.Character.Humanoid.PlatformStand = true
  5155. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  5156. SPEED = 50
  5157. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  5158. SPEED = 0
  5159. end
  5160. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  5161. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  5162. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  5163. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  5164. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  5165. else
  5166. BV.velocity = Vector3.new(0, 0.1, 0)
  5167. end
  5168. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  5169. until not flying
  5170. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  5171. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  5172. SPEED = 0
  5173. BG:destroy()
  5174. BV:destroy()
  5175. lplayer.Character.Humanoid.PlatformStand = false
  5176. end)
  5177. end
  5178. Mouse.KeyDown:connect(function(KEY)
  5179. if KEY:lower() == 'w' then
  5180. CONTROL.F = speedfly
  5181. elseif KEY:lower() == 's' then
  5182. CONTROL.B = -speedfly
  5183. elseif KEY:lower() == 'a' then
  5184. CONTROL.L = -speedfly
  5185. elseif KEY:lower() == 'd' then
  5186. CONTROL.R = speedfly
  5187. end
  5188. end)
  5189. Mouse.KeyUp:connect(function(KEY)
  5190. if KEY:lower() == 'w' then
  5191. CONTROL.F = 0
  5192. elseif KEY:lower() == 's' then
  5193. CONTROL.B = 0
  5194. elseif KEY:lower() == 'a' then
  5195. CONTROL.L = 0
  5196. elseif KEY:lower() == 'd' then
  5197. CONTROL.R = 0
  5198. end
  5199. end)
  5200. fly()
  5201. end
  5202. if string.sub(msg, 1, 6) == (prefix.."unfly") then
  5203. flying = false
  5204. lplayer.Character.Humanoid.PlatformStand = false
  5205. end
  5206. if string.sub(msg, 1, 6) == (prefix.."chat ") then
  5207. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer((string.sub(msg, 7)), "All")
  5208. end
  5209. if string.sub(msg, 1, 6) == (prefix.."spam ") then
  5210. spamtext = (string.sub(msg, 7))
  5211. spamming = true
  5212. end
  5213. if string.sub(msg, 1, 7) == (prefix.."unspam") then
  5214. spamming = false
  5215. end
  5216. if string.sub(msg, 1, 10) == (prefix.."spamwait ") then
  5217. spamdelay = (string.sub(msg, 11))
  5218. end
  5219. if string.sub(msg, 1, 8) == (prefix.."pmspam ") then
  5220. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  5221. pmspammed = v.Name
  5222. spammingpm = true
  5223. end
  5224. end
  5225. if string.sub(msg, 1, 9) == (prefix.."unpmspam") then
  5226. spammingpm = false
  5227. end
  5228. if string.sub(msg, 1, 9) == (prefix.."cfreeze ") then
  5229. for i,v in pairs(GetPlayer(string.sub(msg, 10))) do
  5230. v.Character["Left Leg"].Anchored = true
  5231. v.Character["Left Arm"].Anchored = true
  5232. v.Character["Right Leg"].Anchored = true
  5233. v.Character["Right Arm"].Anchored = true
  5234. v.Character.Torso.Anchored = true
  5235. v.Character.Head.Anchored = true
  5236. end
  5237. end
  5238. if string.sub(msg, 1, 11) == (prefix.."uncfreeze ") then
  5239. for i,v in pairs(GetPlayer(string.sub(msg, 12))) do
  5240. v.Character["Left Leg"].Anchored = false
  5241. v.Character["Left Arm"].Anchored = false
  5242. v.Character["Right Leg"].Anchored = false
  5243. v.Character["Right Arm"].Anchored = false
  5244. v.Character.Torso.Anchored = false
  5245. v.Character.Head.Anchored = false
  5246. end
  5247. end
  5248. if string.sub(msg, 1, 9) == (prefix.."unlockws") then
  5249. local a = game:GetService("Workspace"):getChildren()
  5250. for i = 1, #a do
  5251. if a[i].className == "Part" then
  5252. a[i].Locked = false
  5253. elseif a[i].className == "Model" then
  5254. local r = a[i]:getChildren()
  5255. for i = 1, #r do
  5256. if r[i].className == "Part" then
  5257. r[i].Locked = false
  5258. end
  5259. end
  5260. end
  5261. end
  5262. game:GetService("StarterGui"):SetCore("SendNotification", {
  5263. Title = "Success!";
  5264. Text = "Workspace unlocked. Use ;lockws to lock.";
  5265. })
  5266. end
  5267. if string.sub(msg, 1, 7) == (prefix.."lockws") then
  5268. local a = game:GetService("Workspace"):getChildren()
  5269. for i = 1, #a do
  5270. if a[i].className == "Part" then
  5271. a[i].Locked = true
  5272. elseif a[i].className == "Model" then
  5273. local r = a[i]:getChildren()
  5274. for i = 1, #r do
  5275. if r[i].className == "Part" then
  5276. r[i].Locked = true
  5277. end
  5278. end
  5279. end
  5280. end
  5281. end
  5282. if string.sub(msg, 1, 7) == (prefix.."btools") then
  5283. local Clone_T = Instance.new("HopperBin",lplayer.Backpack)
  5284. Clone_T.BinType = "Clone"
  5285. local Destruct = Instance.new("HopperBin",lplayer.Backpack)
  5286. Destruct.BinType = "Hammer"
  5287. local Hold_T = Instance.new("HopperBin",lplayer.Backpack)
  5288. Hold_T.BinType = "Grab"
  5289. end
  5290. if string.sub(msg, 1, 7) == (prefix.."pstand") then
  5291. lplayer.Character.Humanoid.PlatformStand = true
  5292. end
  5293. if string.sub(msg, 1, 9) == (prefix.."unpstand") then
  5294. lplayer.Character.Humanoid.PlatformStand = false
  5295. end
  5296. if string.sub(msg, 1, 10) == (prefix.."blockhead") then
  5297. lplayer.Character.Head.Mesh:Destroy()
  5298. end
  5299. if string.sub(msg, 1, 4) == (prefix.."sit") then
  5300. lplayer.Character.Humanoid.Sit = true
  5301. end
  5302. if string.sub(msg, 1, 10) == (prefix.."bringobj ") then
  5303. local function bringobjw()
  5304. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  5305. if obj.Name == (string.sub(msg, 11)) then
  5306. obj.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  5307. obj.CanCollide = false
  5308. obj.Transparency = 0.7
  5309. wait()
  5310. obj.CFrame = lplayer.Character["Left Leg"].CFrame
  5311. wait()
  5312. obj.CFrame = lplayer.Character["Right Leg"].CFrame
  5313. wait()
  5314. obj.CFrame = lplayer.Character["Head"].CFrame
  5315. end
  5316. end
  5317. end
  5318. while wait() do
  5319. bringobjw()
  5320. end
  5321. game:GetService("StarterGui"):SetCore("SendNotification", {
  5322. Title = "BringObj";
  5323. Text = "BringObj enabled.";
  5324. })
  5325. end
  5326. if string.sub(msg, 1, 7) == (prefix.."wsvis ") then
  5327. vis = (string.sub(msg, 8))
  5328. local a = game:GetService("Workspace"):GetDescendants()
  5329. for i = 1, #a do
  5330. if a[i].className == "Part" then
  5331. a[i].Transparency = vis
  5332. elseif a[i].className == "Model" then
  5333. local r = a[i]:getChildren()
  5334. for i = 1, #r do
  5335. if r[i].className == "Part" then
  5336. r[i].Transparency = vis
  5337. end
  5338. end
  5339. end
  5340. end
  5341. end
  5342. if string.sub(msg, 1, 11) == (prefix.."hypertotal") then
  5343. loadstring(game:GetObjects("rbxassetid://1255063809")[1].Source)()
  5344. game:GetService("StarterGui"):SetCore("SendNotification", {
  5345. Title = "Success!";
  5346. Text = "HyperTotal GUI Loaded!";
  5347. })
  5348. end
  5349. if string.sub(msg, 1, 5) == (prefix.."cmds") then
  5350. CMDSFRAME.Visible = true
  5351. end
  5352. if string.sub(msg, 1, 10) == (prefix.."rmeshhats") then
  5353. for i,v in pairs(lplayer.Character:GetChildren()) do
  5354. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  5355. v.Handle.Mesh:Destroy()
  5356. end
  5357. end
  5358. end
  5359. if string.sub(msg, 1, 10) == (prefix.."blockhats") then
  5360. for i,v in pairs(lplayer.Character:GetChildren()) do
  5361. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  5362. v.Handle.Mesh:Destroy()
  5363. end
  5364. end
  5365. end
  5366. if string.sub(msg, 1, 10) == (prefix.."rmeshtool") then
  5367. for i,v in pairs(lplayer.Character:GetChildren()) do
  5368. if (v:IsA("Tool")) then
  5369. v.Handle.Mesh:Destroy()
  5370. end
  5371. end
  5372. end
  5373. if string.sub(msg, 1, 10) == (prefix.."blocktool") then
  5374. for i,v in pairs(lplayer.Character:GetChildren()) do
  5375. if (v:IsA("Tool")) then
  5376. v.Handle.Mesh:Destroy()
  5377. end
  5378. end
  5379. end
  5380. if string.sub(msg, 1, 8) == (prefix.."spinner") then
  5381. local p = Instance.new("RocketPropulsion")
  5382. p.Parent = lplayer.Character.HumanoidRootPart
  5383. p.Name = "Spinner"
  5384. p.Target = lplayer.Character["Left Arm"]
  5385. p:Fire()
  5386. game:GetService("StarterGui"):SetCore("SendNotification", {
  5387. Title = "Spinner enabled";
  5388. Text = "Type ;nospinner to disable.";
  5389. })
  5390. end
  5391. if string.sub(msg, 1, 10) == (prefix.."nospinner") then
  5392. lplayer.Character.HumanoidRootPart.Spinner:Destroy()
  5393. end
  5394. if string.sub(msg, 1, 7) == (prefix.."reachd") then
  5395. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  5396. if v:isA("Tool") then
  5397. local a = Instance.new("SelectionBox",v.Handle)
  5398. a.Adornee = v.Handle
  5399. v.Handle.Size = Vector3.new(0.5,0.5,60)
  5400. v.GripPos = Vector3.new(0,0,0)
  5401. lplayer.Character.Humanoid:UnequipTools()
  5402. end
  5403. end
  5404. game:GetService("StarterGui"):SetCore("SendNotification", {
  5405. Title = "Reach applied!";
  5406. Text = "Applied to equipped sword. Use ;noreach to disable.";
  5407. })
  5408. end
  5409. if string.sub(msg, 1, 7) == (prefix.."reach ") then
  5410. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  5411. if v:isA("Tool") then
  5412. handleSize = v.Handle.Size
  5413. wait()
  5414. local a = Instance.new("SelectionBox",v.Handle)
  5415. a.Name = "a"
  5416. a.Adornee = v.Handle
  5417. v.Handle.Size = Vector3.new(0.5,0.5,(string.sub(msg, 8)))
  5418. v.GripPos = Vector3.new(0,0,0)
  5419. lplayer.Character.Humanoid:UnequipTools()
  5420. end
  5421. end
  5422. game:GetService("StarterGui"):SetCore("SendNotification", {
  5423. Title = "Reach applied!";
  5424. Text = "Applied to equipped sword. Use ;noreach to disable.";
  5425. })
  5426. end
  5427. if string.sub(msg, 1, 8) == (prefix.."noreach") then
  5428. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  5429. if v:isA("Tool") then
  5430. v.Handle.a:Destroy()
  5431. v.Handle.Size = handleSize
  5432. end
  5433. end
  5434. game:GetService("StarterGui"):SetCore("SendNotification", {
  5435. Title = "Reach removed!";
  5436. Text = "Removed reach from equipped sword.";
  5437. })
  5438. end
  5439. if string.sub(msg, 1, 7) == (prefix.."rkill ") then
  5440. for i,v in pairs(GetPlayer(string.sub(msg, 8)))do
  5441. lplayer.Character.Humanoid.Name = 1
  5442. local l = lplayer.Character["1"]:Clone()
  5443. l.Parent = lplayer.Character
  5444. l.Name = "Humanoid"
  5445. wait(0.1)
  5446. lplayer.Character["1"]:Destroy()
  5447. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  5448. lplayer.Character.Animate.Disabled = true
  5449. wait(0.1)
  5450. lplayer.Character.Animate.Disabled = false
  5451. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  5452. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  5453. lplayer.Character.Humanoid:EquipTool(v)
  5454. end
  5455. wait(0.1)
  5456. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  5457. wait(0.2)
  5458. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  5459. wait(0.5)
  5460. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  5461. game:GetService("StarterGui"):SetCore("SendNotification", {
  5462. Title = "Tools needed!";
  5463. Text = "You need a tool in your backpack for this command!";
  5464. })
  5465. end
  5466. end
  5467. if string.sub(msg, 1, 7) == (prefix.."tp me ") then
  5468. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  5469. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  5470. end
  5471. end
  5472. if string.sub(msg, 1, 8) == (prefix.."cbring ") then
  5473. if (string.sub(msg, 9)) == "all" or (string.sub(msg, 9)) == "All" or (string.sub(msg, 9)) == "ALL" then
  5474. cbringall = true
  5475. else
  5476. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  5477. brplr = v.Name
  5478. end
  5479. end
  5480. cbring = true
  5481. end
  5482. if string.sub(msg, 1, 9) == (prefix.."uncbring") then
  5483. cbring = false
  5484. cbringall = false
  5485. end
  5486. if string.sub(msg, 1, 6) == (prefix.."swap ") then
  5487. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  5488. local NOWPLR = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  5489. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  5490. lplayer.Character.Humanoid.Name = 1
  5491. local l = lplayer.Character["1"]:Clone()
  5492. l.Parent = lplayer.Character
  5493. l.Name = "Humanoid"
  5494. wait(0.1)
  5495. lplayer.Character["1"]:Destroy()
  5496. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  5497. lplayer.Character.Animate.Disabled = true
  5498. wait(0.1)
  5499. lplayer.Character.Animate.Disabled = false
  5500. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  5501. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  5502. lplayer.Character.Humanoid:EquipTool(v)
  5503. end
  5504. local function tp(player,player2)
  5505. local char1,char2=player.Character,player2.Character
  5506. if char1 and char2 then
  5507. char1:MoveTo(char2.Head.Position)
  5508. end
  5509. end
  5510. wait(0.1)
  5511. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  5512. wait(0.2)
  5513. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  5514. wait(0.5)
  5515. lplayer.Character.HumanoidRootPart.CFrame = NOW
  5516. wait(0.6)
  5517. tp(lplayer, game:GetService("Players")[v.Name])
  5518. wait(0.4)
  5519. lplayer.Character.HumanoidRootPart.CFrame = NOWPLR
  5520. game:GetService("StarterGui"):SetCore("SendNotification", {
  5521. Title = "Tools needed!";
  5522. Text = "You need a tool in your backpack for this command!";
  5523. })
  5524. end
  5525. end
  5526. if string.sub(msg, 1, 8) == (prefix.."glitch ") then
  5527. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  5528. lplayer.Character.Humanoid.Name = 1
  5529. local l = lplayer.Character["1"]:Clone()
  5530. l.Parent = lplayer.Character
  5531. l.Name = "Humanoid"
  5532. wait(0.1)
  5533. lplayer.Character["1"]:Destroy()
  5534. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  5535. lplayer.Character.Animate.Disabled = true
  5536. wait(0.1)
  5537. lplayer.Character.Animate.Disabled = false
  5538. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  5539. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  5540. lplayer.Character.Humanoid:EquipTool(v)
  5541. end
  5542. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  5543. wait(0.3)
  5544. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  5545. wait(0.4)
  5546. b = Instance.new("BodyForce")
  5547. b.Parent = lplayer.Character.HumanoidRootPart
  5548. b.Name = "Glitch"
  5549. b.Force = Vector3.new(100000000,5000,0)
  5550. game:GetService("StarterGui"):SetCore("SendNotification", {
  5551. Title = "Tools needed!";
  5552. Text = "You need a tool in your backpack for this command!";
  5553. })
  5554. end
  5555. end
  5556. if string.sub(msg, 1, 9) == (prefix.."unglitch") then
  5557. lplayer.Character.HumanoidRootPart.Glitch:Destroy()
  5558. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(10000,0,10000)
  5559. b = Instance.new("BodyForce")
  5560. b.Parent = lplayer.Character.HumanoidRootPart
  5561. b.Name = "unGlitch"
  5562. b.Force = Vector3.new(0,-5000000,0)
  5563. wait(2)
  5564. lplayer.Character.HumanoidRootPart.unGlitch:Destroy()
  5565. end
  5566. if string.sub(msg, 1, 9) == (prefix.."grespawn") then
  5567. lplayer.Character.Humanoid.Health = 0
  5568. wait(1)
  5569. lplayer.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
  5570. lplayer.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
  5571. end
  5572. if string.sub(msg, 1, 9) == (prefix.."explorer") then
  5573. loadstring(game:GetObjects("rbxassetid://492005721")[1].Source)()
  5574. game:GetService("StarterGui"):SetCore("SendNotification", {
  5575. Title = "Success!";
  5576. Text = "DEX Explorer has loaded.";
  5577. })
  5578. end
  5579. if string.sub(msg, 1, 6) == (prefix.."anim ") then
  5580. local Anim = Instance.new("Animation")
  5581. Anim.AnimationId = "rbxassetid://"..(string.sub(msg, 7))
  5582. local track = lplayer.Character.Humanoid:LoadAnimation(Anim)
  5583. track:Play(.1, 1, 1)
  5584. end
  5585. if string.sub(msg, 1, 8) == (prefix.."animgui") then
  5586. loadstring(game:GetObjects("rbxassetid://1202558084")[1].Source)()
  5587. game:GetService("StarterGui"):SetCore("SendNotification", {
  5588. Title = "Success!";
  5589. Text = "Energize Animations GUI has loaded.";
  5590. })
  5591. end
  5592. if string.sub(msg, 1, 8) == (prefix.."savepos") then
  5593. saved = lplayer.Character.HumanoidRootPart.CFrame
  5594. game:GetService("StarterGui"):SetCore("SendNotification", {
  5595. Title = "Position Saved";
  5596. Text = "Use ;loadpos to return to saved position.";
  5597. })
  5598. end
  5599. if string.sub(msg, 1, 8) == (prefix.."loadpos") then
  5600. lplayer.Character.HumanoidRootPart.CFrame = saved
  5601. end
  5602. if string.sub(msg, 1, 6) == (prefix.."bang ") then
  5603. for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
  5604. local Anim2 = Instance.new("Animation")
  5605. Anim2.AnimationId = "rbxassetid://148840371"
  5606. local track2 = lplayer.Character.Humanoid:LoadAnimation(Anim2)
  5607. track2:Play(.1, 1, 1)
  5608. bplrr = v.Name
  5609. banpl = true
  5610. end
  5611. end
  5612. if string.sub(msg, 1, 7) == (prefix.."unbang") then
  5613. banpl = false
  5614. end
  5615. if string.sub(msg, 1, 10) == (prefix.."bringmod ") then
  5616. local function bringmodw()
  5617. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  5618. if obj.Name == (string.sub(msg, 11)) then
  5619. for i,ch in pairs(obj:GetDescendants()) do
  5620. if (ch:IsA("BasePart")) then
  5621. ch.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  5622. ch.CanCollide = false
  5623. ch.Transparency = 0.7
  5624. wait()
  5625. ch.CFrame = lplayer.Character["Left Leg"].CFrame
  5626. wait()
  5627. ch.CFrame = lplayer.Character["Right Leg"].CFrame
  5628. wait()
  5629. ch.CFrame = lplayer.Character["Head"].CFrame
  5630. end
  5631. end
  5632. end
  5633. end
  5634. end
  5635. while wait() do
  5636. bringmodw()
  5637. end
  5638. game:GetService("StarterGui"):SetCore("SendNotification", {
  5639. Title = "BringMod";
  5640. Text = "BringMod enabled.";
  5641. })
  5642. end
  5643. if string.sub(msg, 1, 8) == (prefix.."respawn") then
  5644. local mod = Instance.new('Model', workspace) mod.Name = 're '..lplayer.Name
  5645. local hum = Instance.new('Humanoid', mod)
  5646. local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
  5647. lplayer.Character = mod
  5648. end
  5649. if string.sub(msg, 1, 9) == (prefix.."shutdown") then
  5650. game:GetService'RunService'.Stepped:Connect(function()
  5651. pcall(function()
  5652. for i,v in pairs(game:GetService'Players':GetPlayers()) do
  5653. if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  5654. for _,x in pairs(v.Character.Head:GetChildren()) do
  5655. if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true) end
  5656. end
  5657. end
  5658. end
  5659. end)
  5660. end)
  5661. game:GetService("StarterGui"):SetCore("SendNotification", {
  5662. Title = "Attempting Shutdown";
  5663. Text = "Shutdown Attempt has begun.";
  5664. })
  5665. end
  5666. if string.sub(msg, 1, 8) == (prefix.."delobj ") then
  5667. objtodel = (string.sub(msg, 9))
  5668. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  5669. if v.Name == objtodel then
  5670. v:Destroy()
  5671. end
  5672. end
  5673. end
  5674. if string.sub(msg, 1, 8) == (prefix.."getplrs") then
  5675. for i,v in pairs(game:GetService("Players"):GetPlayers())do
  5676. print(v)
  5677. end
  5678. game:GetService("StarterGui"):SetCore("SendNotification", {
  5679. Title = "Printed";
  5680. Text = "Players have been printed to console. (F9)";
  5681. })
  5682. end
  5683. if string.sub(msg, 1, 9) == (prefix.."deldecal") then
  5684. for i,v in pairs(game:GetService("Workspace"):GetDescendants())do
  5685. if (v:IsA("Decal")) then
  5686. v:Destroy()
  5687. end
  5688. end
  5689. end
  5690. if string.sub(msg, 1, 11) == (prefix.."opfinality") then
  5691. loadstring(game:GetObjects("rbxassetid://1294358929")[1].Source)()
  5692. game:GetService("StarterGui"):SetCore("SendNotification", {
  5693. Title = "Success!";
  5694. Text = "OpFinality GUI has loaded.";
  5695. })
  5696. end
  5697. if string.sub(msg, 1, 8) == (prefix.."remotes") then
  5698. remotes = true
  5699. added = true
  5700. game.DescendantAdded:connect(function(rmt)
  5701. if added == true then
  5702. if remotes == true then
  5703. if rmt:IsA("RemoteEvent") then
  5704. print("A RemoteEvent was added!")
  5705. print(" game." .. rmt:GetFullName() .. " | RemoteEvent")
  5706. print(" game." .. rmt:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  5707. end end end
  5708. end)
  5709. game.DescendantAdded:connect(function(rmtfnctn)
  5710. if added == true then
  5711. if remotes == true then
  5712. if rmtfnctn:IsA("RemoteFunction") then
  5713. warn("A RemoteFunction was added!")
  5714. warn(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction")
  5715. print(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  5716. end end end
  5717. end)
  5718.  
  5719. game.DescendantAdded:connect(function(bndfnctn)
  5720. if added == true then
  5721. if binds == true then
  5722. if bndfnctn:IsA("BindableFunction") then
  5723. print("A BindableFunction was added!")
  5724. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction")
  5725. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  5726. end end end
  5727. end)
  5728.  
  5729. game.DescendantAdded:connect(function(bnd)
  5730. if added == true then
  5731. if binds == true then
  5732. if bnd:IsA("BindableEvent") then
  5733. warn("A BindableEvent was added!")
  5734. warn(" game." .. bnd:GetFullName() .. " | BindableEvent")
  5735. print(" game." .. bnd:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  5736. end end end
  5737. end)
  5738.  
  5739.  
  5740. if binds == true then
  5741. for i,v in pairs(game:GetDescendants()) do
  5742. if v:IsA("BindableFunction") then
  5743. print(" game." .. v:GetFullName() .. " | BindableFunction")
  5744. print(" game." .. v:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  5745. end end
  5746. for i,v in pairs(game:GetDescendants()) do
  5747. if v:IsA("BindableEvent") then
  5748. warn(" game." .. v:GetFullName() .. " | BindableEvent")
  5749. print(" game." .. v:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  5750. end end
  5751. else
  5752. print("Off")
  5753. end
  5754. if remotes == true then
  5755. for i,v in pairs(game:GetDescendants()) do
  5756. if v:IsA("RemoteFunction") then
  5757. warn(" game." .. v:GetFullName() .. " | RemoteFunction")
  5758. print(" game." .. v:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  5759. end end
  5760. wait()
  5761. for i,v in pairs(game:GetDescendants()) do
  5762. if v:IsA("RemoteEvent") then
  5763. print(" game." .. v:GetFullName() .. " | RemoteEvent")
  5764. print(" game." .. v:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  5765. end end
  5766. else
  5767. print("Off")
  5768. end
  5769. game:GetService("StarterGui"):SetCore("SendNotification", {
  5770. Title = "Printing Remotes";
  5771. Text = "Type ;noremotes to disable.";
  5772. })
  5773. end
  5774. if string.sub(msg, 1, 10) == (prefix.."noremotes") then
  5775. remotes = false
  5776. added = false
  5777. game:GetService("StarterGui"):SetCore("SendNotification", {
  5778. Title = "Printing Remotes Disabled";
  5779. Text = "Type ;remotes to enable.";
  5780. })
  5781. end
  5782. if string.sub(msg, 1, 10) == (prefix.."tpdefault") then
  5783. spin = false
  5784. followed = false
  5785. traill = false
  5786. noclip = false
  5787. annoying = false
  5788. hwalk = false
  5789. cbringing = false
  5790. end
  5791. if string.sub(msg, 1, 8) == (prefix.."stopsit") then
  5792. stopsitting = true
  5793. end
  5794. if string.sub(msg, 1, 6) == (prefix.."gosit") then
  5795. stopsitting = false
  5796. end
  5797. if string.sub(msg, 1, 8) == (prefix.."version") then
  5798. print(adminversion)
  5799. game:GetService("StarterGui"):SetCore("SendNotification", {
  5800. Title = "Version";
  5801. Text = adminversion;
  5802. })
  5803. end
  5804. if string.sub(msg, 1, 8) == (prefix.."clicktp") then
  5805. clickgoto = true
  5806. game:GetService("StarterGui"):SetCore("SendNotification", {
  5807. Title = "Click TP";
  5808. Text = "Press E to teleport to mouse position, ;noclicktp to stop";
  5809. })
  5810. end
  5811. if string.sub(msg, 1, 9) == (prefix.."clickdel") then
  5812. clickdel = true
  5813. game:GetService("StarterGui"):SetCore("SendNotification", {
  5814. Title = "Click Delete";
  5815. Text = "Press E to delete part at mouse, ;noclickdel to stop";
  5816. })
  5817. end
  5818. if string.sub(msg, 1, 11) == (prefix.."noclickdel") then
  5819. clickdel = false
  5820. game:GetService("StarterGui"):SetCore("SendNotification", {
  5821. Title = "Click Delete";
  5822. Text = "Click delete has been disabled.";
  5823. })
  5824. end
  5825. if string.sub(msg, 1, 10) == (prefix.."noclicktp") then
  5826. clickgoto = false
  5827. game:GetService("StarterGui"):SetCore("SendNotification", {
  5828. Title = "Click TP";
  5829. Text = "Click TP has been disabled.";
  5830. })
  5831. end
  5832. if string.sub(msg, 1, 8) == (prefix.."toolson") then
  5833. gettingtools = true
  5834. game:GetService("StarterGui"):SetCore("SendNotification", {
  5835. Title = "Tools Enabled";
  5836. Text = "Automatically colleting tools dropped.";
  5837. })
  5838. end
  5839. if string.sub(msg, 1, 9) == (prefix.."toolsoff") then
  5840. gettingtools = false
  5841. game:GetService("StarterGui"):SetCore("SendNotification", {
  5842. Title = "Tools Disabled";
  5843. Text = "Click TP has been disabled.";
  5844. })
  5845. end
  5846. if string.sub(msg, 1, 10) == (prefix.."delcmdbar") then
  5847. ScreenGui:Destroy()
  5848. end
  5849. if string.sub(msg, 1, 6) == (prefix.."reset") then
  5850. lplayer.Character.Head:Destroy()
  5851. end
  5852. if string.sub(msg, 1, 7) == (prefix.."state ") then
  5853. statechosen = string.sub(msg, 8)
  5854. changingstate = true
  5855. end
  5856. if string.sub(msg, 1, 9) == (prefix.."gravity ") then
  5857. game:GetService("Workspace").Gravity = string.sub(msg, 10)
  5858. end
  5859. if string.sub(msg, 1, 10) == (prefix.."looprhats") then
  5860. removingmeshhats = true
  5861. end
  5862. if string.sub(msg, 1, 12) == (prefix.."unlooprhats") then
  5863. removingmeshhats = false
  5864. end
  5865. if string.sub(msg, 1, 10) == (prefix.."looprtool") then
  5866. removingmeshtool = true
  5867. end
  5868. if string.sub(msg, 1, 12) == (prefix.."unlooprtool") then
  5869. removingmeshtool = false
  5870. end
  5871. if string.sub(msg, 1, 10) == (prefix.."givetool ") then
  5872. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
  5873. if v:IsA("Tool") then
  5874. for i,player in pairs(GetPlayer(string.sub(msg, 11))) do
  5875. v.Parent = player.Character
  5876. end
  5877. end
  5878. end
  5879. end
  5880. if string.sub(msg, 1, 14) == (prefix.."givealltools ") then
  5881. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do
  5882. if v:IsA("Tool") then
  5883. v.Parent = lplayer.Character
  5884. wait()
  5885. for i,player in pairs(GetPlayer(string.sub(msg, 15))) do
  5886. v.Parent = player.Character
  5887. end
  5888. end
  5889. end
  5890. end
  5891. if string.sub(msg, 1, 5) == (prefix.."age ") then
  5892. for i,player in pairs(GetPlayer(string.sub(msg, 6))) do
  5893. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account Age: "..player.AccountAge.." days!", "All")
  5894. end
  5895. end
  5896. if string.sub(msg, 1, 4) == (prefix.."id ") then
  5897. for i,player in pairs(GetPlayer(string.sub(msg, 5))) do
  5898. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account ID: "..player.UserId, "All")
  5899. end
  5900. end
  5901. if string.sub(msg, 1, 6) == (prefix..".age ") then
  5902. for i,player in pairs(GetPlayer(string.sub(msg, 7))) do
  5903. game:GetService("StarterGui"):SetCore("SendNotification", {
  5904. Title = player.AccountAge.." Days";
  5905. Text = "Account age of "..player.Name;
  5906. })
  5907. end
  5908. end
  5909. if string.sub(msg, 1, 5) == (prefix..".id ") then
  5910. for i,player in pairs(GetPlayer(string.sub(msg, 6))) do
  5911. game:GetService("StarterGui"):SetCore("SendNotification", {
  5912. Title = player.UserId.." ID";
  5913. Text = "Account ID of "..player.Name;
  5914. })
  5915. end
  5916. end
  5917. if string.sub(msg, 1, 7) == (prefix.."gameid") then
  5918. game:GetService("StarterGui"):SetCore("SendNotification", {
  5919. Title = "Game ID";
  5920. Text = "Game ID: ".. game.GameId;
  5921. })
  5922. end
  5923. if string.sub(msg, 1, 4) == (prefix.."pgs") then
  5924. local pgscheck = game:GetService("Workspace"):PGSIsEnabled()
  5925. if pgscheck == true then
  5926. game:GetService("StarterGui"):SetCore("SendNotification", {
  5927. Title = "PGSPhysicsSolverEnabled";
  5928. Text = "PGS is Enabled!";
  5929. })
  5930. else
  5931. game:GetService("StarterGui"):SetCore("SendNotification", {
  5932. Title = "PGSPhysicsSolverEnabled";
  5933. Text = "PGS is Disabled!";
  5934. })
  5935. end
  5936. end
  5937. if string.sub(msg, 1, 12) == (prefix.."removeinvis") then
  5938. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  5939. if v:IsA("Part") then
  5940. if v.Transparency == 1 then
  5941. if v.Name ~= "HumanoidRootPart" then
  5942. v:Destroy()
  5943. end
  5944. end
  5945. end
  5946. end
  5947. end
  5948. if string.sub(msg, 1, 10) == (prefix.."removefog") then
  5949. game:GetService("Lighting").FogStart = 0
  5950. game:GetService("Lighting").FogEnd = 9999999999999
  5951. end
  5952. if string.sub(msg, 1, 8) == (prefix.."disable") then
  5953. lplayer.Character.Humanoid.Parent = lplayer
  5954. end
  5955. if string.sub(msg, 1, 7) == (prefix.."enable") then
  5956. lplayer.Humanoid.Parent = lplayer.Character
  5957. end
  5958. if string.sub(msg, 1, 8) == (prefix.."prefix ") then
  5959. prefix = (string.sub(msg, 9, 9))
  5960. wait(0.1)
  5961. change()
  5962. wait(0.1)
  5963. game:GetService("StarterGui"):SetCore("SendNotification", {
  5964. Title = "Prefix changed!";
  5965. Text = "Prefix is now "..prefix..". Use ;resetprefix to reset to ;";
  5966. })
  5967. end
  5968. if string.sub(msg, 1, 12) == (";resetprefix") then
  5969. prefix = ";"
  5970. wait(0.1)
  5971. change()
  5972. wait(0.1)
  5973. game:GetService("StarterGui"):SetCore("SendNotification", {
  5974. Title = "Prefix changed!";
  5975. Text = "Prefix is now "..prefix..". Make sure it's one key!";
  5976. })
  5977. end
  5978. if string.sub(msg, 1, 10) == (prefix.."flyspeed ") then
  5979. speedfly = string.sub(msg, 11)
  5980. wait()
  5981. change()
  5982. end
  5983. if string.sub(msg, 1, 8) == (prefix.."carpet ") then
  5984. for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
  5985. local Anim3 = Instance.new("Animation")
  5986. Anim3.AnimationId = "rbxassetid://282574440"
  5987. local track3 = lplayer.Character.Humanoid:LoadAnimation(Anim3)
  5988. track3:Play(.1, 1, 1)
  5989. bplrr = v.Name
  5990. banpl = true
  5991. end
  5992. end
  5993. if string.sub(msg, 1, 9) == (prefix.."uncarpet") then
  5994. banpl = false
  5995. end
  5996. if string.sub(msg, 1, 7) == (prefix.."stare ") then
  5997. for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
  5998. staring = true
  5999. stareplr = v
  6000. end
  6001. end
  6002. if string.sub(msg, 1, 8) == (prefix.."unstare") then
  6003. staring = false
  6004. end
  6005. if string.sub(msg, 1, 8) == (prefix.."logchat") then
  6006. chatlogs = true
  6007. game:GetService("StarterGui"):SetCore("SendNotification", {
  6008. Title = "LogChat enabled";
  6009. Text = "Now logging all player chat.";
  6010. })
  6011. end
  6012. if string.sub(msg, 1, 10) == (prefix.."unlogchat") then
  6013. chatlogs = false
  6014. game:GetService("StarterGui"):SetCore("SendNotification", {
  6015. Title = "LogChat disabled";
  6016. Text = "Stopped logging all player chat.";
  6017. })
  6018. end
  6019. if string.sub(msg, 1, 7) == (prefix.."fixcam") then
  6020. game:GetService("Workspace").CurrentCamera:Destroy()
  6021. wait(0.1)
  6022. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  6023. game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
  6024. lplayer.CameraMinZoomDistance = 0.5
  6025. lplayer.CameraMaxZoomDistance = 400
  6026. lplayer.CameraMode = "Classic"
  6027. end
  6028. if string.sub(msg, 1, 8) == (prefix.."unstate") then
  6029. changingstate = false
  6030. end
  6031. end)
  6032.  
  6033. local function tp()
  6034. for i, player in ipairs(game:GetService("Players"):GetPlayers()) do
  6035. if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  6036. if player.Name == brplr then
  6037. player.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame + lplayer.Character.HumanoidRootPart.CFrame.lookVector * 2
  6038. end
  6039. end
  6040. end
  6041. end
  6042. local function tpall()
  6043. for i, player in ipairs(game:GetService("Players"):GetPlayers()) do
  6044. if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
  6045. player.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame + lplayer.Character.HumanoidRootPart.CFrame.lookVector * 3
  6046. end
  6047. end
  6048. end
  6049. spawn(function()
  6050. while wait(spamdelay) do
  6051. if spamming == true then
  6052. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(spamtext, "All")
  6053. end
  6054. end
  6055. end)
  6056. spawn(function()
  6057. while wait(spamdelay) do
  6058. if spammingpm == true then
  6059. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/w "..pmspammed.." @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", "All")
  6060. end
  6061. end
  6062. end)
  6063. spawn(function()
  6064. while wait() do
  6065. if cbring == true then
  6066. tp()
  6067. end
  6068. end
  6069. end)
  6070. spawn(function()
  6071. while wait() do
  6072. if cbringall == true then
  6073. tpall()
  6074. end
  6075. end
  6076. end)
  6077.  
  6078. Mouse.KeyDown:connect(function(Key)
  6079. if Key == prefix then
  6080. CMDBAR:CaptureFocus()
  6081. end
  6082. end)
  6083.  
  6084. CMDBAR.FocusLost:connect(function(enterPressed)
  6085. if enterPressed then
  6086. if string.sub(CMDBAR.Text, 1, 5) == ("kill ") then
  6087. if string.sub(CMDBAR.Text, 6) == "me" then
  6088. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(100000,0,100000)
  6089. else
  6090. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6)))do
  6091. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  6092. lplayer.Character.Humanoid.Name = 1
  6093. local l = lplayer.Character["1"]:Clone()
  6094. l.Parent = lplayer.Character
  6095. l.Name = "Humanoid"
  6096. wait(0.1)
  6097. lplayer.Character["1"]:Destroy()
  6098. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6099. lplayer.Character.Animate.Disabled = true
  6100. wait(0.1)
  6101. lplayer.Character.Animate.Disabled = false
  6102. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6103. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  6104. lplayer.Character.Humanoid:EquipTool(v)
  6105. end
  6106. local function tp(player,player2)
  6107. local char1,char2=player.Character,player2.Character
  6108. if char1 and char2 then
  6109. char1:MoveTo(char2.Head.Position)
  6110. end
  6111. end
  6112. wait(0.1)
  6113. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6114. wait(0.2)
  6115. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6116. wait(0.5)
  6117. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  6118. wait(0.7)
  6119. tp(lplayer,game:GetService("Players")[v.Name])
  6120. wait(0.7)
  6121. lplayer.Character.HumanoidRootPart.CFrame = NOW
  6122. game:GetService("StarterGui"):SetCore("SendNotification", {
  6123. Title = "Tools needed!";
  6124. Text = "You need a tool in your backpack for this command!";
  6125. })
  6126. end
  6127. end
  6128. end
  6129. if string.sub(CMDBAR.Text, 1, 6) == ("bring ") then
  6130. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7)))do
  6131. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  6132. lplayer.Character.Humanoid.Name = 1
  6133. local l = lplayer.Character["1"]:Clone()
  6134. l.Parent = lplayer.Character
  6135. l.Name = "Humanoid"
  6136. wait(0.1)
  6137. lplayer.Character["1"]:Destroy()
  6138. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6139. lplayer.Character.Animate.Disabled = true
  6140. wait(0.1)
  6141. lplayer.Character.Animate.Disabled = false
  6142. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6143. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  6144. lplayer.Character.Humanoid:EquipTool(v)
  6145. end
  6146. local function tp(player,player2)
  6147. local char1,char2=player.Character,player2.Character
  6148. if char1 and char2 then
  6149. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  6150. end
  6151. end
  6152. local function getout(player,player2)
  6153. local char1,char2=player.Character,player2.Character
  6154. if char1 and char2 then
  6155. char1:MoveTo(char2.Head.Position)
  6156. end
  6157. end
  6158. tp(game:GetService("Players")[v.Name], lplayer)
  6159. wait(0.2)
  6160. tp(game:GetService("Players")[v.Name], lplayer)
  6161. wait(0.5)
  6162. lplayer.Character.HumanoidRootPart.CFrame = NOW
  6163. wait(0.5)
  6164. getout(lplayer, game:GetService("Players")[v.Name])
  6165. wait(0.3)
  6166. lplayer.Character.HumanoidRootPart.CFrame = NOW
  6167. game:GetService("StarterGui"):SetCore("SendNotification", {
  6168. Title = "Tools needed!";
  6169. Text = "You need a tool in your backpack for this command!";
  6170. })
  6171. end
  6172. end
  6173. if string.sub(CMDBAR.Text, 1, 5) == ("spin ") then
  6174. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  6175. lplayer.Character.Humanoid.Name = 1
  6176. local l = lplayer.Character["1"]:Clone()
  6177. l.Parent = lplayer.Character
  6178. l.Name = "Humanoid"
  6179. wait(0.1)
  6180. lplayer.Character["1"]:Destroy()
  6181. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6182. lplayer.Character.Animate.Disabled = true
  6183. wait(0.1)
  6184. lplayer.Character.Animate.Disabled = false
  6185. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6186. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  6187. lplayer.Character.Humanoid:EquipTool(v)
  6188. end
  6189. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  6190. spinplr = v
  6191. wait(0.5)
  6192. spin = true
  6193. game:GetService("StarterGui"):SetCore("SendNotification", {
  6194. Title = "Tools needed!";
  6195. Text = "You need a tool in your backpack for this command!";
  6196. })
  6197. end
  6198. end
  6199. if string.sub(CMDBAR.Text, 1, 6) == ("unspin") then
  6200. spin = false
  6201. end
  6202. if string.sub(CMDBAR.Text, 1, 7) == ("attach ") then
  6203. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  6204. lplayer.Character.Humanoid.Name = 1
  6205. local l = lplayer.Character["1"]:Clone()
  6206. l.Parent = lplayer.Character
  6207. l.Name = "Humanoid"
  6208. wait(0.1)
  6209. lplayer.Character["1"]:Destroy()
  6210. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6211. lplayer.Character.Animate.Disabled = true
  6212. wait(0.1)
  6213. lplayer.Character.Animate.Disabled = false
  6214. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6215. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  6216. lplayer.Character.Humanoid:EquipTool(v)
  6217. end
  6218. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  6219. wait(0.3)
  6220. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  6221. attplr = v
  6222. game:GetService("StarterGui"):SetCore("SendNotification", {
  6223. Title = "Tools needed!";
  6224. Text = "You need a tool in your backpack for this command!";
  6225. })
  6226. end
  6227. end
  6228. if string.sub(CMDBAR.Text, 1, 9) == ("unattach ") then
  6229. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  6230. local function getout(player,player2)
  6231. local char1,char2=player.Character,player2.Character
  6232. if char1 and char2 then
  6233. char1:MoveTo(char2.Head.Position)
  6234. end
  6235. end
  6236. getout(lplayer, game:GetService("Players")[v.Name])
  6237. end
  6238. end
  6239. if string.sub(CMDBAR.Text, 1, 7) == ("follow ") then
  6240. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  6241. followed = true
  6242. flwplr = v
  6243. end
  6244. end
  6245. if string.sub(CMDBAR.Text, 1, 8) == ("unfollow") then
  6246. followed = false
  6247. end
  6248. if string.sub(CMDBAR.Text, 1, 9) == ("freefall ") then
  6249. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  6250. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  6251. lplayer.Character.Humanoid.Name = 1
  6252. local l = lplayer.Character["1"]:Clone()
  6253. l.Parent = lplayer.Character
  6254. l.Name = "Humanoid"
  6255. wait(0.1)
  6256. lplayer.Character["1"]:Destroy()
  6257. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6258. lplayer.Character.Animate.Disabled = true
  6259. wait(0.1)
  6260. lplayer.Character.Animate.Disabled = false
  6261. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6262. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  6263. lplayer.Character.Humanoid:EquipTool(v)
  6264. end
  6265. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6266. wait(0.2)
  6267. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6268. wait(0.6)
  6269. lplayer.Character.HumanoidRootPart.CFrame = NOW
  6270. wait(0.6)
  6271. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
  6272. game:GetService("StarterGui"):SetCore("SendNotification", {
  6273. Title = "Tools needed!";
  6274. Text = "You need a tool in your backpack for this command!";
  6275. })
  6276. end
  6277. end
  6278. if string.sub(CMDBAR.Text, 1, 6) == ("trail ") then
  6279. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  6280. traill = true
  6281. trlplr = v
  6282. end
  6283. end
  6284. if string.sub(CMDBAR.Text, 1, 7) == ("untrail") then
  6285. traill = false
  6286. end
  6287. if string.sub(CMDBAR.Text, 1, 6) == ("orbit ") then
  6288. if string.sub(CMDBAR.Text, 7) == "all" or string.sub(CMDBAR.Text, 7) == "others" or string.sub(CMDBAR.Text, 7) == "me" then
  6289. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  6290. else
  6291. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  6292. local o = Instance.new("RocketPropulsion")
  6293. o.Parent = lplayer.Character.HumanoidRootPart
  6294. o.Name = "Orbit"
  6295. o.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  6296. o:Fire()
  6297. noclip = true
  6298. end
  6299. end
  6300. end
  6301. if string.sub(CMDBAR.Text, 1, 7) == ("unorbit") then
  6302. lplayer.Character.HumanoidRootPart.Orbit:Destroy()
  6303. noclip = false
  6304. end
  6305. if string.sub(CMDBAR.Text, 1, 6) == ("fling ") then
  6306. if string.sub(CMDBAR.Text, 7) == "all" or string.sub(CMDBAR.Text, 7) == "others" or string.sub(CMDBAR.Text, 7) == "me" then
  6307. lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  6308. else
  6309. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  6310. local y = Instance.new("RocketPropulsion")
  6311. y.Parent = lplayer.Character.HumanoidRootPart
  6312. y.CartoonFactor = 1
  6313. y.MaxThrust = 800000
  6314. y.MaxSpeed = 1000
  6315. y.ThrustP = 200000
  6316. y.Name = "Fling"
  6317. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  6318. y.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
  6319. y:Fire()
  6320. noclip = true
  6321. end
  6322. end
  6323. end
  6324. if string.sub(CMDBAR.Text, 1, 7) == ("unfling") then
  6325. noclip = false
  6326. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  6327. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  6328. wait(0.4)
  6329. lplayer.Character.HumanoidRootPart.Fling:Destroy()
  6330. end
  6331. if string.sub(CMDBAR.Text, 1, 7) == ("fecheck") then
  6332. if game:GetService("Workspace").FilteringEnabled == true then
  6333. warn("FE is Enabled (Filtering Enabled)")
  6334. game:GetService("StarterGui"):SetCore("SendNotification", {
  6335. Title = "FE is Enabled";
  6336. Text = "Filtering Enabled. Enjoy using Reviz Admin!";
  6337. })
  6338. else
  6339. warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
  6340. game:GetService("StarterGui"):SetCore("SendNotification", {
  6341. Title = "FE is Disabled";
  6342. Text = "Filtering Disabled. Consider using a different admin script.";
  6343. })
  6344. end
  6345. end
  6346. if string.sub(CMDBAR.Text, 1, 5) == ("void ") then
  6347. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  6348. lplayer.Character.Humanoid.Name = 1
  6349. local l = lplayer.Character["1"]:Clone()
  6350. l.Parent = lplayer.Character
  6351. l.Name = "Humanoid"
  6352. wait(0.1)
  6353. lplayer.Character["1"]:Destroy()
  6354. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6355. lplayer.Character.Animate.Disabled = true
  6356. wait(0.1)
  6357. lplayer.Character.Animate.Disabled = false
  6358. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6359. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  6360. lplayer.Character.Humanoid:EquipTool(v)
  6361. end
  6362. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6363. wait(0.2)
  6364. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6365. wait(0.6)
  6366. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(999999999999999,0,999999999999999)
  6367. game:GetService("StarterGui"):SetCore("SendNotification", {
  6368. Title = "Tools needed!";
  6369. Text = "You need a tool in your backpack for this command!";
  6370. })
  6371. end
  6372. end
  6373. if string.sub(CMDBAR.Text, 1, 6) == ("noclip") then
  6374. noclip = true
  6375. game:GetService("StarterGui"):SetCore("SendNotification", {
  6376. Title = "Noclip enabled";
  6377. Text = "Type ;clip to disable";
  6378. })
  6379. end
  6380. if string.sub(CMDBAR.Text, 1, 4) == ("clip") then
  6381. noclip = false
  6382. game:GetService("StarterGui"):SetCore("SendNotification", {
  6383. Title = "Noclip disabled";
  6384. Text = "Type ;noclip to enable";
  6385. })
  6386. end
  6387. if string.sub(CMDBAR.Text, 1, 6) == ("speed ") then
  6388. lplayer.Character.Humanoid.WalkSpeed = (string.sub(CMDBAR.Text, 7))
  6389. end
  6390. if string.sub(CMDBAR.Text, 1, 3) == ("ws ") then
  6391. lplayer.Character.Humanoid.WalkSpeed = (string.sub(CMDBAR.Text, 4))
  6392. end
  6393. if string.sub(CMDBAR.Text, 1, 10) == ("hipheight ") then
  6394. lplayer.Character.Humanoid.HipHeight = (string.sub(CMDBAR.Text, 11))
  6395. end
  6396. if string.sub(CMDBAR.Text, 1, 3) == ("hh ") then
  6397. lplayer.Character.Humanoid.HipHeight = (string.sub(CMDBAR.Text, 4))
  6398. end
  6399. if string.sub(CMDBAR.Text, 1, 10) == ("jumppower ") then
  6400. lplayer.Character.Humanoid.JumpPower = (string.sub(CMDBAR.Text, 11))
  6401. end
  6402. if string.sub(CMDBAR.Text, 1, 3) == ("jp ") then
  6403. lplayer.Character.Humanoid.JumpPower = (string.sub(CMDBAR.Text, 4))
  6404. end
  6405. if string.sub(CMDBAR.Text, 1, 7) == ("default") then
  6406. lplayer.Character.Humanoid.JumpPower = 50
  6407. lplayer.Character.Humanoid.WalkSpeed = 16
  6408. lplayer.Character.Humanoid.HipHeight = 0
  6409. end
  6410. if string.sub(CMDBAR.Text, 1, 6) == ("annoy ") then
  6411. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  6412. annoying = true
  6413. annplr = v
  6414. end
  6415. end
  6416. if string.sub(CMDBAR.Text, 1, 7) == ("unannoy") then
  6417. annoying = false
  6418. end
  6419. if string.sub(CMDBAR.Text, 1, 9) == ("headwalk ") then
  6420. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  6421. hwalk = true
  6422. hdwplr = v
  6423. end
  6424. end
  6425. if string.sub(CMDBAR.Text, 1, 10) == ("unheadwalk") then
  6426. hwalk = false
  6427. end
  6428. if string.sub(CMDBAR.Text, 1, 7) == ("nolimbs") then
  6429. lplayer.Character["Left Leg"]:Destroy()
  6430. lplayer.Character["Left Arm"]:Destroy()
  6431. lplayer.Character["Right Leg"]:Destroy()
  6432. lplayer.Character["Right Arm"]:Destroy()
  6433. end
  6434. if string.sub(CMDBAR.Text, 1, 3) == ("god") then
  6435. lplayer.Character.Humanoid.Name = 1
  6436. local l = lplayer.Character["1"]:Clone()
  6437. l.Parent = lplayer.Character
  6438. l.Name = "Humanoid"
  6439. wait(0.1)
  6440. lplayer.Character["1"]:Destroy()
  6441. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6442. lplayer.Character.Animate.Disabled = true
  6443. wait(0.1)
  6444. lplayer.Character.Animate.Disabled = false
  6445. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6446. game:GetService("StarterGui"):SetCore("SendNotification", {
  6447. Title = "FE Godmode enabled";
  6448. Text = "Use ;grespawn or ;respawn to remove.";
  6449. })
  6450. end
  6451. if string.sub(CMDBAR.Text, 1, 8) == ("drophats") then
  6452. for i,v in pairs(lplayer.Character:GetChildren()) do
  6453. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  6454. v.Parent = workspace
  6455. end
  6456. end
  6457. end
  6458. if string.sub(CMDBAR.Text, 1, 8) == ("droptool") then
  6459. for i,v in pairs(lplayer.Character:GetChildren()) do
  6460. if (v:IsA("Tool")) then
  6461. v.Parent = workspace
  6462. end
  6463. end
  6464. end
  6465. if string.sub(CMDBAR.Text, 1, 9) == ("loopdhats") then
  6466. droppinghats = true
  6467. game:GetService("StarterGui"):SetCore("SendNotification", {
  6468. Title = "Loop Drop Enabled";
  6469. Text = "Type ;unloopdhats to disable";
  6470. })
  6471. end
  6472. if string.sub(CMDBAR.Text, 1, 11) == ("unloopdhats") then
  6473. droppinghats = false
  6474. game:GetService("StarterGui"):SetCore("SendNotification", {
  6475. Title = "Loop Drop Disabled";
  6476. Text = "Type ;loopdhats to enable.";
  6477. })
  6478. end
  6479. if string.sub(CMDBAR.Text, 1, 9) == ("loopdtool") then
  6480. droppingtools = true
  6481. game:GetService("StarterGui"):SetCore("SendNotification", {
  6482. Title = "Loop Drop Enabled";
  6483. Text = "Type ;unloopdtool to disable";
  6484. })
  6485. end
  6486. if string.sub(CMDBAR.Text, 1, 11) == ("unloopdtool") then
  6487. droppingtools = false
  6488. game:GetService("StarterGui"):SetCore("SendNotification", {
  6489. Title = "Loop Drop Disabled";
  6490. Text = "Type ;loopdtool to enable.";
  6491. })
  6492. end
  6493. if string.sub(CMDBAR.Text, 1, 9) == ("invisible") then -- Credit to Timeless
  6494. Local = game:GetService('Players').LocalPlayer
  6495. Char = Local.Character
  6496. touched,tpdback = false, false
  6497. box = Instance.new('Part',workspace)
  6498. box.Anchored = true
  6499. box.CanCollide = true
  6500. box.Size = Vector3.new(10,1,10)
  6501. box.Position = Vector3.new(0,10000,0)
  6502. box.Touched:connect(function(part)
  6503. if (part.Parent.Name == Local.Name) then
  6504. if touched == false then
  6505. touched = true
  6506. function apply()
  6507. if script.Disabled ~= true then
  6508. no = Char.HumanoidRootPart:Clone()
  6509. wait(.25)
  6510. Char.HumanoidRootPart:Destroy()
  6511. no.Parent = Char
  6512. Char:MoveTo(loc)
  6513. touched = false
  6514. end end
  6515. if Char then
  6516. apply()
  6517. end
  6518. end
  6519. end
  6520. end)
  6521. repeat wait() until Char
  6522. loc = Char.HumanoidRootPart.Position
  6523. Char:MoveTo(box.Position + Vector3.new(0,.5,0))
  6524. game:GetService("StarterGui"):SetCore("SendNotification", {
  6525. Title = "Invisibility enabled!";
  6526. Text = "Reset or use ;respawn to remove.";
  6527. })
  6528. end
  6529. if string.sub(CMDBAR.Text, 1, 5) == ("view ") then
  6530. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  6531. if game:GetService("Players")[v.Name].Character.Humanoid then
  6532. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Humanoid
  6533. else
  6534. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
  6535. end
  6536. end
  6537. end
  6538. if string.sub(CMDBAR.Text, 1, 6) == ("unview") then
  6539. if lplayer.Character.Humanoid then
  6540. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  6541. else
  6542. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
  6543. end
  6544. end
  6545. if string.sub(CMDBAR.Text, 1, 5) == ("goto ") then
  6546. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  6547. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6548. end
  6549. end
  6550. if string.sub(CMDBAR.Text, 1, 3) == ("fly") then
  6551. repeat wait() until lplayer and lplayer.Character and lplayer.Character:FindFirstChild('HumanoidRootPart') and lplayer.Character:FindFirstChild('Humanoid')
  6552. repeat wait() until Mouse
  6553.  
  6554. local T = lplayer.Character.HumanoidRootPart
  6555. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  6556. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  6557. local SPEED = speedget
  6558.  
  6559. local function fly()
  6560. flying = true
  6561. local BG = Instance.new('BodyGyro', T)
  6562. local BV = Instance.new('BodyVelocity', T)
  6563. BG.P = 9e4
  6564. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  6565. BG.cframe = T.CFrame
  6566. BV.velocity = Vector3.new(0, 0.1, 0)
  6567. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  6568. spawn(function()
  6569. repeat wait()
  6570. lplayer.Character.Humanoid.PlatformStand = true
  6571. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  6572. SPEED = 50
  6573. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  6574. SPEED = 0
  6575. end
  6576. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  6577. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  6578. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  6579. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  6580. BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  6581. else
  6582. BV.velocity = Vector3.new(0, 0.1, 0)
  6583. end
  6584. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  6585. until not flying
  6586. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  6587. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  6588. SPEED = 0
  6589. BG:destroy()
  6590. BV:destroy()
  6591. lplayer.Character.Humanoid.PlatformStand = false
  6592. end)
  6593. end
  6594. Mouse.KeyDown:connect(function(KEY)
  6595. if KEY:lower() == 'w' then
  6596. CONTROL.F = speedfly
  6597. elseif KEY:lower() == 's' then
  6598. CONTROL.B = -speedfly
  6599. elseif KEY:lower() == 'a' then
  6600. CONTROL.L = -speedfly
  6601. elseif KEY:lower() == 'd' then
  6602. CONTROL.R = speedfly
  6603. end
  6604. end)
  6605. Mouse.KeyUp:connect(function(KEY)
  6606. if KEY:lower() == 'w' then
  6607. CONTROL.F = 0
  6608. elseif KEY:lower() == 's' then
  6609. CONTROL.B = 0
  6610. elseif KEY:lower() == 'a' then
  6611. CONTROL.L = 0
  6612. elseif KEY:lower() == 'd' then
  6613. CONTROL.R = 0
  6614. end
  6615. end)
  6616. fly()
  6617. end
  6618. if string.sub(CMDBAR.Text, 1, 5) == ("unfly") then
  6619. flying = false
  6620. lplayer.Character.Humanoid.PlatformStand = false
  6621. end
  6622. if string.sub(CMDBAR.Text, 1, 5) == ("chat ") then
  6623. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer((string.sub(CMDBAR.Text, 6)), "All")
  6624. end
  6625. if string.sub(CMDBAR.Text, 1, 5) == ("spam ") then
  6626. spamtext = (string.sub(CMDBAR.Text, 6))
  6627. spamming = true
  6628. end
  6629. if string.sub(CMDBAR.Text, 1, 6) == ("unspam") then
  6630. spamming = false
  6631. end
  6632. if string.sub(CMDBAR.Text, 1, 9) == ("spamwait ") then
  6633. spamdelay = (string.sub(CMDBAR.Text, 10))
  6634. end
  6635. if string.sub(CMDBAR.Text, 1, 7) == ("pmspam ") then
  6636. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  6637. pmspammed = v.Name
  6638. spammingpm = true
  6639. end
  6640. end
  6641. if string.sub(CMDBAR.Text, 1, 8) == ("unpmspam") then
  6642. spammingpm = false
  6643. end
  6644. if string.sub(CMDBAR.Text, 1, 8) == ("cfreeze ") then
  6645. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 9))) do
  6646. v.Character["Left Leg"].Anchored = true
  6647. v.Character["Left Arm"].Anchored = true
  6648. v.Character["Right Leg"].Anchored = true
  6649. v.Character["Right Arm"].Anchored = true
  6650. v.Character.Torso.Anchored = true
  6651. v.Character.Head.Anchored = true
  6652. end
  6653. end
  6654. if string.sub(CMDBAR.Text, 1, 10) == ("uncfreeze ") then
  6655. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 11))) do
  6656. v.Character["Left Leg"].Anchored = false
  6657. v.Character["Left Arm"].Anchored = false
  6658. v.Character["Right Leg"].Anchored = false
  6659. v.Character["Right Arm"].Anchored = false
  6660. v.Character.Torso.Anchored = false
  6661. v.Character.Head.Anchored = false
  6662. end
  6663. end
  6664. if string.sub(CMDBAR.Text, 1, 8) == ("unlockws") then
  6665. local a = game:GetService("Workspace"):getChildren()
  6666. for i = 1, #a do
  6667. if a[i].className == "Part" then
  6668. a[i].Locked = false
  6669. elseif a[i].className == "Model" then
  6670. local r = a[i]:getChildren()
  6671. for i = 1, #r do
  6672. if r[i].className == "Part" then
  6673. r[i].Locked = false
  6674. end
  6675. end
  6676. end
  6677. end
  6678. game:GetService("StarterGui"):SetCore("SendNotification", {
  6679. Title = "Success!";
  6680. Text = "Workspace unlocked. Use ;lockws to lock.";
  6681. })
  6682. end
  6683. if string.sub(CMDBAR.Text, 1, 6) == ("lockws") then
  6684. local a = game:GetService("Workspace"):getChildren()
  6685. for i = 1, #a do
  6686. if a[i].className == "Part" then
  6687. a[i].Locked = true
  6688. elseif a[i].className == "Model" then
  6689. local r = a[i]:getChildren()
  6690. for i = 1, #r do
  6691. if r[i].className == "Part" then
  6692. r[i].Locked = true
  6693. end
  6694. end
  6695. end
  6696. end
  6697. end
  6698. if string.sub(CMDBAR.Text, 1, 6) == ("btools") then
  6699. local Clone_T = Instance.new("HopperBin",lplayer.Backpack)
  6700. Clone_T.BinType = "Clone"
  6701. local Destruct = Instance.new("HopperBin",lplayer.Backpack)
  6702. Destruct.BinType = "Hammer"
  6703. local Hold_T = Instance.new("HopperBin",lplayer.Backpack)
  6704. Hold_T.BinType = "Grab"
  6705. end
  6706. if string.sub(CMDBAR.Text, 1, 6) == ("pstand") then
  6707. lplayer.Character.Humanoid.PlatformStand = true
  6708. end
  6709. if string.sub(CMDBAR.Text, 1, 8) == ("unpstand") then
  6710. lplayer.Character.Humanoid.PlatformStand = false
  6711. end
  6712. if string.sub(CMDBAR.Text, 1, 9) == ("blockhead") then
  6713. lplayer.Character.Head.Mesh:Destroy()
  6714. end
  6715. if string.sub(CMDBAR.Text, 1, 3) == ("sit") then
  6716. lplayer.Character.Humanoid.Sit = true
  6717. end
  6718. if string.sub(CMDBAR.Text, 1, 9) == ("bringobj ") then
  6719. local function bringobjw()
  6720. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  6721. if obj.Name == (string.sub(CMDBAR.Text, 10)) then
  6722. obj.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  6723. obj.CanCollide = false
  6724. obj.Transparency = 0.7
  6725. wait()
  6726. obj.CFrame = lplayer.Character["Left Leg"].CFrame
  6727. wait()
  6728. obj.CFrame = lplayer.Character["Right Leg"].CFrame
  6729. wait()
  6730. obj.CFrame = lplayer.Character["Head"].CFrame
  6731. end
  6732. end
  6733. end
  6734. while wait() do
  6735. bringobjw()
  6736. end
  6737. game:GetService("StarterGui"):SetCore("SendNotification", {
  6738. Title = "BringObj";
  6739. Text = "BringObj enabled.";
  6740. })
  6741. end
  6742. if string.sub(CMDBAR.Text, 1, 6) == ("wsvis ") then
  6743. vis = (string.sub(CMDBAR.Text, 7))
  6744. local a = game:GetService("Workspace"):GetDescendants()
  6745. for i = 1, #a do
  6746. if a[i].className == "Part" then
  6747. a[i].Transparency = vis
  6748. elseif a[i].className == "Model" then
  6749. local r = a[i]:getChildren()
  6750. for i = 1, #r do
  6751. if r[i].className == "Part" then
  6752. r[i].Transparency = vis
  6753. end
  6754. end
  6755. end
  6756. end
  6757. end
  6758. if string.sub(CMDBAR.Text, 1, 10) == ("hypertotal") then
  6759. loadstring(game:GetObjects("rbxassetid://1255063809")[1].Source)()
  6760. game:GetService("StarterGui"):SetCore("SendNotification", {
  6761. Title = "Success!";
  6762. Text = "HyperTotal GUI Loaded!";
  6763. })
  6764. end
  6765. if string.sub(CMDBAR.Text, 1, 4) == ("cmds") then
  6766. CMDSFRAME.Visible = true
  6767. end
  6768. if string.sub(CMDBAR.Text, 1, 9) == ("rmeshhats") then
  6769. for i,v in pairs(lplayer.Character:GetChildren()) do
  6770. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  6771. v.Handle.Mesh:Destroy()
  6772. end
  6773. end
  6774. end
  6775. if string.sub(CMDBAR.Text, 1, 9) == ("blockhats") then
  6776. for i,v in pairs(lplayer.Character:GetChildren()) do
  6777. if (v:IsA("Accessory")) or (v:IsA("Hat")) then
  6778. v.Handle.Mesh:Destroy()
  6779. end
  6780. end
  6781. end
  6782. if string.sub(CMDBAR.Text, 1, 9) == ("rmeshtool") then
  6783. for i,v in pairs(lplayer.Character:GetChildren()) do
  6784. if (v:IsA("Tool")) then
  6785. v.Handle.Mesh:Destroy()
  6786. end
  6787. end
  6788. end
  6789. if string.sub(CMDBAR.Text, 1, 9) == ("blocktool") then
  6790. for i,v in pairs(lplayer.Character:GetChildren()) do
  6791. if (v:IsA("Tool")) then
  6792. v.Handle.Mesh:Destroy()
  6793. end
  6794. end
  6795. end
  6796. if string.sub(CMDBAR.Text, 1, 7) == ("spinner") then
  6797. local p = Instance.new("RocketPropulsion")
  6798. p.Parent = lplayer.Character.HumanoidRootPart
  6799. p.Name = "Spinner"
  6800. p.Target = lplayer.Character["Left Arm"]
  6801. p:Fire()
  6802. game:GetService("StarterGui"):SetCore("SendNotification", {
  6803. Title = "Spinner enabled";
  6804. Text = "Type ;nospinner to disable.";
  6805. })
  6806. end
  6807. if string.sub(CMDBAR.Text, 1, 9) == ("nospinner") then
  6808. lplayer.Character.HumanoidRootPart.Spinner:Destroy()
  6809. end
  6810. if string.sub(CMDBAR.Text, 1, 6) == ("reachd") then
  6811. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  6812. if v:isA("Tool") then
  6813. local a = Instance.new("SelectionBox",v.Handle)
  6814. a.Adornee = v.Handle
  6815. v.Handle.Size = Vector3.new(0.5,0.5,60)
  6816. v.GripPos = Vector3.new(0,0,0)
  6817. lplayer.Character.Humanoid:UnequipTools()
  6818. end
  6819. end
  6820. game:GetService("StarterGui"):SetCore("SendNotification", {
  6821. Title = "Reach applied!";
  6822. Text = "Applied to equipped sword. Use ;noreach to disable.";
  6823. })
  6824. end
  6825. if string.sub(CMDBAR.Text, 1, 6) == ("reach ") then
  6826. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  6827. if v:isA("Tool") then
  6828. local a = Instance.new("SelectionBox",v.Handle)
  6829. a.Name = "Reach"
  6830. a.Adornee = v.Handle
  6831. v.Handle.Size = Vector3.new(0.5,0.5,(string.sub(CMDBAR.Text, 7)))
  6832. v.GripPos = Vector3.new(0,0,0)
  6833. lplayer.Character.Humanoid:UnequipTools()
  6834. end
  6835. end
  6836. game:GetService("StarterGui"):SetCore("SendNotification", {
  6837. Title = "Reach applied!";
  6838. Text = "Applied to equipped sword. Use ;noreach to disable.";
  6839. })
  6840. end
  6841. if string.sub(CMDBAR.Text, 1, 7) == ("noreach") then
  6842. for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
  6843. if v:isA("Tool") then
  6844. v.Handle.Reach:Destroy()
  6845. end
  6846. end
  6847. game:GetService("StarterGui"):SetCore("SendNotification", {
  6848. Title = "Reach removed!";
  6849. Text = "Removed reach from equipped sword.";
  6850. })
  6851. end
  6852. if string.sub(CMDBAR.Text, 1, 6) == ("rkill ") then
  6853. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7)))do
  6854. lplayer.Character.Humanoid.Name = 1
  6855. local l = lplayer.Character["1"]:Clone()
  6856. l.Parent = lplayer.Character
  6857. l.Name = "Humanoid"
  6858. wait(0.1)
  6859. lplayer.Character["1"]:Destroy()
  6860. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6861. lplayer.Character.Animate.Disabled = true
  6862. wait(0.1)
  6863. lplayer.Character.Animate.Disabled = false
  6864. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6865. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  6866. lplayer.Character.Humanoid:EquipTool(v)
  6867. end
  6868. wait(0.1)
  6869. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6870. wait(0.2)
  6871. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6872. wait(0.5)
  6873. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
  6874. game:GetService("StarterGui"):SetCore("SendNotification", {
  6875. Title = "Tools needed!";
  6876. Text = "You need a tool in your backpack for this command!";
  6877. })
  6878. end
  6879. end
  6880. if string.sub(CMDBAR.Text, 1, 6) == ("tp me ") then
  6881. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  6882. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6883. end
  6884. end
  6885. if string.sub(CMDBAR.Text, 1, 7) == ("cbring ") then
  6886. if (string.sub(CMDBAR.Text, 8)) == "all" or (string.sub(CMDBAR.Text, 8)) == "All" or (string.sub(CMDBAR.Text, 8)) == "ALL" then
  6887. cbringall = true
  6888. else
  6889. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  6890. brplr = v.Name
  6891. end
  6892. end
  6893. cbring = true
  6894. end
  6895. if string.sub(CMDBAR.Text, 1, 8) == ("uncbring") then
  6896. cbring = false
  6897. cbringall = false
  6898. end
  6899. if string.sub(CMDBAR.Text, 1, 5) == ("swap ") then
  6900. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  6901. local NOWPLR = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6902. local NOW = lplayer.Character.HumanoidRootPart.CFrame
  6903. lplayer.Character.Humanoid.Name = 1
  6904. local l = lplayer.Character["1"]:Clone()
  6905. l.Parent = lplayer.Character
  6906. l.Name = "Humanoid"
  6907. wait(0.1)
  6908. lplayer.Character["1"]:Destroy()
  6909. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6910. lplayer.Character.Animate.Disabled = true
  6911. wait(0.1)
  6912. lplayer.Character.Animate.Disabled = false
  6913. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6914. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  6915. lplayer.Character.Humanoid:EquipTool(v)
  6916. end
  6917. local function tp(player,player2)
  6918. local char1,char2=player.Character,player2.Character
  6919. if char1 and char2 then
  6920. char1:MoveTo(char2.Head.Position)
  6921. end
  6922. end
  6923. wait(0.1)
  6924. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6925. wait(0.2)
  6926. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
  6927. wait(0.5)
  6928. lplayer.Character.HumanoidRootPart.CFrame = NOW
  6929. wait(0.6)
  6930. tp(lplayer, game:GetService("Players")[v.Name])
  6931. wait(0.4)
  6932. lplayer.Character.HumanoidRootPart.CFrame = NOWPLR
  6933. game:GetService("StarterGui"):SetCore("SendNotification", {
  6934. Title = "Tools needed!";
  6935. Text = "You need a tool in your backpack for this command!";
  6936. })
  6937. end
  6938. end
  6939. if string.sub(CMDBAR.Text, 1, 7) == ("glitch ") then
  6940. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  6941. lplayer.Character.Humanoid.Name = 1
  6942. local l = lplayer.Character["1"]:Clone()
  6943. l.Parent = lplayer.Character
  6944. l.Name = "Humanoid"
  6945. wait(0.1)
  6946. lplayer.Character["1"]:Destroy()
  6947. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
  6948. lplayer.Character.Animate.Disabled = true
  6949. wait(0.1)
  6950. lplayer.Character.Animate.Disabled = false
  6951. lplayer.Character.Humanoid.DisplayDistanceType = "None"
  6952. for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
  6953. lplayer.Character.Humanoid:EquipTool(v)
  6954. end
  6955. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  6956. wait(0.3)
  6957. lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
  6958. wait(0.4)
  6959. b = Instance.new("BodyForce")
  6960. b.Parent = lplayer.Character.HumanoidRootPart
  6961. b.Name = "Glitch"
  6962. b.Force = Vector3.new(100000000,5000,0)
  6963. game:GetService("StarterGui"):SetCore("SendNotification", {
  6964. Title = "Tools needed!";
  6965. Text = "You need a tool in your backpack for this command!";
  6966. })
  6967. end
  6968. end
  6969. if string.sub(CMDBAR.Text, 1, 8) == ("unglitch") then
  6970. lplayer.Character.HumanoidRootPart.Glitch:Destroy()
  6971. lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(10000,0,10000)
  6972. b = Instance.new("BodyForce")
  6973. b.Parent = lplayer.Character.HumanoidRootPart
  6974. b.Name = "unGlitch"
  6975. b.Force = Vector3.new(0,-5000000,0)
  6976. wait(2)
  6977. lplayer.Character.HumanoidRootPart.unGlitch:Destroy()
  6978. end
  6979. if string.sub(CMDBAR.Text, 1, 8) == ("grespawn") then
  6980. lplayer.Character.Humanoid.Health = 0
  6981. wait(1)
  6982. lplayer.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
  6983. lplayer.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
  6984. end
  6985. if string.sub(CMDBAR.Text, 1, 8) == ("explorer") then
  6986. loadstring(game:GetObjects("rbxassetid://492005721")[1].Source)()
  6987. game:GetService("StarterGui"):SetCore("SendNotification", {
  6988. Title = "Success!";
  6989. Text = "DEX Explorer has loaded.";
  6990. })
  6991. end
  6992. if string.sub(CMDBAR.Text, 1, 5) == ("anim ") then
  6993. local Anim = Instance.new("Animation")
  6994. Anim.AnimationId = "rbxassetid://"..(string.sub(CMDBAR.Text, 6))
  6995. local track = lplayer.Character.Humanoid:LoadAnimation(Anim)
  6996. track:Play(.1, 1, 1)
  6997. end
  6998. if string.sub(CMDBAR.Text, 1, 7) == ("animgui") then
  6999. loadstring(game:GetObjects("rbxassetid://1202558084")[1].Source)()
  7000. game:GetService("StarterGui"):SetCore("SendNotification", {
  7001. Title = "Success!";
  7002. Text = "Energize Animations GUI has loaded.";
  7003. })
  7004. end
  7005. if string.sub(CMDBAR.Text, 1, 7) == ("savepos") then
  7006. saved = lplayer.Character.HumanoidRootPart.CFrame
  7007. game:GetService("StarterGui"):SetCore("SendNotification", {
  7008. Title = "Position Saved";
  7009. Text = "Use ;loadpos to return to saved position.";
  7010. })
  7011. end
  7012. if string.sub(CMDBAR.Text, 1, 7) == ("loadpos") then
  7013. lplayer.Character.HumanoidRootPart.CFrame = saved
  7014. end
  7015. if string.sub(CMDBAR.Text, 1, 5) == ("bang ") then
  7016. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  7017. local Anim2 = Instance.new("Animation")
  7018. Anim2.AnimationId = "rbxassetid://148840371"
  7019. local track2 = lplayer.Character.Humanoid:LoadAnimation(Anim2)
  7020. track2:Play(.1, 1, 1)
  7021. bplrr = v.Name
  7022. banpl = true
  7023. end
  7024. end
  7025. if string.sub(CMDBAR.Text, 1, 6) == ("unbang") then
  7026. banpl = false
  7027. end
  7028. if string.sub(CMDBAR.Text, 1, 9) == ("bringmod ") then
  7029. local function bringmodw()
  7030. for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
  7031. if obj.Name == (string.sub(CMDBAR.Text, 10)) then
  7032. for i,ch in pairs(obj:GetDescendants()) do
  7033. if (ch:IsA("BasePart")) then
  7034. ch.CFrame = lplayer.Character.HumanoidRootPart.CFrame
  7035. ch.CanCollide = false
  7036. ch.Transparency = 0.7
  7037. wait()
  7038. ch.CFrame = lplayer.Character["Left Leg"].CFrame
  7039. wait()
  7040. ch.CFrame = lplayer.Character["Right Leg"].CFrame
  7041. wait()
  7042. ch.CFrame = lplayer.Character["Head"].CFrame
  7043. end
  7044. end
  7045. end
  7046. end
  7047. end
  7048. while wait() do
  7049. bringmodw()
  7050. end
  7051. game:GetService("StarterGui"):SetCore("SendNotification", {
  7052. Title = "BringMod";
  7053. Text = "BringMod enabled.";
  7054. })
  7055. end
  7056. if string.sub(CMDBAR.Text, 1, 7) == ("respawn") then
  7057. local mod = Instance.new('Model', workspace) mod.Name = 're '..lplayer.Name
  7058. local hum = Instance.new('Humanoid', mod)
  7059. local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
  7060. lplayer.Character = mod
  7061. end
  7062. if string.sub(CMDBAR.Text, 1, 8) == ("shutdown") then
  7063. game:GetService'RunService'.Stepped:Connect(function()
  7064. pcall(function()
  7065. for i,v in pairs(game:GetService'Players':GetPlayers()) do
  7066. if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  7067. for _,x in pairs(v.Character.Head:GetChildren()) do
  7068. if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true) end
  7069. end
  7070. end
  7071. end
  7072. end)
  7073. end)
  7074. game:GetService("StarterGui"):SetCore("SendNotification", {
  7075. Title = "Attempting Shutdown";
  7076. Text = "Shutdown Attempt has begun.";
  7077. })
  7078. end
  7079. if string.sub(CMDBAR.Text, 1, 7) == ("delobj ") then
  7080. objtodel = (string.sub(CMDBAR.Text, 8))
  7081. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  7082. if v.Name == objtodel then
  7083. v:Destroy()
  7084. end
  7085. end
  7086. end
  7087. if string.sub(CMDBAR.Text, 1, 7) == ("getplrs") then
  7088. for i,v in pairs(game:GetService("Players"):GetPlayers())do
  7089. print(v)
  7090. end
  7091. game:GetService("StarterGui"):SetCore("SendNotification", {
  7092. Title = "Printed";
  7093. Text = "Players have been printed to console. (F9)";
  7094. })
  7095. end
  7096. if string.sub(CMDBAR.Text, 1, 8) == ("deldecal") then
  7097. for i,v in pairs(game:GetService("Workspace"):GetDescendants())do
  7098. if (v:IsA("Decal")) then
  7099. v:Destroy()
  7100. end
  7101. end
  7102. end
  7103. if string.sub(CMDBAR.Text, 1, 10) == ("opfinality") then
  7104. loadstring(game:GetObjects("rbxassetid://1294358929")[1].Source)()
  7105. game:GetService("StarterGui"):SetCore("SendNotification", {
  7106. Title = "Success!";
  7107. Text = "OpFinality GUI has loaded.";
  7108. })
  7109. end
  7110. if string.sub(CMDBAR.Text, 1, 7) == ("remotes") then
  7111. remotes = true
  7112. added = true
  7113. game.DescendantAdded:connect(function(rmt)
  7114. if added == true then
  7115. if remotes == true then
  7116. if rmt:IsA("RemoteEvent") then
  7117. print("A RemoteEvent was added!")
  7118. print(" game." .. rmt:GetFullName() .. " | RemoteEvent")
  7119. print(" game." .. rmt:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  7120. end end end
  7121. end)
  7122. game.DescendantAdded:connect(function(rmtfnctn)
  7123. if added == true then
  7124. if remotes == true then
  7125. if rmtfnctn:IsA("RemoteFunction") then
  7126. warn("A RemoteFunction was added!")
  7127. warn(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction")
  7128. print(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  7129. end end end
  7130. end)
  7131.  
  7132. game.DescendantAdded:connect(function(bndfnctn)
  7133. if added == true then
  7134. if binds == true then
  7135. if bndfnctn:IsA("BindableFunction") then
  7136. print("A BindableFunction was added!")
  7137. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction")
  7138. print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  7139. end end end
  7140. end)
  7141.  
  7142. game.DescendantAdded:connect(function(bnd)
  7143. if added == true then
  7144. if binds == true then
  7145. if bnd:IsA("BindableEvent") then
  7146. warn("A BindableEvent was added!")
  7147. warn(" game." .. bnd:GetFullName() .. " | BindableEvent")
  7148. print(" game." .. bnd:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  7149. end end end
  7150. end)
  7151.  
  7152.  
  7153. if binds == true then
  7154. for i,v in pairs(game:GetDescendants()) do
  7155. if v:IsA("BindableFunction") then
  7156. print(" game." .. v:GetFullName() .. " | BindableFunction")
  7157. print(" game." .. v:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
  7158. end end
  7159. for i,v in pairs(game:GetDescendants()) do
  7160. if v:IsA("BindableEvent") then
  7161. warn(" game." .. v:GetFullName() .. " | BindableEvent")
  7162. print(" game." .. v:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
  7163. end end
  7164. else
  7165. print("Off")
  7166. end
  7167. if remotes == true then
  7168. for i,v in pairs(game:GetDescendants()) do
  7169. if v:IsA("RemoteFunction") then
  7170. warn(" game." .. v:GetFullName() .. " | RemoteFunction")
  7171. print(" game." .. v:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
  7172. end end
  7173. wait()
  7174. for i,v in pairs(game:GetDescendants()) do
  7175. if v:IsA("RemoteEvent") then
  7176. print(" game." .. v:GetFullName() .. " | RemoteEvent")
  7177. print(" game." .. v:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
  7178. end end
  7179. else
  7180. print("Off")
  7181. end
  7182. game:GetService("StarterGui"):SetCore("SendNotification", {
  7183. Title = "Printing Remotes";
  7184. Text = "Type ;noremotes to disable.";
  7185. })
  7186. end
  7187. if string.sub(CMDBAR.Text, 1, 9) == ("noremotes") then
  7188. remotes = false
  7189. added = false
  7190. game:GetService("StarterGui"):SetCore("SendNotification", {
  7191. Title = "Printing Remotes Disabled";
  7192. Text = "Type ;remotes to enable.";
  7193. })
  7194. end
  7195. if string.sub(CMDBAR.Text, 1, 9) == ("tpdefault") then
  7196. spin = false
  7197. followed = false
  7198. traill = false
  7199. noclip = false
  7200. annoying = false
  7201. hwalk = false
  7202. cbringing = false
  7203. end
  7204. if string.sub(CMDBAR.Text, 1, 7) == ("stopsit") then
  7205. stopsitting = true
  7206. end
  7207. if string.sub(CMDBAR.Text, 1, 5) == ("gosit") then
  7208. stopsitting = false
  7209. end
  7210. if string.sub(CMDBAR.Text, 1, 7) == ("version") then
  7211. print(adminversion)
  7212. game:GetService("StarterGui"):SetCore("SendNotification", {
  7213. Title = "Version";
  7214. Text = adminversion;
  7215. })
  7216. end
  7217. if string.sub(CMDBAR.Text, 1, 7) == ("clicktp") then
  7218. clickgoto = true
  7219. game:GetService("StarterGui"):SetCore("SendNotification", {
  7220. Title = "Click TP";
  7221. Text = "Press E to teleport to mouse position";
  7222. })
  7223. end
  7224. if string.sub(CMDBAR.Text, 1, 9) == ("noclicktp") then
  7225. clickgoto = false
  7226. game:GetService("StarterGui"):SetCore("SendNotification", {
  7227. Title = "Click TP";
  7228. Text = "Click TP has been disabled.";
  7229. })
  7230. end
  7231. if string.sub(CMDBAR.Text, 1, 7) == ("toolson") then
  7232. gettingtools = true
  7233. game:GetService("StarterGui"):SetCore("SendNotification", {
  7234. Title = "Tools Enabled";
  7235. Text = "Automatically colleting tools dropped.";
  7236. })
  7237. end
  7238. if string.sub(CMDBAR.Text, 1, 8) == ("toolsoff") then
  7239. gettingtools = false
  7240. game:GetService("StarterGui"):SetCore("SendNotification", {
  7241. Title = "Tools Disabled";
  7242. Text = "Click TP has been disabled.";
  7243. })
  7244. end
  7245. if string.sub(CMDBAR.Text, 1, 9) == ("delcmdbar") then
  7246. ScreenGui:Destroy()
  7247. end
  7248. if string.sub(CMDBAR.Text, 1, 5) == ("reset") then
  7249. lplayer.Character.Head:Destroy()
  7250. end
  7251. if string.sub(CMDBAR.Text, 1, 6) == ("state ") then
  7252. statechosen = string.sub(CMDBAR.Text, 7)
  7253. changingstate = true
  7254. end
  7255. if string.sub(CMDBAR.Text, 1, 8) == ("gravity ") then
  7256. game:GetService("Workspace").Gravity = string.sub(CMDBAR.Text, 9)
  7257. end
  7258. if string.sub(CMDBAR.Text, 1, 9) == ("looprhats") then
  7259. removingmeshhats = true
  7260. end
  7261. if string.sub(CMDBAR.Text, 1, 11) == ("unlooprhats") then
  7262. removingmeshhats = false
  7263. end
  7264. if string.sub(CMDBAR.Text, 1, 9) == ("looprtool") then
  7265. removingmeshtool = true
  7266. end
  7267. if string.sub(CMDBAR.Text, 1, 11) == ("unlooprtool") then
  7268. removingmeshtool = false
  7269. end
  7270. if string.sub(CMDBAR.Text, 1, 9) == ("givetool ") then
  7271. for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
  7272. if v:IsA("Tool") then
  7273. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
  7274. v.Parent = player.Character
  7275. end
  7276. end
  7277. end
  7278. end
  7279. if string.sub(CMDBAR.Text, 1, 4) == ("age ") then
  7280. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 5))) do
  7281. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account Age: "..player.AccountAge.." days!", "All")
  7282. end
  7283. end
  7284. if string.sub(CMDBAR.Text, 1, 3) == ("id ") then
  7285. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 4))) do
  7286. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account ID: "..player.UserId, "All")
  7287. end
  7288. end
  7289. if string.sub(CMDBAR.Text, 1, 5) == (".age ") then
  7290. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
  7291. game:GetService("StarterGui"):SetCore("SendNotification", {
  7292. Title = player.AccountAge.." Days";
  7293. Text = "Account age of "..player.Name;
  7294. })
  7295. end
  7296. end
  7297. if string.sub(CMDBAR.Text, 1, 4) == (".id ") then
  7298. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 5))) do
  7299. game:GetService("StarterGui"):SetCore("SendNotification", {
  7300. Title = player.UserId.." ID";
  7301. Text = "Account ID of "..player.Name;
  7302. })
  7303. end
  7304. end
  7305. if string.sub(CMDBAR.Text, 1, 6) == ("gameid") then
  7306. game:GetService("StarterGui"):SetCore("SendNotification", {
  7307. Title = "Game ID";
  7308. Text = "Game ID: ".. game.GameId;
  7309. })
  7310. end
  7311. if string.sub(CMDBAR.Text, 1, 3) == ("pgs") then
  7312. local pgscheck = game:GetService("Workspace"):PGSIsEnabled()
  7313. if pgscheck == true then
  7314. game:GetService("StarterGui"):SetCore("SendNotification", {
  7315. Title = "PGSPhysicsSolverEnabled";
  7316. Text = "PGS is Enabled!";
  7317. })
  7318. else
  7319. game:GetService("StarterGui"):SetCore("SendNotification", {
  7320. Title = "PGSPhysicsSolverEnabled";
  7321. Text = "PGS is Disabled!";
  7322. })
  7323. end
  7324. end
  7325. if string.sub(CMDBAR.Text, 1, 11) == ("removeinvis") then
  7326. for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  7327. if v:IsA("Part") then
  7328. if v.Transparency == 1 then
  7329. if v.Name ~= "HumanoidRootPart" then
  7330. v:Destroy()
  7331. end
  7332. end
  7333. end
  7334. end
  7335. end
  7336. if string.sub(CMDBAR.Text, 1, 9) == ("removefog") then
  7337. game:GetService("Lighting").FogStart = 0
  7338. game:GetService("Lighting").FogEnd = 9999999999999
  7339. end
  7340. if string.sub(CMDBAR.Text, 1, 7) == ("disable") then
  7341. lplayer.Character.Humanoid.Parent = lplayer
  7342. end
  7343. if string.sub(CMDBAR.Text, 1, 6) == ("enable") then
  7344. lplayer.Humanoid.Parent = lplayer.Character
  7345. end
  7346. if string.sub(CMDBAR.Text, 1, 13) == ("givealltools ") then
  7347. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do
  7348. if v:IsA("Tool") then
  7349. v.Parent = lplayer.Character
  7350. wait()
  7351. for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 14))) do
  7352. v.Parent = player.Character
  7353. end
  7354. end
  7355. end
  7356. end
  7357. if string.sub(CMDBAR.Text, 1, 9) == ("flyspeed ") then
  7358. speedfly = string.sub(CMDBAR.Text, 10)
  7359. wait()
  7360. change()
  7361. end
  7362. if string.sub(CMDBAR.Text, 1, 7) == ("carpet ") then
  7363. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
  7364. local Anim3 = Instance.new("Animation")
  7365. Anim3.AnimationId = "rbxassetid://282574440"
  7366. local track3 = lplayer.Character.Humanoid:LoadAnimation(Anim3)
  7367. track3:Play(.1, 1, 1)
  7368. bplrr = v.Name
  7369. banpl = true
  7370. end
  7371. end
  7372. if string.sub(CMDBAR.Text, 1, 8) == ("uncarpet") then
  7373. banpl = false
  7374. end
  7375. if string.sub(CMDBAR.Text, 1, 6) == ("stare ") then
  7376. for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
  7377. staring = true
  7378. stareplr = v
  7379. end
  7380. end
  7381. if string.sub(CMDBAR.Text, 1, 7) == ("unstare") then
  7382. staring = false
  7383. end
  7384. if string.sub(CMDBAR.Text, 1, 7) == ("logchat") then
  7385. chatlogs = true
  7386. game:GetService("StarterGui"):SetCore("SendNotification", {
  7387. Title = "LogChat enabled";
  7388. Text = "Now logging all player chat.";
  7389. })
  7390. end
  7391. if string.sub(CMDBAR.Text, 1, 9) == ("unlogchat") then
  7392. chatlogs = false
  7393. game:GetService("StarterGui"):SetCore("SendNotification", {
  7394. Title = "LogChat disabled";
  7395. Text = "Stopped logging all player chat.";
  7396. })
  7397. end
  7398. if string.sub(CMDBAR.Text, 1, 6) == ("fixcam") then
  7399. game:GetService("Workspace").CurrentCamera:Destroy()
  7400. wait(0.1)
  7401. game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
  7402. game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
  7403. lplayer.CameraMinZoomDistance = 0.5
  7404. lplayer.CameraMaxZoomDistance = 400
  7405. lplayer.CameraMode = "Classic"
  7406. end
  7407. if string.sub(CMDBAR.Text, 1, 7) == ("unstate") then
  7408. changingstate = false
  7409. end
  7410. CMDBAR.Text = ""
  7411. end
  7412. end)
  7413.  
  7414. wait(0.3)
  7415. game:GetService("StarterGui"):SetCore("SendNotification", {
  7416. Title = "Loaded successfully!";
  7417. Text = "Reviz Admin V2 by illremember";
  7418. })
  7419. wait(0.1)
  7420. print("Reviz Admin V2 loaded!")
  7421. if game:GetService("Workspace").FilteringEnabled == true then
  7422. warn("FE is Enabled (Filtering Enabled)")
  7423. game:GetService("StarterGui"):SetCore("SendNotification", {
  7424. Title = "FE is Enabled";
  7425. Text = "Filtering Enabled. Enjoy using Reviz Admin!";
  7426. })
  7427. else
  7428. warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
  7429. game:GetService("StarterGui"):SetCore("SendNotification", {
  7430. Title = "FE is Disabled";
  7431. Text = "Filtering Disabled. Consider using a different admin script.";
  7432. })
  7433. end
  7434.  
  7435. local intro = Instance.new("ScreenGui")
  7436. local Frame = Instance.new("Frame")
  7437. local ImageLabel = Instance.new("ImageLabel")
  7438. intro.Parent = game:GetService("CoreGui")
  7439. Frame.Parent = intro
  7440. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  7441. Frame.BackgroundTransparency = 1
  7442. Frame.Size = UDim2.new(1, 0, 0, 300)
  7443. Frame.Position = UDim2.new(0, 0, -0.4, 0)
  7444. ImageLabel.Parent = Frame
  7445. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  7446. ImageLabel.BackgroundTransparency = 1
  7447. ImageLabel.Position = UDim2.new(0, 0, 0, 0)
  7448. ImageLabel.Size = UDim2.new(1, 0, 1, 0)
  7449. ImageLabel.Image = "http://www.roblox.com/asset/?id=1542162618"
  7450. Frame:TweenPosition(UDim2.new(0, 0, 0.2, 0), "Out", "Elastic", 3)
  7451. wait(3.01)
  7452. Frame:TweenPosition(UDim2.new(0, 0, 1.5, 0), "Out", "Elastic", 5)
  7453. wait(5.01)
  7454. intro:Destroy()
Add Comment
Please, Sign In to add comment