Advertisement
Fr3erunning

3 Good HUBS

Mar 7th, 2019
449
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 222.00 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local Tutorial = Instance.new("ScreenGui")
  5. local OpenFrame = Instance.new("Frame")
  6. local Open = Instance.new("TextButton")
  7. local Main = Instance.new("Frame")
  8. local BeautyA = Instance.new("Frame")
  9. local TextLabel = Instance.new("TextLabel")
  10. local BeautyB = Instance.new("Frame")
  11. local TextLabel_2 = Instance.new("TextLabel")
  12. local Shattervast = Instance.new("TextButton")
  13. local RoseGUI = Instance.new("TextButton")
  14. local FEArosiaGUI = Instance.new("TextButton")
  15. local X = Instance.new("TextButton")
  16. --Properties:
  17. Tutorial.Name = "Tutorial"
  18. Tutorial.Parent = game.CoreGui
  19.  
  20. OpenFrame.Name = "OpenFrame"
  21. OpenFrame.Parent = Tutorial
  22. OpenFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  23. OpenFrame.Position = UDim2.new(-9.10894887e-05, 0, 0.470479727, 0)
  24. OpenFrame.Size = UDim2.new(0, 75, 0, 33)
  25.  
  26. Open.Name = "Open"
  27. Open.Parent = OpenFrame
  28. Open.BackgroundColor3 = Color3.new(1, 0, 0)
  29. Open.Size = UDim2.new(0, 75, 0, 32)
  30. Open.Font = Enum.Font.SourceSans
  31. Open.Text = "Open"
  32. Open.TextColor3 = Color3.new(0, 0, 0)
  33. Open.TextSize = 35
  34. Open.MouseButton1Down:connect(function()
  35. Main.Visible = true
  36. OpenFrame.Visible = false
  37. end)
  38.  
  39. Main.Name = "Main"
  40. Main.Parent = Tutorial
  41. Main.Active = true
  42. Main.BackgroundColor3 = Color3.new(1, 0, 0)
  43. Main.BackgroundTransparency = 0.40000000596046
  44. Main.Position = UDim2.new(0.261462212, 0, 0.246520877, 0)
  45. Main.Size = UDim2.new(0, 345, 0, 255)
  46. Main.Visible = false
  47. Main.Draggable = true
  48.  
  49. BeautyA.Name = "Beauty A"
  50. BeautyA.Parent = Main
  51. BeautyA.BackgroundColor3 = Color3.new(1, 0.333333, 0.498039)
  52. BeautyA.Size = UDim2.new(0, 345, 0, 25)
  53.  
  54. TextLabel.Parent = BeautyA
  55. TextLabel.BackgroundColor3 = Color3.new(1, 0.333333, 0.498039)
  56. TextLabel.Size = UDim2.new(0, 345, 0, 25)
  57. TextLabel.Font = Enum.Font.SourceSans
  58. TextLabel.Text = "Starter GUI"
  59. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  60. TextLabel.TextSize = 35
  61.  
  62. BeautyB.Name = "Beauty B"
  63. BeautyB.Parent = Main
  64. BeautyB.BackgroundColor3 = Color3.new(1, 0.333333, 0.498039)
  65. BeautyB.Position = UDim2.new(0, 0, 0.90196079, 0)
  66. BeautyB.Size = UDim2.new(0, 345, 0, 25)
  67.  
  68. TextLabel_2.Parent = BeautyB
  69. TextLabel_2.BackgroundColor3 = Color3.new(1, 0.333333, 0.498039)
  70. TextLabel_2.Size = UDim2.new(0, 345, 0, 25)
  71. TextLabel_2.Font = Enum.Font.SourceSans
  72. TextLabel_2.Text = "Gui Made By Me YEY"
  73. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  74. TextLabel_2.TextSize = 30
  75.  
  76. Shattervast.Name = "Shattervast"
  77. Shattervast.Parent = Main
  78. Shattervast.BackgroundColor3 = Color3.new(1, 1, 0.498039)
  79. Shattervast.Position = UDim2.new(0.234739512, 0, 0.702412963, 0)
  80. Shattervast.Size = UDim2.new(0, 200, 0, 50)
  81. Shattervast.Font = Enum.Font.SourceSans
  82. Shattervast.Text = "Shattervast"
  83. Shattervast.TextColor3 = Color3.new(0, 0, 0)
  84. Shattervast.TextSize = 40
  85. Shattervast.MouseButton1Down:connect(function()
  86. -- Have Fun!
  87. -- IT FUCKING TAKE MY SELF 1 HOUR TO RESCRIPT THIS CAUSE SKISPLOIT CANT RUN THE FUCKING COREGUI
  88. -- Re script by Alex games #9120
  89. -- By illremember#3799
  90.  
  91. -- Important Loading
  92. trueSettings = {
  93. commandPrefix = ";";
  94. hotkeys = {};
  95. fchotkeymode = "unfc";
  96. }
  97.  
  98. -- Important Variables
  99. gsPlayers = game:GetService("Players")
  100. gsWorkspace = game:GetService("Workspace")
  101. gsLighting = game:GetService("Lighting")
  102. gsReplicatedStorage = game:GetService("ReplicatedStorage")
  103. gsCoreGui = game:GetService("CoreGui")
  104. gsTween = game:GetService("TweenService")
  105. gsHttp = game:GetService("HttpService")
  106.  
  107. LP = gsPlayers.LocalPlayer
  108. Mouse = LP:GetMouse()
  109.  
  110. defaultSettings = gsHttp:JSONEncode(trueSettings)
  111. function CreateSave()
  112. writefile("Shattervast.txt", defaultSettings)
  113. wait(0.5)
  114. local content = readfile("Shattervast.txt")
  115. local trueValue = gsHttp:JSONDecode(content)
  116. commandPrefix = trueValue.commandPrefix
  117. hotkeys = trueValue.hotkeys
  118. fchotkeymode = trueValue.fchotkeymode
  119. end
  120. function fullUpdate()
  121. local updatedSettings = {
  122. commandPrefix = commandPrefix;
  123. hotkeys = hotkeys;
  124. fchotkeymode = fchotkeymode;
  125. }
  126. local fullUPDATED = gsHttp:JSONEncode(updatedSettings)
  127. wait(0.2)
  128. writefile("Shattervast.txt", fullUPDATED)
  129. end
  130. if writefile ~= nil then
  131. function builder()
  132. local TESTsave = readfile("Shattervast.txt")
  133. if TESTsave == nil then
  134. return false
  135. else
  136. return true
  137. end
  138. end
  139. local success, message = pcall(builder)
  140. if success == true then
  141. function reader()
  142. local content = readfile("Shattervast.txt")
  143. local trueValue = gsHttp:JSONDecode(content)
  144. commandPrefix = trueValue.commandPrefix
  145. hotkeys = trueValue.hotkeys
  146. if trueValue.fchotkeymode == nil then
  147. fchotkeymode = "unfc"
  148. fullUpdate()
  149. else
  150. fchotkeymode = trueValue.fchotkeymode
  151. end
  152. end
  153. reader()
  154. elseif success == false then
  155. CreateSave()
  156. end
  157. else
  158. commandPrefix = ";"
  159. hotkeys = {}
  160. fchotkeymode = "unfc"
  161. end
  162.  
  163. CurrentGravity = gsWorkspace.Gravity
  164. CurrentWalkspeed = LP.Character.Humanoid.WalkSpeed
  165. CurrentJumppower = LP.Character.Humanoid.JumpPower
  166. CurrentHipheight = LP.Character.Humanoid.HipHeight
  167. CurrentNormal = LP.DevCameraOcclusionMode
  168.  
  169. gsWorkspace.Camera.Changed:Connect(function()
  170. gsWorkspace.Camera.FieldOfView = 70
  171. end)
  172.  
  173. -- Important Functions
  174. function view(plr)
  175. if plr.Character.Humanoid ~= nil then
  176. gsWorkspace.CurrentCamera.CameraSubject = plr.Character.Humanoid
  177. else
  178. gsWorkspace.CurrentCamera.CameraSubject = plr.Character.Head
  179. end
  180. end
  181. function unlockWS()
  182. for i,part in pairs(gsWorkspace:GetDescendants()) do
  183. if part:IsA("Part") then
  184. part.Locked = false
  185. end
  186. end
  187. end
  188. function lockWS()
  189. for i,part in pairs(gsWorkspace:GetDescendants()) do
  190. if part:IsA("Part") then
  191. part.Locked = true
  192. end
  193. end
  194. end
  195. function FEGodmode()
  196. local changeview = false
  197. if gsWorkspace.CurrentCamera.CameraSubject == LP.Character.Humanoid or gsWorkspace.CurrentCamera.CameraSubject == LP.Character then
  198. changeview = true
  199. end
  200. LP.Character.Humanoid.Name = 1
  201. local l = LP.Character["1"]:Clone()
  202. l.Parent = LP.Character
  203. l.Name = "Humanoid"
  204. wait(0.1)
  205. LP.Character["1"]:Destroy()
  206. if changeview then
  207. game:GetService("Workspace").CurrentCamera.CameraSubject = LP.Character
  208. end
  209. LP.Character.Animate.Disabled = true
  210. wait(0.1)
  211. LP.Character.Animate.Disabled = false
  212. LP.Character.Humanoid.DisplayDistanceType = "None"
  213. end
  214. function RocketPropulsion(maxthrust,maxspeed,thrustp,targetplr,name)
  215. local l = Instance.new("RocketPropulsion")
  216. l.Parent = LP.Character.HumanoidRootPart
  217. l.CartoonFactor = 1
  218. l.MaxThrust = maxthrust
  219. l.MaxSpeed = maxspeed
  220. l.ThrustP = thrustp
  221. l.Name = name
  222. l.Target = targetplr.Character.HumanoidRootPart
  223. l:Fire()
  224. end
  225. function createIntro(style, msg, length)
  226. if gsCoreGui:FindFirstChild("Notification") then
  227. gsCoreGui:FindFirstChild("Notification"):Destroy()
  228. end
  229. local info = "http://www.roblox.com/asset/?id=1281284684"
  230. local warning = "http://www.roblox.com/asset/?id=1281286925"
  231. if style == "info" then
  232. style = info
  233. elseif style == "warning" then
  234. style = warning
  235. end
  236. local Notification = Instance.new("ScreenGui")
  237. local Frame = Instance.new("Frame")
  238. local TextLabel = Instance.new("TextLabel")
  239. local IMAGE = Instance.new("ImageLabel")
  240. Notification.Name = "Notification"
  241. Notification.Parent = game.Players.LocalPlayer.PlayerGui
  242. Notification.ResetOnSpawn = false
  243. Frame.Parent = Notification
  244. Frame.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  245. Frame.BackgroundTransparency = 0.20000000298023
  246. Frame.BorderSizePixel = 0
  247. Frame.Position = UDim2.new(0, 0, -0.2, 0)
  248. Frame.Size = UDim2.new(1, 0, 0, 30)
  249. TextLabel.Parent = Frame
  250. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  251. TextLabel.BackgroundTransparency = 1
  252. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  253. TextLabel.Font = Enum.Font.SourceSansLight
  254. TextLabel.Text = msg
  255. TextLabel.TextColor3 = Color3.new(0.905882, 0.905882, 0.905882)
  256. TextLabel.TextScaled = true
  257. TextLabel.TextSize = 14
  258. TextLabel.TextWrapped = true
  259. IMAGE.Parent = Frame
  260. IMAGE.BackgroundTransparency = 1
  261. IMAGE.Size = UDim2.new(0, 50, 0, 50)
  262. IMAGE.Position = UDim2.new(0.1, 0, 0, 0)
  263. IMAGE.Image = style
  264. local Intro = Instance.new("ScreenGui")
  265. local Frame2 = Instance.new("Frame")
  266. local IMAGE2 = Instance.new("ImageLabel")
  267. Intro.Name = "Intro"
  268. Intro.Parent = game.Players.LocalPlayer.PlayerGui
  269. Intro.ResetOnSpawn = false
  270. Frame2.Parent = Intro
  271. Frame2.BackgroundTransparency = 1
  272. Frame2.BorderSizePixel = 0
  273. Frame2.Position = UDim2.new(0, 0, -0.2, 0)
  274. Frame2.Size = UDim2.new(1, 0, 0, 30)
  275. IMAGE2.Parent = Frame
  276. IMAGE2.BackgroundTransparency = 1
  277. IMAGE2.AnchorPoint = Vector2.new(0.5, 0)
  278. IMAGE2.Size = UDim2.new(0, 240, 0, 120)
  279. IMAGE2.Position = UDim2.new(0.5, 0, 0, 0)
  280. IMAGE2.Image = "http://www.roblox.com/asset/?id=1795472522"
  281. Frame2:TweenPosition(UDim2.new(0, 0, 0, 200), "Out", "Quad", 1.5)
  282. Frame:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Quad", 1.5)
  283. wait(length)
  284. pcall(function()
  285. Frame:TweenPosition(UDim2.new(0, 0, -1.5, 0), "Out", "Quad", 3)
  286. Frame2:TweenPosition(UDim2.new(0, 0, -1.5, 0), "Out", "Quad", 3)
  287. end)
  288. wait(3.01)
  289. Intro:Destroy()
  290. Notification:Destroy()
  291. end
  292. function Notification(style, msg, length)
  293. if gsCoreGui:FindFirstChild("Notification") then
  294. gsCoreGui:FindFirstChild("Notification"):Destroy()
  295. end
  296. local info = "http://www.roblox.com/asset/?id=1281284684"
  297. local warning = "http://www.roblox.com/asset/?id=1281286925"
  298. if style == "info" then
  299. style = info
  300. elseif style == "warning" then
  301. style = warning
  302. end
  303. local Notification = Instance.new("ScreenGui")
  304. local Frame = Instance.new("Frame")
  305. local TextLabel = Instance.new("TextLabel")
  306. local IMAGE = Instance.new("ImageLabel")
  307. Notification.Name = "Notification"
  308. Notification.Parent = game.Players.LocalPlayer.PlayerGui
  309. Notification.ResetOnSpawn = false
  310. Frame.Parent = Notification
  311. Frame.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  312. Frame.BackgroundTransparency = 0.20000000298023
  313. Frame.BorderSizePixel = 0
  314. Frame.Position = UDim2.new(0, 0, -0.2, 0)
  315. Frame.Size = UDim2.new(1, 0, 0, 30)
  316. TextLabel.Parent = Frame
  317. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  318. TextLabel.BackgroundTransparency = 1
  319. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  320. TextLabel.Font = Enum.Font.SourceSansLight
  321. TextLabel.Text = msg
  322. TextLabel.TextColor3 = Color3.new(0.905882, 0.905882, 0.905882)
  323. TextLabel.TextScaled = true
  324. TextLabel.TextSize = 14
  325. TextLabel.TextWrapped = true
  326. IMAGE.Parent = Frame
  327. IMAGE.BackgroundTransparency = 1
  328. IMAGE.Size = UDim2.new(0, 50, 0, 50)
  329. IMAGE.Position = UDim2.new(0.1, 0, 0, 0)
  330. IMAGE.Image = style
  331. Frame:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Quad", 1.5)
  332. wait(length)
  333. pcall(function()
  334. Frame:TweenPosition(UDim2.new(0, 0, -1.5, 0), "Out", "Quad", 3)
  335. end)
  336. wait(3.01)
  337. Notification:Destroy()
  338. end
  339. function hasTools()
  340. local a = false
  341. local b = false
  342. for i,v in pairs(LP.Character:GetDescendants()) do
  343. if v:IsA("Tool") then
  344. if v ~= nil then
  345. a = true
  346. else
  347. a = false
  348. end
  349. end
  350. end
  351. for i,k in pairs(LP.Backpack:GetDescendants()) do
  352. if k:IsA("Tool") then
  353. if k ~= nil then
  354. b = true
  355. else
  356. b = false
  357. end
  358. end
  359. end
  360. return a or b
  361. end
  362. Compliments = {" is the coolest person in this server!", ", I really like your avatar!", ", I really want to be your friend!", " is truly amazing. Truly!", " is incredible!", ", you are my favourite here!!", ", I am complimenting you right now at this very moment.", " you are really awesome", " when will you be my friend!?", " is such a great person", " is a fantastic person!"}
  363. function complimentplr(player)
  364. local plrName = player.Name
  365. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(plrName..Compliments[math.random(1, #Compliments)], "All")
  366. end
  367. function createINFO(player)
  368. local InfoGUIv2 = Instance.new("ScreenGui")
  369. local Frame = Instance.new("Frame")
  370. local Frame_2 = Instance.new("Frame")
  371. local infoguiCLOSE = Instance.new("TextButton")
  372. local Frame_3 = Instance.new("Frame")
  373. local playerName = Instance.new("TextLabel")
  374. local Frame_4 = Instance.new("Frame")
  375. local playerAvatar = Instance.new("ImageLabel")
  376. local playerAccAge = Instance.new("TextLabel")
  377. local playerId = Instance.new("TextLabel")
  378. local playerOs = Instance.new("TextLabel")
  379. local playerMembership = Instance.new("TextLabel")
  380. local Frame_5 = Instance.new("Frame")
  381. local Frame_6 = Instance.new("Frame")
  382. InfoGUIv2.Name = "InfoGUIv2"
  383. InfoGUIv2.Parent = game.Players.LocalPlayer.PlayerGui
  384. InfoGUIv2.ResetOnSpawn = false
  385. Frame.Parent = InfoGUIv2
  386. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  387. Frame.BackgroundTransparency = 1
  388. Frame.BorderColor3 = Color3.new(0, 0, 0)
  389. Frame.ClipsDescendants = true
  390. Frame.Position = UDim2.new(0.45, 0, 1, 0)
  391. Frame.Size = UDim2.new(0, 265, 0, 302)
  392. Frame.ZIndex = -1
  393. Frame_2.Parent = Frame
  394. Frame_2.BackgroundColor3 = Color3.new(0.290196, 0, 0.447059)
  395. Frame_2.BorderSizePixel = 0
  396. Frame_2.Size = UDim2.new(0, 260, 0, 20)
  397. infoguiCLOSE.Name = "infoguiCLOSE"
  398. infoguiCLOSE.Parent = Frame_2
  399. infoguiCLOSE.BackgroundColor3 = Color3.new(1, 1, 1)
  400. infoguiCLOSE.BackgroundTransparency = 1
  401. infoguiCLOSE.BorderSizePixel = 0
  402. infoguiCLOSE.Position = UDim2.new(0, 230, 0, 0)
  403. infoguiCLOSE.Size = UDim2.new(0, 30, 0, 20)
  404. infoguiCLOSE.Font = Enum.Font.SourceSansBold
  405. infoguiCLOSE.Text = "X"
  406. infoguiCLOSE.TextColor3 = Color3.new(0.992157, 0.992157, 0.992157)
  407. infoguiCLOSE.TextSize = 20
  408. Frame_3.Parent = Frame
  409. Frame_3.BackgroundColor3 = Color3.new(0.482353, 0.121569, 0.635294)
  410. Frame_3.BorderSizePixel = 0
  411. Frame_3.Position = UDim2.new(0, 0, 0, 20)
  412. Frame_3.Size = UDim2.new(0, 260, 0, 40)
  413. playerName.Name = "playerName"
  414. playerName.Parent = Frame_3
  415. playerName.BackgroundColor3 = Color3.new(1, 1, 1)
  416. playerName.BackgroundTransparency = 1
  417. playerName.Position = UDim2.new(0, 10, 0, 5)
  418. playerName.Size = UDim2.new(0, 240, 0, 30)
  419. playerName.Font = Enum.Font.SourceSansLight
  420. playerName.Text = player.Name
  421. playerName.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
  422. playerName.TextScaled = true
  423. playerName.TextSize = 14
  424. playerName.TextWrapped = true
  425. Frame_4.Parent = Frame
  426. Frame_4.BackgroundColor3 = Color3.new(0.956863, 0.956863, 0.956863)
  427. Frame_4.BorderSizePixel = 0
  428. Frame_4.Position = UDim2.new(0, 0, 0, 60)
  429. Frame_4.Size = UDim2.new(0, 260, 0, 237)
  430. playerAvatar.Name = "playerAvatar"
  431. playerAvatar.Parent = Frame_4
  432. playerAvatar.BackgroundColor3 = Color3.new(1, 1, 1)
  433. playerAvatar.Position = UDim2.new(0, 85, 0, 10)
  434. playerAvatar.Size = UDim2.new(0, 85, 0, 85)
  435. playerAvatar.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=150&y=150&Format=Png&username="..player.Name
  436. playerAccAge.Name = "playerAccAge"
  437. playerAccAge.Parent = Frame_4
  438. playerAccAge.BackgroundColor3 = Color3.new(1, 1, 1)
  439. playerAccAge.BackgroundTransparency = 1
  440. playerAccAge.Position = UDim2.new(0, 5, 0, 101)
  441. playerAccAge.Size = UDim2.new(0, 250, 0, 30)
  442. playerAccAge.Font = Enum.Font.SourceSans
  443. playerAccAge.Text = "Account Age: "..player.AccountAge
  444. playerAccAge.TextColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  445. playerAccAge.TextScaled = true
  446. playerAccAge.TextSize = 14
  447. playerAccAge.TextWrapped = true
  448. playerId.Name = "playerId"
  449. playerId.Parent = Frame_4
  450. playerId.BackgroundColor3 = Color3.new(1, 1, 1)
  451. playerId.BackgroundTransparency = 1
  452. playerId.Position = UDim2.new(0, 5, 0, 131)
  453. playerId.Size = UDim2.new(0, 250, 0, 30)
  454. playerId.Font = Enum.Font.SourceSans
  455. playerId.Text = "Account ID: "..player.UserId
  456. playerId.TextColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  457. playerId.TextScaled = true
  458. playerId.TextSize = 14
  459. playerId.TextWrapped = true
  460. playerOs.Name = "playerOs"
  461. playerOs.Parent = Frame_4
  462. playerOs.BackgroundColor3 = Color3.new(1, 1, 1)
  463. playerOs.BackgroundTransparency = 1
  464. playerOs.Position = UDim2.new(0, 5, 0, 161)
  465. playerOs.Size = UDim2.new(0, 250, 0, 30)
  466. playerOs.Font = Enum.Font.SourceSansLight
  467. playerOs.Text = "Player OS: "..player.OsPlatform
  468. playerOs.TextColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  469. playerOs.TextScaled = true
  470. playerOs.TextSize = 14
  471. playerOs.TextWrapped = true
  472. playerMembership.Name = "playerMembership"
  473. playerMembership.Parent = Frame_4
  474. playerMembership.BackgroundColor3 = Color3.new(1, 1, 1)
  475. playerMembership.BackgroundTransparency = 1
  476. playerMembership.Position = UDim2.new(0, 5, 0, 191)
  477. playerMembership.Size = UDim2.new(0, 250, 0, 30)
  478. playerMembership.Font = Enum.Font.SourceSansLight
  479. if player.MembershipType == Enum.MembershipType.None then
  480. playerMembership.Text = "No builder's club."
  481. elseif player.MembershipType == Enum.MembershipType.BuildersClub then
  482. playerMembership.Text = "Builder's club!"
  483. elseif player.MembershipType == Enum.MembershipType.TurboBuildersClub then
  484. playerMembership.Text = "Turbo Builder's club!"
  485. elseif player.MembershipType == Enum.MembershipType.OutrageousBuildersClub then
  486. playerMembership.Text = "Outrageous Builder's club!"
  487. end
  488. playerMembership.TextColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  489. playerMembership.TextScaled = true
  490. playerMembership.TextSize = 14
  491. playerMembership.TextWrapped = true
  492. Frame_5.Parent = Frame
  493. Frame_5.BackgroundColor3 = Color3.new(0, 0, 0)
  494. Frame_5.BackgroundTransparency = 0.69999998807907
  495. Frame_5.BorderColor3 = Color3.new(0, 0, 0)
  496. Frame_5.BorderSizePixel = 0
  497. Frame_5.ClipsDescendants = true
  498. Frame_5.Position = UDim2.new(0, 10, 0, 10)
  499. Frame_5.Selectable = true
  500. Frame_5.Size = UDim2.new(0, 255, 0, 292)
  501. Frame_5.ZIndex = -1
  502. Frame_6.Parent = Frame
  503. Frame_6.BackgroundColor3 = Color3.new(0, 0, 0)
  504. Frame_6.BackgroundTransparency = 0.69999998807907
  505. Frame_6.BorderColor3 = Color3.new(0, 0, 0)
  506. Frame_6.BorderSizePixel = 0
  507. Frame_6.ClipsDescendants = true
  508. Frame_6.Position = UDim2.new(0, 8, 0, 8)
  509. Frame_6.Selectable = true
  510. Frame_6.Size = UDim2.new(0, 255, 0, 292)
  511. Frame_6.ZIndex = -1
  512. local closeGet = {}
  513. closeGet.Size = UDim2.new(0, 0, 0, 0)
  514. local openGet = {}
  515. openGet.Position = UDim2.new(0.45, 0, 0.45, 0)
  516. local closeFunction = gsTween:Create(Frame, TweenInfo.new(2, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), closeGet)
  517. local openFunction = gsTween:Create(Frame, TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), openGet)
  518. infoguiCLOSE.MouseButton1Click:Connect(function()
  519. closeFunction:Play()
  520. Frame:TweenPosition((Frame.Position + UDim2.new(0, 265 / 2, 0, 302 / 2)), "InOut", "Sine", 2)
  521. wait(2.01)
  522. Frame:Destroy()
  523. end)
  524. openFunction:Play()
  525. local UserInputService = game:GetService("UserInputService")
  526. local dragging
  527. local dragInput
  528. local dragStart
  529. local startPos
  530. local function update(input)
  531. local delta = input.Position - dragStart
  532. local dragTime = 0.055
  533. local SmoothDrag = {}
  534. SmoothDrag.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  535. local dragSmoothFunction = gsTween:Create(Frame, TweenInfo.new(dragTime, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), SmoothDrag)
  536. dragSmoothFunction:Play()
  537. end
  538. Frame.InputBegan:Connect(function(input)
  539. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  540. dragging = true
  541. dragStart = input.Position
  542. startPos = Frame.Position
  543. input.Changed:Connect(function()
  544. if input.UserInputState == Enum.UserInputState.End then
  545. dragging = false
  546. end
  547. end)
  548. end
  549. end)
  550. Frame.InputChanged:Connect(function(input)
  551. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  552. dragInput = input
  553. end
  554. end)
  555. UserInputService.InputChanged:Connect(function(input)
  556. if input == dragInput and dragging and Frame.Size == UDim2.new(0, 265, 0, 302) then
  557. update(input)
  558. end
  559. end)
  560. end
  561. function clientSided()
  562. Notification("info", "This command is for the client (you) only, no one else can see!", 6)
  563. end
  564. searchCmds={"1 print [msg] - Prints a message to the developer console","2 warn [msg] - Warns a message to the developer console","3 sit - Makes you sit","4 god - Activates FE Godmode (breaks tools)","5 view [plr] - Changes your camera subject to another player","6 unview - Changes your camera back to your player","7 gravity [num] - Changes workspace gravity to [num]","8 ungravity - Reverts workspace gravity to game's default","9 goto [plr] - Teleports you to a player","10 fecheck - Checks whether the game is FE or not","11 lockws - Locks the whole workspace","12 unlockws - Unlocks the whole workspace","13 noclip - Allows you to walk through walls and other objects","14 clip - Stops noclip, can collide","15 follow [plr] / [num] - Makes you follow a player constantly, optional [num] for how far away to follow","16 unfollow - Stops you from following","17 fling [plr] / [pow] - Uses your character to fling a player, optional [pow] for how much power to put into the fling","18 unfling - Stops you from flinging","19 trail [plr] / [num] - Makes you trail (walk infront) of a player constantly, optional [num] for how far away to trail","20 untrail - Stops you from trailing","21 annoy [plr] - Loop teleports you to the player","22 unannoy - Stops loop teleporting you","23 reset - Resets your character","24 grespawn - Respawns your character, best for use after FE godmode","25 respawn - Respawns your character, best to use if grespawn fails to work","26 speed // ws [num] - Changes your walkspeed (speed or ws) to [num]","27 jumppower // jp [num] - Changes your jumppower (jumppower or jp) to [num]","28 hipheight // hh [num] - Changes your hipheight (hipheight or hh) to [num]","29 default - Changes your walkspeed, jumppower and hipheight back to normal","30 credits - Displays admin credits (by illremember#3799)","31 attach [plr] - Attaches you to a player, tool required","32 fly / [speed] - Enables fly, optional [speed] for how fast to fly","33 unfly - Disables fly","34 kill [plr] - Kills a player, tool required","35 bring [plr] - Brings a player, tool required","36 naked - Displays avatar body colours","37 nolimbs - Deletes all your arms and legs","38 noarms - Deletes both your arms","39 nolegs - Deletes both your legs","40 antikick [on/off] - Blocks all remotes for antikick when on, disables when off","41 blockremote [remote] / [service] - Blocks a remote from firing, optional [service] for where the remote is located","42 remotespy [on/off] - Prints all remotes to developer console when on when fired, stops printing when off","43 bang [plr] / [speed] - Bangs a player, optional [speed] to set animation adjust speed","44 unbang - Stops bang player","45 spam [msg] - Spams [msg] in chat","46 spamdelay [num] - Sets how long to wait in between spamming","47 unspam - Stops spamming","48 info [plr] - Creates GUI with information about player account, shows Account age, membership and account ID","49 age [plr] - Chats account age of player","50 invisible - Enables FE invisibility, by Timeless","51 walk [plr] - Begins to make you loop walk towards player","52 glitch [plr] / [num] - Glitches a player, tool required, optional [num] for strength of glitch","53 tp [plr] [plr] - Teleports a player to another player, tool required","54 givetool [plr] / [tool] - Gives your current equipped tool to player, optional [tool] to pick a tool by name from your inventory","55 givealltools [plr] - Gives all tools currently equipped and in inventory to player","56 blockhats - Removes mesh of all accessories","57 blocktool - Removes mesh of currently equipped tool","58 orbit [plr] - Begins to make you orbit around a player","59 unorbit - Stops you orbiting a player","60 pos - Shows your current position","61 savepos - Saves your current position","62 loadpos - Loads your current position from savepos","63 tppos [num] [num] [num] - Teleports you to position [num], [num], [num]","64 pmspam [plr] [msg] - Makes you spam a player's pm with [msg]","65 unpmspam - Stops spamming a player's pm","66 wsvis [num] - Changes all parts in workspace to [num] transparency","67 bringobj [obj] / [num] - Brings an object in the workspace to you, optional [num] for how far away to bring object","68 cbring [plr] - Brings a player to you constantly on client","69 uncbring - Stops bringing a player to you on client","70 cfreeze [plr] - Freezes a player on your client","71 uncfreeze / [plr] - Unfreezes a player on your cleint","72 unattach - Unattaches you from a player","73 reach [on/off] / [num] - Activates/Deactivates reach for currently equipped tool, optional [num] for how long the reach should be","74 droptool / [tool] - Drops a tool into the workspace, optional [tool] command for which tool to drop","75 drophats - Drops all your accessories into the workspace","76 hidecmdbar - Hides the command bar","77 showcmdbar - Shows the command bar","78 prefix [key] - Changes your prefix to [key] must be 1 character","79 removeinvis - Removes all invisible parts in workspace","80 removefog - Removes fog in lighting","81 animation [id/gui] / [speed] - Makes you play an animation with [id], optional [speed] for adjusting animation speed OR [gui] to open Energize animation GUI","82 btools - Gives you btools for deleting, copying and dragging (client side)","83 esp [plr] - Enables an esp for that player, credits to Infinite Yield","84 unesp / [plr] - Disables all esp, optional [plr] for disabling esp just for that player","85 dice - Chats you rolling a dice for 1, 2, 3, 4, 5 or 6","86 random [min] [max] - Chats you picking a random number between [min] and [max]","87 closegame - Shutsdown/closes your game","88 savetool / [tool] - Saves a tool to your player equipped, optional [tool] for which tool to save in your inventory","89 loadtool / [tool] - Loads a tool from your player, optional [tool] for which tool to load by name","90 savealltool - Saves all tools in your character/inventory","91 loadalltool - Loads all tools in your player saved tools","92 clicktp / [key] - Enables click teleport, optional [key] to set a key instead of clicking","93 clickdel / [key] - Enables click delete part, optional [key] to set a key instead of clicking","94 unclicktp - Disables clicktp","95 unclickdel - Disables clickdel","96 shutdown - Attempts a server shutdown","97 chatlogs - Opens up a chat log gui with options to print chat to developer console","98 stopadmin - Disables currently running admin completely","99 freecam / [speed] - Enables freecam (like flying but not in character), optional [speed] for how fast the freecam should go","100 unfreecam // unfc - Disables freecam","101 fctp [plr] - Teleports your freecam to player","102 gotofc - Teleports you to current freecam position","103 cmds - Opens up this GUI with commands","104 fullcredits - Shows full individual credits for all help with the admin","105 hotkey [key] [cmd] - Creates a hotkey that executes [cmd] when [key] is pressed","106 removehotkey [key] - Removes a hotkey with [key]","107 removeallhotkey - Removes all current hotkeys for commands","108 printhotkeys - Prints all current existing hotkeys","109 os [plr] - Chats the current OS of a player","110 spin [plr] - Makes you spin with a player, tool required","111 unspin - Stops you spinning a player/teleporting to a player","112 explorer - Loads DEX explorer","113 maxzoom [num] - Changes your maxzoom to number","114 stare [plr] - Makes you stare at another player","115 unstare [plr] - Makes you stop staring at player","116 tempgod - Enables temporary FE godmode, does not work on all games, does not break tools","117 void [plr] - Teleports you and a player to the void, requires a tool","118 freefall [plr] - Makes you and a player freefall to the ground","119 version - Shows current admin's version","120 shiftlockon - Enables shift lock if not enabled by game developer","121 copychat [plr] - Makes you copy the chat player says, use uncopychat to stop copying chat","122 newattach [plr] - Does not FE Godmode you, requires 2 tools, attaches you to player","123 newkill [plr] - Does not FE Godmode you, requires 2 tools, kills player","124 newbring [plr] - Does not FE Godmode you, requires 2 tools, brings player","125 spawn [ws/jp/hh/god] [num] - Sets your walkspeed/jumppower/hipheight to number whenever you respawn, or makes you FE Godded whenever you respawn","126 unspawn - Stops you spawning with stats set by "..commandPrefix.."spawn","127 autosavetool [on/off] - Auto saves your tools when you reset","128 beginbot / [mode] - Makes you a bot for other players, type just "..commandPrefix.."beginbot to print available modes","129 endbot / [mode] - Ends "..commandPrefix.."beginbot, optional [mode] to disable one mode only","130 stopsit - Disables your ability to sit","131 gosit - Enables your ability to sit","132 spawnpoint - Sets your spawnpoint for whenever you reset to where you are","133 nospawn - Removes your spawnpoint","134 chaterror - Creates a chat error, works best first time","135 bypass [on/off] - Changes certain commands like "..commandPrefix.."fly so they are not detected by most anti-exploits", "136 fixcam - Fixes your camera in case it breaks", "137 gotoobj [obj] - Teleports you to a part in the workspace, make sure you put the name properly!", "138 breakcam - Makes it so your camera can go through parts, fixed with "..commandPrefix.."fixcam", "139 inviscam - Makes it so your camera goes through parts and makes them transparent so your character is always visible, fixed with "..commandPrefix.."fixcam", "140 printobj / [key] - Prints the object's path clicked to developer console, optional [key] for key pressed instead of click", "141 unprintobj - Stops printobj from running", "142 hotkeyfc [goto/unfc] - If freecam is set as a hotkey, chooses whether to use unfreecam or gotofc when disabling through a hotkey", "143 carpet [plr] - Makes you a carpet for a player", "144 uncarpet - Stops carpet", "145 brickcreate [num] / [pos] [pos] [pos] - Creates [num] amount of bricks from accessories, wont work in all games, optional [pos] for position to create bricks", "146 uncopychat - Stops copying chat", "147 forward / [speed] - Makes you automatically move forward default speed is 1", "148 unforward - Stops you moving automatically forward from forward", "149 id [plr] - Makes you chat the user ID of the player", "150 spinhats / [pow] - Makes all your accessories begin to spin around! Credit to xFunnieuss.", "151 unspinhats - Stops spinhats from spinning accessories", "152 headless - Makes you headless, but cannot control your character after, use grespawn to reset", "153 savemap - Saves the current workspace/map", "154 loadmap - Loads map saved by savemap", "155 creatorid - Changes your user ID to the game creator's user ID", "156 gameid - Shows the game's ID", "157 delobj [obj] - Allows you to delete an object in the workspace by name", "158 glide [plr] / [speed] - Makes you glide towards a player, optional [speed] for the speed of gliding", "159 stutter [on/off] - Makes your character begin stuttering as you move", "160 platform - Creates a platform on your client that you can stand on, deletes in 20 seconds", "161 servertime - Gets the server time", "162 ride [plr] - Makes you ride a player's head", "163 unride [plr] - Makes you stop riding a player's head", "164 cmute [plr] - Client mutes a player, useful for muting spammers", "165 uncmute - Unmutes a player that has been cmuted", "166 hat [plr] - Makes you carpet a player, but on their head", "167 unhat - Stops hat from running", "168 chat [msg] - Makes you chat a string, useful for hotkeys"}
  565. CMDS={"print [msg]","warn [msg]","sit","god","view [plr]","unview","gravity [num]","ungravity","goto [plr]","fecheck","lockws","unlockws","noclip","clip","follow [plr] / [num]","unfollow","fling [plr] / [pow]","unfling","trail [plr] / [num]","untrail","annoy [plr]","unannoy","reset","grespawn","respawn","speed // ws [num]","jumppower // jp [num]","hipheight // hh [num]","default","credits","attach [plr]","fly / [speed]","unfly","kill [plr]","bring [plr]","naked","nolimbs","noarms","nolegs","antikick [on/off]","blockremote [remote] / [service]","remotespy [on/off]","bang [plr] / [speed]","unbang","spam [msg]","spamdelay [num]","unspam","info [plr]","age [plr]","invisible","walk [plr]","glitch [plr] / [num]","tp [plr] [plr]","givetool [plr] / [tool]","givealltools [plr]","blockhats","blocktool","orbit [plr]","unorbit","pos","savepos","loadpos","tppos [num] [num] [num]","pmspam [plr] [msg]","unpmspam","wsvis [num]","bringobj [obj] / [num]","cbring [plr] / [num]","uncbring","cfreeze [plr]","uncfreeze / [plr]","unattach","reach [on/off] / [num]","droptool / [tool]","drophats","hidecmdbar","showcmdbar","prefix [key]","removeinvis","removefog","animation [id/gui] / [speed]","btools","esp [plr]","unesp / [plr]","dice","random [min] [max]","closegame","savetool / [tool]","loadtool / [tool]","savealltool","loadalltool","clicktp / [key]","clickdel / [key]","unclicktp","unclickdel","oof","chatlogs","stopadmin","freecam / [speed] // fc / [speed]","unfreecam // unfc","gotofc","cmds","fullcredits","hotkey [key] [cmd]","removehotkey [key]","removeallhotkey","printhotkeys","os [plr]","spin [plr]","unspin","fctp [plr]","explorer","maxzoom [num]","stare [plr]","unstare [plr]","tempgod","void [plr]","freefall [plr]","version","shiftlockon","copychat [plr]","newattach [plr]","newkill [plr]","newbring [plr]","spawn [ws/jp/hh/god] [num]","unspawn","autosavetool [on/off]","beginbot / [mode]","endbot / [mode]","stopsit","gosit","spawnpoint","nospawn","chaterror", "bypass [on/off]", "fixcam", "gotoobj [obj]", "breakcam", "inviscam", "printobj / [key]", "unprintobj", "hotkeyfc [goto/unfc]", "carpet [plr]", "uncarpet", "brickcreate [num] / [pos] [pos] [pos]", "uncopychat", "forward / [speed]", "unforward", "id [plr]", "spinhats / [pow]", "unspinhats", "headless", "savemap", "loadmap", "creatorid", "gameid", "delobj [obj]", "glide [plr] / [speed]", "stutter [on/off]", "platform", "servertime", "ride [plr]", "unride", "cmute [plr]", "uncmute", "hat [plr]", "unhat", "chat [msg]"} -- 168
  566. local CMDS_GUI_V2 = Instance.new("ScreenGui")
  567. local CMDSmain = Instance.new("Frame")
  568. local CMDSframemain = Instance.new("Frame")
  569. local cmdgui_topframe = Instance.new("Frame")
  570. local closecmdsgui = Instance.new("TextButton")
  571. local cmdgui_midframe = Instance.new("Frame")
  572. local cmdsgui_SearchFunction = Instance.new("TextBox")
  573. local cmdsgui_searchDETAILFRAME = Instance.new("Frame")
  574. local cmdsgui_searchDETAILTEXT = Instance.new("TextLabel")
  575. local ListofCMDS = Instance.new("ScrollingFrame")
  576. local cmdTutorial = Instance.new("TextLabel")
  577. local cmdTutorial_2 = Instance.new("TextLabel")
  578. local cmdTutorial_3 = Instance.new("TextLabel")
  579. local CMDS_Shadow = Instance.new("Frame")
  580. local CMDS_Shadow2 = Instance.new("Frame")
  581. CMDS_GUI_V2.Name = "CMDS_GUI_V2"
  582. CMDS_GUI_V2.Parent = game.Players.LocalPlayer.PlayerGui
  583. CMDS_GUI_V2.ResetOnSpawn = false
  584. CMDSmain.Name = "CMDSmain"
  585. CMDSmain.Parent = CMDS_GUI_V2
  586. CMDSmain.BackgroundColor3 = Color3.new(1, 1, 1)
  587. CMDSmain.BackgroundTransparency = 1
  588. CMDSmain.Position = UDim2.new(0, 695, 0, 297)
  589. CMDSmain.Size = UDim2.new(0, 440, 0, 367)
  590. CMDSmain.AnchorPoint = Vector2.new(0.5, 0.5)
  591. CMDSmain.Visible = false
  592. CMDSmain.ClipsDescendants = true
  593. CMDSframemain.Name = "CMDSframemain"
  594. CMDSframemain.Parent = CMDSmain
  595. CMDSframemain.BackgroundColor3 = Color3.new(0.309804, 0.309804, 0.309804)
  596. CMDSframemain.BorderSizePixel = 0
  597. CMDSframemain.Size = UDim2.new(0, 440, 0, 367)
  598. cmdgui_topframe.Name = "cmdgui_topframe"
  599. cmdgui_topframe.Parent = CMDSframemain
  600. cmdgui_topframe.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  601. cmdgui_topframe.BorderSizePixel = 0
  602. cmdgui_topframe.Size = UDim2.new(0, 440, 0, 15)
  603. closecmdsgui.Name = "closecmdsgui"
  604. closecmdsgui.Parent = cmdgui_topframe
  605. closecmdsgui.BackgroundColor3 = Color3.new(1, 1, 1)
  606. closecmdsgui.BackgroundTransparency = 1
  607. closecmdsgui.Position = UDim2.new(0, 410, 0, 0)
  608. closecmdsgui.Size = UDim2.new(0, 30, 0, 15)
  609. closecmdsgui.Font = Enum.Font.SourceSansBold
  610. closecmdsgui.Text = "X"
  611. closecmdsgui.TextColor3 = Color3.new(0.968628, 0.968628, 0.968628)
  612. closecmdsgui.TextSize = 20
  613. cmdgui_midframe.Name = "cmdgui_midframe"
  614. cmdgui_midframe.Parent = CMDSframemain
  615. cmdgui_midframe.BackgroundColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  616. cmdgui_midframe.BorderSizePixel = 0
  617. cmdgui_midframe.Position = UDim2.new(0, 0, 0, 15)
  618. cmdgui_midframe.Size = UDim2.new(0, 440, 0, 45)
  619. cmdsgui_SearchFunction.Name = "cmdsgui_SearchFunction"
  620. cmdsgui_SearchFunction.Parent = cmdgui_midframe
  621. cmdsgui_SearchFunction.BackgroundColor3 = Color3.new(1, 1, 1)
  622. cmdsgui_SearchFunction.BackgroundTransparency = 1
  623. cmdsgui_SearchFunction.BorderSizePixel = 0
  624. cmdsgui_SearchFunction.Position = UDim2.new(0, 120, 0, 10)
  625. cmdsgui_SearchFunction.Size = UDim2.new(0, 200, 0, 25)
  626. cmdsgui_SearchFunction.Font = Enum.Font.SourceSans
  627. cmdsgui_SearchFunction.Text = ""
  628. cmdsgui_SearchFunction.TextColor3 = Color3.new(0.972549, 0.972549, 0.972549)
  629. cmdsgui_SearchFunction.TextScaled = true
  630. cmdsgui_SearchFunction.TextSize = 14
  631. cmdsgui_SearchFunction.TextWrapped = true
  632. cmdsgui_searchDETAILFRAME.Name = "cmdsgui_searchDETAILFRAME"
  633. cmdsgui_searchDETAILFRAME.Parent = cmdsgui_SearchFunction
  634. cmdsgui_searchDETAILFRAME.BackgroundColor3 = Color3.fromRGB(240, 240, 240)
  635. cmdsgui_searchDETAILFRAME.BorderSizePixel = 0
  636. cmdsgui_searchDETAILFRAME.Position = UDim2.new(0, 0, 0, 25)
  637. cmdsgui_searchDETAILFRAME.Size = UDim2.new(0, 200, 0, 2)
  638. cmdsgui_searchDETAILTEXT.Name = "cmdsgui_searchDETAILTEXT"
  639. cmdsgui_searchDETAILTEXT.Parent = cmdsgui_SearchFunction
  640. cmdsgui_searchDETAILTEXT.BackgroundColor3 = Color3.fromRGB(240, 240, 240)
  641. cmdsgui_searchDETAILTEXT.BackgroundTransparency = 1
  642. cmdsgui_searchDETAILTEXT.Size = UDim2.new(0, 200, 0, 25)
  643. cmdsgui_searchDETAILTEXT.Font = Enum.Font.SourceSansLight
  644. cmdsgui_searchDETAILTEXT.Text = "Search"
  645. cmdsgui_searchDETAILTEXT.TextColor3 = Color3.fromRGB(240, 240, 240)
  646. cmdsgui_searchDETAILTEXT.TextSize = 30
  647. ListofCMDS.Name = "ListofCMDS"
  648. ListofCMDS.Parent = CMDSframemain
  649. ListofCMDS.BackgroundColor3 = Color3.new(0.309804, 0.309804, 0.309804)
  650. ListofCMDS.BorderSizePixel = 0
  651. ListofCMDS.Position = UDim2.new(0, 0, 0, 60)
  652. ListofCMDS.Size = UDim2.new(0, 440, 0, 307)
  653. ListofCMDS.CanvasSize = UDim2.new(5, 0, 8, 0)
  654. ListofCMDS.ScrollingDirection = Enum.ScrollingDirection.XY
  655. cmdTutorial.Name = "cmdTutorial"
  656. cmdTutorial.Parent = ListofCMDS
  657. cmdTutorial.BackgroundColor3 = Color3.new(1, 1, 1)
  658. cmdTutorial.BackgroundTransparency = 1
  659. cmdTutorial.BorderSizePixel = 0
  660. cmdTutorial.Position = UDim2.new(0, 5, 0, 5)
  661. cmdTutorial.Size = UDim2.new(0, 420, 0, 20)
  662. cmdTutorial.Font = Enum.Font.SourceSansBold
  663. cmdTutorial.Text = "\"/\" means OPTIONAL argument after"
  664. cmdTutorial.TextColor3 = Color3.new(0.956863, 0.956863, 0.956863)
  665. cmdTutorial.TextScaled = true
  666. cmdTutorial.TextSize = 14
  667. cmdTutorial.TextWrapped = true
  668. cmdTutorial.TextXAlignment = Enum.TextXAlignment.Left
  669. cmdTutorial_2.Name = "cmdTutorial"
  670. cmdTutorial_2.Parent = ListofCMDS
  671. cmdTutorial_2.BackgroundColor3 = Color3.new(1, 1, 1)
  672. cmdTutorial_2.BackgroundTransparency = 1
  673. cmdTutorial_2.BorderSizePixel = 0
  674. cmdTutorial_2.Position = UDim2.new(0, 5, 0, 25)
  675. cmdTutorial_2.Size = UDim2.new(0, 420, 0, 20)
  676. cmdTutorial_2.Font = Enum.Font.SourceSansBold
  677. cmdTutorial_2.Text = "\"//\" means another way of running command"
  678. cmdTutorial_2.TextColor3 = Color3.new(0.956863, 0.956863, 0.956863)
  679. cmdTutorial_2.TextScaled = true
  680. cmdTutorial_2.TextSize = 14
  681. cmdTutorial_2.TextWrapped = true
  682. cmdTutorial_2.TextXAlignment = Enum.TextXAlignment.Left
  683. cmdTutorial_3.Name = "cmdTutorial"
  684. cmdTutorial_3.Parent = ListofCMDS
  685. cmdTutorial_3.BackgroundColor3 = Color3.new(1, 1, 1)
  686. cmdTutorial_3.BackgroundTransparency = 1
  687. cmdTutorial_3.BorderSizePixel = 0
  688. cmdTutorial_3.Position = UDim2.new(0, 5, 0, 45)
  689. cmdTutorial_3.Size = UDim2.new(0, 420, 0, 20)
  690. cmdTutorial_3.Font = Enum.Font.SourceSansBold
  691. cmdTutorial_3.Text = "Anything inside \"[ ]\" is an argument for the command"
  692. cmdTutorial_3.TextColor3 = Color3.new(0.956863, 0.956863, 0.956863)
  693. cmdTutorial_3.TextScaled = true
  694. cmdTutorial_3.TextSize = 14
  695. cmdTutorial_3.TextWrapped = true
  696. cmdTutorial_3.TextXAlignment = Enum.TextXAlignment.Left
  697. CMDS_Shadow.Name = "CMDS_Shadow"
  698. CMDS_Shadow.Parent = CMDSmain
  699. CMDS_Shadow.BackgroundColor3 = Color3.new(0, 0, 0)
  700. CMDS_Shadow.BackgroundTransparency = 0.60000002384186
  701. CMDS_Shadow.BorderSizePixel = 0
  702. CMDS_Shadow.Position = UDim2.new(0, 2, 0, 2)
  703. CMDS_Shadow.Size = UDim2.new(0, 440, 0, 367)
  704. CMDS_Shadow.ZIndex = -1
  705. CMDS_Shadow2.Name = "CMDS_Shadow2"
  706. CMDS_Shadow2.Parent = CMDSmain
  707. CMDS_Shadow2.BackgroundColor3 = Color3.new(0, 0, 0)
  708. CMDS_Shadow2.BackgroundTransparency = 0.80000001192093
  709. CMDS_Shadow2.BorderSizePixel = 0
  710. CMDS_Shadow2.Position = UDim2.new(0, 5, 0, 5)
  711. CMDS_Shadow2.Size = UDim2.new(0, 440, 0, 367)
  712. CMDS_Shadow2.ZIndex = -1
  713. closecmdsgui.MouseButton1Click:Connect(function()
  714. CMDSmain:TweenSize(UDim2.new(0, 0, 0, 0), "InOut", "Sine", 2)
  715. end)
  716. function CreateCMDlabel(position, text)
  717. local sizenow = 15
  718. local cmdHere = Instance.new("TextLabel")
  719. cmdHere.Name = "cmdHere"
  720. cmdHere.TextWrapped = true
  721. cmdHere.Parent = ListofCMDS
  722. cmdHere.BackgroundColor3 = Color3.new(1, 1, 1)
  723. cmdHere.BackgroundTransparency = 1
  724. cmdHere.BorderSizePixel = 0
  725. cmdHere.Position = position
  726. cmdHere.Size = UDim2.new(0, 1950, 0, sizenow)
  727. cmdHere.Font = Enum.Font.SourceSans
  728. cmdHere.Text = text
  729. cmdHere.TextWrapped = true
  730. cmdHere.TextColor3 = Color3.new(0.956863, 0.956863, 0.956863)
  731. cmdHere.TextScaled = false
  732. cmdHere.TextSize = 20
  733. cmdHere.TextXAlignment = Enum.TextXAlignment.Left
  734. end
  735. for i,_cmds in pairs(searchCmds) do
  736. CreateCMDlabel(UDim2.new(0, 5, 0, 50 + (i * 15)), _cmds)
  737. end
  738. local UserInputService = game:GetService("UserInputService")
  739. local dragging
  740. local dragInput
  741. local dragStart
  742. local startPos
  743. local function updateCMDS(input)
  744. local delta = input.Position - dragStart
  745. local dragTime = 0.055
  746. local SmoothDrag = {}
  747. SmoothDrag.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  748. local dragSmoothFunction = gsTween:Create(CMDSmain, TweenInfo.new(dragTime, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), SmoothDrag)
  749. dragSmoothFunction:Play()
  750. end
  751. cmdgui_topframe.InputBegan:Connect(function(input)
  752. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  753. dragging = true
  754. dragStart = input.Position
  755. startPos = CMDSmain.Position
  756. input.Changed:Connect(function()
  757. if input.UserInputState == Enum.UserInputState.End then
  758. dragging = false
  759. end
  760. end)
  761. end
  762. end)
  763. cmdgui_topframe.InputChanged:Connect(function(input)
  764. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  765. dragInput = input
  766. end
  767. end)
  768. cmdgui_midframe.InputBegan:Connect(function(input)
  769. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  770. dragging = true
  771. dragStart = input.Position
  772. startPos = CMDSmain.Position
  773. input.Changed:Connect(function()
  774. if input.UserInputState == Enum.UserInputState.End then
  775. dragging = false
  776. end
  777. end)
  778. end
  779. end)
  780. cmdgui_midframe.InputChanged:Connect(function(input)
  781. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  782. dragInput = input
  783. end
  784. end)
  785. UserInputService.InputChanged:Connect(function(input)
  786. if input == dragInput and dragging then
  787. updateCMDS(input)
  788. end
  789. end)
  790. cmdsgui_SearchFunction.Focused:Connect(function()
  791. cmdsgui_SearchFunction.TextTransparency = 0
  792. local searchTween = {}
  793. searchTween.TextColor3 = Color3.new(0.0980392, 0.462745, 0.823529)
  794. searchTween.TextSize = 18
  795. searchTween.Position = UDim2.new(0, -70, 0, -15)
  796. local frameTweenblue = {}
  797. frameTweenblue.BackgroundColor3 = Color3.new(0.0980392, 0.462745, 0.823529)
  798. local searchTween1 = gsTween:Create(cmdsgui_searchDETAILTEXT, TweenInfo.new(0.3, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), searchTween)
  799. searchTween1:Play()
  800. local frameTweenblue1 = gsTween:Create(cmdsgui_searchDETAILFRAME, TweenInfo.new(0.3, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), frameTweenblue)
  801. frameTweenblue1:Play()
  802. end)
  803. cmdsgui_SearchFunction.FocusLost:Connect(function(enterPressed)
  804. if not enterPressed then
  805. cmdsgui_SearchFunction.TextTransparency = 1
  806. else
  807. cmdsgui_SearchFunction.Text = " "
  808. end
  809. local searchTween = {}
  810. searchTween.TextColor3 = Color3.fromRGB(240, 240, 240)
  811. searchTween.TextSize = 30
  812. searchTween.Position = UDim2.new(0, 0, 0, 0)
  813. local frameTweenblue = {}
  814. frameTweenblue.BackgroundColor3 = Color3.fromRGB(240, 240, 240)
  815. local searchTween1 = gsTween:Create(cmdsgui_searchDETAILTEXT, TweenInfo.new(0.3, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), searchTween)
  816. searchTween1:Play()
  817. local frameTweenblue1 = gsTween:Create(cmdsgui_searchDETAILFRAME, TweenInfo.new(0.3, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), frameTweenblue)
  818. frameTweenblue1:Play()
  819. end)
  820. cmdsgui_SearchFunction.Changed:Connect(function()
  821. local index = 0
  822. if cmdsgui_SearchFunction.Text ~= "" then
  823. for i,v in pairs(ListofCMDS:GetChildren()) do
  824. if v.Name == "cmdHere" then
  825. if not string.find(v.Text, cmdsgui_SearchFunction.Text) then
  826. v.Visible = false
  827. else
  828. v.Visible = true
  829. index = index + 1
  830. v.Position = UDim2.new(0, 5, 0, 50 + (index * 15))
  831. end
  832. end
  833. end
  834. end
  835. end)
  836.  
  837. -- Command Execution
  838. LP.Chatted:Connect(function(chat)
  839. run(chat)
  840. end)
  841.  
  842. function run(msg)
  843. if string.lower(string.sub(msg, 2, 5)) == "chat" then
  844. msg = msg
  845. elseif string.match(msg, "hotkey") and string.match(msg, "chat") then
  846. msg = msg
  847. else
  848. msg = string.lower(msg)
  849. end
  850. local cmdPrefix = string.sub(msg, 1, 1)
  851. if cmdPrefix == commandPrefix then
  852. msg = string.sub(msg, 2)
  853. local args = {}
  854. for arg in string.gmatch(msg,"[^%s]+") do
  855. table.insert(args,arg)
  856. end
  857. local cmdName = args[1]
  858. table.remove(args,1)
  859. local doCmd = Commands[cmdName]
  860.  
  861. if doCmd ~= nil then
  862. doCmd(args)
  863. end
  864. end
  865. end
  866.  
  867. -- Command bar
  868. local CommandBar = Instance.new("ScreenGui")
  869. local CMDBAR = Instance.new("Frame")
  870. local CMDBARText = Instance.new("TextBox")
  871. CommandBar.Name = "CommandBar"
  872. CommandBar.Parent = game.Players.LocalPlayer.PlayerGui
  873. CommandBar.ResetOnSpawn = false
  874. CMDBAR.Name = "CMDBAR"
  875. CMDBAR.Parent = CommandBar
  876. CMDBAR.BackgroundColor3 = Color3.new(0.164706, 0.152941, 0.172549)
  877. CMDBAR.BorderSizePixel = 0
  878. CMDBAR.Position = UDim2.new(0.025, 0, 1, 0)
  879. CMDBAR.Size = UDim2.new(0, 270, 0, 35)
  880. CMDBARText.Name = "CMDBARText"
  881. CMDBARText.Parent = CMDBAR
  882. CMDBARText.BackgroundColor3 = Color3.new(0.188235, 0.188235, 0.188235)
  883. CMDBARText.BorderSizePixel = 0
  884. CMDBARText.Position = UDim2.new(0, 5, 0, 5)
  885. CMDBARText.Size = UDim2.new(0, 260, 0, 25)
  886. CMDBARText.Font = Enum.Font.SourceSansLight
  887. CMDBARText.Text = ""
  888. CMDBARText.TextColor3 = Color3.new(0.933333, 0.933333, 0.933333)
  889. CMDBARText.TextScaled = true
  890. CMDBARText.TextSize = 14
  891. CMDBARText.TextWrapped = true
  892. Mouse.KeyDown:connect(function(Key)
  893. if Key == string.lower(commandPrefix) then
  894. CMDBARText:CaptureFocus()
  895. CMDBAR:TweenPosition(UDim2.new(0.015, 0, 0.95, 0), "Out", "Elastic", 0.5, true)
  896. end
  897. end)
  898. CMDBARText.FocusLost:connect(function(enterPressed)
  899. CMDBAR:TweenPosition(UDim2.new(0.015, 0, 1, 0), "Out", "Quad", 0.5, true)
  900. if enterPressed then
  901. local cmdmsg = CMDBARText.Text
  902. CMDBARText.Text = ""
  903. run(commandPrefix..cmdmsg)
  904. end
  905. end)
  906. local Match = Instance.new("Frame")
  907. Match.Name = "Match"
  908. Match.Parent = CMDBAR
  909. Match.BackgroundColor3 = Color3.new(0.164706, 0.152941, 0.172549)
  910. Match.BorderSizePixel = 0
  911. Match.Position = UDim2.new(0, 0, -4, 0)
  912. Match.Size = UDim2.new(1, 0, 4, 0)
  913. Match.Visible = false
  914. function CreateOption(Text)
  915. local Option1 = Instance.new("TextLabel")
  916. Option1.Name = "Option"
  917. Option1.Parent = Match
  918. Option1.BackgroundColor3 = Color3.new(1, 1, 1)
  919. Option1.BackgroundTransparency = 1
  920. Option1.Position = UDim2.new(-10, 0, 0, 0)
  921. Option1.Size = UDim2.new(1, 0, 0, 20)
  922. Option1.Font = Enum.Font.SourceSans
  923. Option1.Text = Text
  924. Option1.TextColor3 = Color3.new(0.952941, 0.952941, 0.952941)
  925. Option1.TextScaled = true
  926. Option1.TextWrapped = true
  927. end
  928. for i,cmdtext2 in pairs(CMDS) do
  929. CreateOption(cmdtext2)
  930. end
  931. CMDBARText.Changed:Connect(function()
  932. if CMDBARText.Text ~= "" and CMDBARText.Text ~= commandPrefix then
  933. Match.Visible = true
  934. local PositionMatch = 0
  935. for i,cmdtext in pairs(Match:GetChildren()) do
  936. if cmdtext.Name == "Option" then
  937. if string.find(cmdtext.Text, CMDBARText.Text) then
  938. cmdtext.Position = UDim2.new(0, 0, 0, 2 + (PositionMatch * 20))
  939. PositionMatch = PositionMatch + 1
  940. if cmdtext.Position == UDim2.new(0, 0, 0, 142) then
  941. cmdtext.Position = UDim2.new(-10, 0, 0, 0)
  942. PositionMatch = PositionMatch - 1
  943. end
  944. else
  945. cmdtext.Position = UDim2.new(-10, 0, 0, 0)
  946. end
  947. end
  948. end
  949. else
  950. Match.Visible = false
  951. end
  952. end)
  953.  
  954. -- Chat
  955. local ChatLogsv2 = Instance.new("ScreenGui")
  956. local MainChatFrame = Instance.new("Frame")
  957. local Framess = Instance.new("Frame")
  958. local CloseChatGUI = Instance.new("TextButton")
  959. local Frame_222 = Instance.new("Frame")
  960. local PrintChat = Instance.new("TextButton")
  961. local Shadow1 = Instance.new("Frame")
  962. local Shadow2 = Instance.new("Frame")
  963. local ScrollingFrame = Instance.new("ScrollingFrame")
  964. ChatLogsv2.Name = "ChatLogsv2"
  965. ChatLogsv2.Parent = game.Players.LocalPlayer.PlayerGui
  966. ChatLogsv2.ResetOnSpawn = false
  967. MainChatFrame.Name = "MainChatFrame"
  968. MainChatFrame.Parent = ChatLogsv2
  969. MainChatFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  970. MainChatFrame.BackgroundTransparency = 1
  971. MainChatFrame.Position = UDim2.new(0, 760, 0, 261)
  972. MainChatFrame.Size = UDim2.new(0, 525, 0, 337)
  973. MainChatFrame.Visible = false
  974. Framess.Parent = MainChatFrame
  975. Framess.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  976. Framess.BorderSizePixel = 0
  977. Framess.Size = UDim2.new(0, 525, 0, 15)
  978. CloseChatGUI.Name = "CloseChatGUI"
  979. CloseChatGUI.Parent = Framess
  980. CloseChatGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  981. CloseChatGUI.BackgroundTransparency = 1
  982. CloseChatGUI.BorderSizePixel = 0
  983. CloseChatGUI.Position = UDim2.new(0, 495, 0, 0)
  984. CloseChatGUI.Size = UDim2.new(0, 30, 0, 15)
  985. CloseChatGUI.Font = Enum.Font.SourceSansBold
  986. CloseChatGUI.Text = "X"
  987. CloseChatGUI.TextColor3 = Color3.new(0.945098, 0.945098, 0.945098)
  988. CloseChatGUI.TextSize = 20
  989. Frame_222.Parent = MainChatFrame
  990. Frame_222.BackgroundColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  991. Frame_222.BorderSizePixel = 0
  992. Frame_222.Position = UDim2.new(0, 0, 0, 15)
  993. Frame_222.Size = UDim2.new(0, 525, 0, 50)
  994. PrintChat.Name = "PrintChat"
  995. PrintChat.Parent = Frame_222
  996. PrintChat.BackgroundColor3 = Color3.new(0.870588, 0.25098, 0.25098)
  997. PrintChat.BorderSizePixel = 0
  998. PrintChat.Position = UDim2.new(0, 15, 0, 0)
  999. PrintChat.Size = UDim2.new(0, 170, 0, 30)
  1000. PrintChat.Font = Enum.Font.SourceSansLight
  1001. PrintChat.Text = "Print Chat"
  1002. PrintChat.TextColor3 = Color3.new(0.960784, 0.960784, 0.960784)
  1003. PrintChat.TextSize = 30
  1004. PrintChat.TextWrapped = true
  1005. Shadow1.Name = "Shadow1"
  1006. Shadow1.Parent = MainChatFrame
  1007. Shadow1.BackgroundColor3 = Color3.new(0, 0, 0)
  1008. Shadow1.BackgroundTransparency = 0.5
  1009. Shadow1.Position = UDim2.new(0, 2, 0, 2)
  1010. Shadow1.Size = UDim2.new(0, 525, 0, 337)
  1011. Shadow1.ZIndex = -1
  1012. Shadow2.Name = "Shadow2"
  1013. Shadow2.Parent = MainChatFrame
  1014. Shadow2.BackgroundColor3 = Color3.new(0, 0, 0)
  1015. Shadow2.BackgroundTransparency = 0.80000001192093
  1016. Shadow2.Position = UDim2.new(0, 5, 0, 5)
  1017. Shadow2.Size = UDim2.new(0, 525, 0, 337)
  1018. Shadow2.ZIndex = -1
  1019. ScrollingFrame.Parent = MainChatFrame
  1020. ScrollingFrame.BackgroundColor3 = Color3.new(0.266667, 0.266667, 0.266667)
  1021. ScrollingFrame.BorderSizePixel = 0
  1022. ScrollingFrame.Position = UDim2.new(0, 0, 0, 65)
  1023. ScrollingFrame.Size = UDim2.new(0, 525, 0, 271)
  1024. ScrollingFrame.CanvasPosition = Vector2.new(0, 403)
  1025. ScrollingFrame.ScrollBarThickness = 8
  1026. function CreateChatText(plr, chat)
  1027. for i,v in pairs(ScrollingFrame:GetDescendants()) do
  1028. v.Position = v.Position - UDim2.new(0, 0, 0, 20)
  1029. if v.Position == UDim2.new(0, 5, 0, 10) then
  1030. v:Destroy()
  1031. end
  1032. end
  1033. local Example = Instance.new("TextLabel")
  1034. Example.Name = "Example"
  1035. Example.Parent = ScrollingFrame
  1036. Example.BackgroundColor3 = Color3.new(1, 1, 1)
  1037. Example.BackgroundTransparency = 1
  1038. Example.Position = UDim2.new(0, 5, 0, 650)
  1039. Example.Size = UDim2.new(0, 500, 0, 20)
  1040. Example.Font = Enum.Font.SourceSans
  1041. Example.Text = "["..plr.Name.."]: "..chat
  1042. Example.TextColor3 = Color3.new(0.960784, 0.960784, 0.960784)
  1043. Example.TextScaled = true
  1044. Example.TextSize = 20
  1045. Example.TextWrapped = true
  1046. Example.TextXAlignment = Enum.TextXAlignment.Left
  1047. end
  1048. CloseChatGUI.MouseButton1Click:Connect(function()
  1049. MainChatFrame:TweenPosition(UDim2.new(0, 550, 0, -550), "InOut", "Sine", 2)
  1050. wait(2.01)
  1051. MainChatFrame.Visible = false
  1052. end)
  1053. printingChat = false
  1054. PrintChat.MouseButton1Click:Connect(function()
  1055. if printingChat == false then
  1056. printingChat = true
  1057. PrintChat.BackgroundColor3 = Color3.fromRGB(60, 200, 60)
  1058. elseif printingChat == true then
  1059. printingChat = false
  1060. PrintChat.BackgroundColor3 = Color3.new(0.870588, 0.25098, 0.25098)
  1061. end
  1062. end)
  1063. local UserInputService = game:GetService("UserInputService")
  1064. local dragging
  1065. local dragInput
  1066. local dragStart
  1067. local startPos
  1068. local function updateChat(input)
  1069. local delta = input.Position - dragStart
  1070. local dragTime = 0.055
  1071. local SmoothDrag = {}
  1072. SmoothDrag.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  1073. local dragSmoothFunction = gsTween:Create(MainChatFrame, TweenInfo.new(dragTime, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), SmoothDrag)
  1074. dragSmoothFunction:Play()
  1075. end
  1076. Frame_222.InputBegan:Connect(function(input)
  1077. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  1078. dragging = true
  1079. dragStart = input.Position
  1080. startPos = MainChatFrame.Position
  1081. input.Changed:Connect(function()
  1082. if input.UserInputState == Enum.UserInputState.End then
  1083. dragging = false
  1084. end
  1085. end)
  1086. end
  1087. end)
  1088. Frame_222.InputChanged:Connect(function(input)
  1089. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  1090. dragInput = input
  1091. end
  1092. end)
  1093. UserInputService.InputChanged:Connect(function(input)
  1094. if input == dragInput and dragging then
  1095. updateChat(input)
  1096. end
  1097. end)
  1098.  
  1099. function printChat(player, chat)
  1100. print("["..player.Name.."]: "..chat)
  1101. end
  1102. complimentReady = true
  1103. for i,currentPlayersChatting in pairs(game:GetService("Players"):GetPlayers()) do
  1104. currentPlayersChatting.Chatted:connect(function(chat)
  1105. CreateChatText(currentPlayersChatting, chat)
  1106. if printingChat then
  1107. printChat(currentPlayersChatting, chat)
  1108. end
  1109. if copychatACTIVE then
  1110. if currentPlayersChatting == copychatplayer then
  1111. gsReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(chat, "All")
  1112. end
  1113. end
  1114. if modeFling == true then
  1115. if string.lower(string.sub(chat, 1, 7)) == "!fling " then
  1116. if gsWorkspace:PGSIsEnabled() == false then
  1117. FEGodmode()
  1118. end
  1119. if string.lower(string.sub(chat, 8)) == "me" then
  1120. run(commandPrefix.."unfling")
  1121. LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
  1122. run(commandPrefix.."fling "..currentPlayersChatting.Name.." 2000000")
  1123. else
  1124. for i,notAll in pairs(findSinglePlayer(string.lower(string.sub(chat, 8)))) do
  1125. if notAll ~= LP then
  1126. run(commandPrefix.."unfling")
  1127. LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
  1128. run(commandPrefix.."fling "..notAll.Name.." 2000000")
  1129. end
  1130. end
  1131. end
  1132. end
  1133. end
  1134. if modeCompliment == true then
  1135. if string.lower(string.sub(chat, 1, 3)) == "!c " then
  1136. if complimentReady then
  1137. complimentReady = false
  1138. if string.lower(string.sub(chat, 4)) == "me" then
  1139. complimentplr(currentPlayersChatting)
  1140. else
  1141. for i,Others in pairs(findSinglePlayer(string.lower(string.sub(chat, 4)))) do
  1142. if Others == LP then
  1143. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Don't be silly, I can't compliment myself!", "All")
  1144. else
  1145. complimentplr(Others)
  1146. end
  1147. end
  1148. end
  1149. wait(1)
  1150. complimentReady = true
  1151. end
  1152. end
  1153. end
  1154. if modeMove == true then
  1155. if string.lower(string.sub(chat, 1, 9)) == "!bringbot" then
  1156. run(commandPrefix.."unfollow")
  1157. run(commandPrefix.."unwalk")
  1158. run(commandPrefix.."goto "..currentPlayersChatting.Name)
  1159. elseif string.lower(string.sub(chat, 1, 6)) == "!walk " then
  1160. for i,getWalkPlayer in pairs(findSinglePlayer(string.lower(string.sub(chat, 7)))) do
  1161. if getWalkPlayer == LP then
  1162. run(commandPrefix.."unfollow")
  1163. run(commandPrefix.."walk "..currentPlayersChatting.Name)
  1164. else
  1165. run(commandPrefix.."unfollow")
  1166. run(commandPrefix.."walk "..getWalkPlayer.Name)
  1167. end
  1168. end
  1169. elseif string.lower(string.sub(chat, 1, 8)) == "!follow " then
  1170. for i,getFollowPlayer in pairs(findSinglePlayer(string.lower(string.sub(chat, 9)))) do
  1171. if getFollowPlayer == LP then
  1172. run(commandPrefix.."unwalk")
  1173. run(commandPrefix.."follow "..currentPlayersChatting.Name)
  1174. else
  1175. run(commandPrefix.."unwalk")
  1176. run(commandPrefix.."follow "..getFollowPlayer.Name)
  1177. end
  1178. end
  1179. end
  1180. end
  1181. if modeInfo == true then
  1182. if infoReady then
  1183. infoReady = false
  1184. if string.lower(string.sub(chat, 1, 5)) == "!age " then
  1185. for i,v in pairs(findSinglePlayer(string.lower(string.sub(chat, 6)))) do
  1186. if v == LP then
  1187. run(commandPrefix.."age "..currentPlayersChatting.Name)
  1188. else
  1189. run(commandPrefix.."age "..v.Name)
  1190. end
  1191. end
  1192. end
  1193. if string.lower(string.sub(chat, 1, 4)) == "!id " then
  1194. for i,a in pairs(findSinglePlayer(string.lower(string.sub(chat, 5)))) do
  1195. if a == LP then
  1196. run(commandPrefix.."id "..currentPlayersChatting.Name)
  1197. else
  1198. run(commandPrefix.."id "..a.Name)
  1199. end
  1200. end
  1201. end
  1202. wait(1)
  1203. infoReady = true
  1204. end
  1205. end
  1206. end)
  1207. end
  1208. game:GetService("Players").PlayerAdded:connect(function(plr)
  1209. plr.Chatted:connect(function(chat)
  1210. CreateChatText(plr, chat)
  1211. if printingChat then
  1212. printChat(plr, chat)
  1213. end
  1214. if modeFling == true then
  1215. if string.lower(string.sub(chat, 1, 7)) == "!fling " then
  1216. if gsWorkspace:PGSIsEnabled() == false then
  1217. FEGodmode()
  1218. end
  1219. if string.lower(string.sub(chat, 8)) == "me" then
  1220. run(commandPrefix.."unfling")
  1221. LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
  1222. run(commandPrefix.."fling "..plr.Name.." 2000000")
  1223. else
  1224. for i,notAll in pairs(findSinglePlayer(string.lower(string.sub(chat, 8)))) do
  1225. if notAll ~= LP then
  1226. run(commandPrefix.."unfling")
  1227. LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
  1228. run(commandPrefix.."fling "..notAll.Name.." 2000000")
  1229. end
  1230. end
  1231. end
  1232. end
  1233. end
  1234. if modeCompliment == true then
  1235. if string.lower(string.sub(chat, 1, 3)) == "!c " then
  1236. if complimentReady == true then
  1237. complimentReady = false
  1238. if string.lower(string.sub(chat, 4)) == "me" then
  1239. complimentplr(plr)
  1240. else
  1241. for i,Others in pairs(findSinglePlayer(string.lower(string.sub(chat, 4)))) do
  1242. if Others == LP then
  1243. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Don't be silly, I can't compliment myself!", "All")
  1244. else
  1245. complimentplr(Others)
  1246. end
  1247. end
  1248. end
  1249. wait(1)
  1250. complimentReady = true
  1251. end
  1252. end
  1253. end
  1254. if modeMove == true then
  1255. if string.lower(string.sub(chat, 1, 9)) == "!bringbot" then
  1256. run(commandPrefix.."unfollow")
  1257. run(commandPrefix.."unwalk")
  1258. run(commandPrefix.."goto "..plr.Name)
  1259. elseif string.lower(string.sub(chat, 1, 6)) == "!walk " then
  1260. for i,getWalkPlayer in pairs(findSinglePlayer(string.lower(string.sub(chat, 7)))) do
  1261. if getWalkPlayer == LP then
  1262. run(commandPrefix.."unfollow")
  1263. run(commandPrefix.."walk "..plr.Name)
  1264. else
  1265. run(commandPrefix.."unfollow")
  1266. run(commandPrefix.."walk "..getWalkPlayer.Name)
  1267. end
  1268. end
  1269. elseif string.lower(string.sub(chat, 1, 8)) == "!follow " then
  1270. for i,getFollowPlayer in pairs(findSinglePlayer(string.lower(string.sub(chat, 9)))) do
  1271. if getFollowPlayer == LP then
  1272. run(commandPrefix.."unwalk")
  1273. run(commandPrefix.."follow "..plr.Name)
  1274. else
  1275. run(commandPrefix.."unwalk")
  1276. run(commandPrefix.."follow "..getFollowPlayer.Name)
  1277. end
  1278. end
  1279. end
  1280. end
  1281. if modeInfo == true then
  1282. if infoReady then
  1283. infoReady = false
  1284. if string.lower(string.sub(chat, 1, 5)) == "!age " then
  1285. for i,v in pairs(findSinglePlayer(string.lower(string.sub(chat, 6)))) do
  1286. if v == LP then
  1287. run(commandPrefix.."age "..plr.Name)
  1288. else
  1289. run(commandPrefix.."age "..v.Name)
  1290. end
  1291. end
  1292. end
  1293. if string.lower(string.sub(chat, 1, 4)) == "!id " then
  1294. for i,a in pairs(findSinglePlayer(string.lower(string.sub(chat, 5)))) do
  1295. if a == LP then
  1296. run(commandPrefix.."id "..plr.Name)
  1297. else
  1298. run(commandPrefix.."id "..a.Name)
  1299. end
  1300. end
  1301. end
  1302. wait(1)
  1303. infoReady = true
  1304. end
  1305. end
  1306. end)
  1307. end)
  1308.  
  1309. -- Loops
  1310. noclip = false
  1311. following = false
  1312. trailing = false
  1313. annoying = false
  1314. flingnoclip = false
  1315. staring = false
  1316. stopsitting = false
  1317. stareplr = ""
  1318. CBRINGamount = 3
  1319. spawnWS = CurrentWalkspeed
  1320. spawnJP = CurrentJumppower
  1321. spawnHH = CurrentHipheight
  1322. spawningfegod = false
  1323. looptpbypassfly = false
  1324. if game.GameId == 245662005 or game.GameId == 601130232 then
  1325. bypassMODE = true
  1326. else
  1327. bypassMODE = false
  1328. end
  1329. viewplr = ""
  1330. loopview = false
  1331. cmdForward = false
  1332. forwardSpeed = 1
  1333. loopviewfc = false
  1334. spinTOhead = false
  1335. spinObj = ""
  1336. rideACTIVE = false
  1337. ridePLAYER = ""
  1338.  
  1339. LPcurrenthumanoid = LP.Character.Humanoid
  1340. game:GetService('RunService').Stepped:connect(function()
  1341. if LP.Character.Humanoid ~= nil then
  1342. LPcurrenthumanoid = LP.Character.Humanoid
  1343. end
  1344. if noclip then
  1345. if LP.Character then
  1346. if LP.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  1347. LP.Character.Head.CanCollide = false
  1348. LP.Character.Torso.CanCollide = false
  1349. LP.Character["Left Leg"].CanCollide = false
  1350. LP.Character["Right Leg"].CanCollide = false
  1351. LP.Character["Left Arm"].CanCollide = false
  1352. LP.Character["Right Arm"].CanCollide = false
  1353. elseif LP.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  1354. LP.Character.Head.CanCollide = false
  1355. LP.Character.UpperTorso.CanCollide = false
  1356. LP.Character.LowerTorso.CanCollide = false
  1357. LP.Character.HumanoidRootPart.CanCollide = false
  1358. end
  1359. end
  1360. end
  1361. if following then
  1362. LP.Character.HumanoidRootPart.CFrame = gsPlayers[flwplr.Name].Character.HumanoidRootPart.CFrame + gsPlayers[flwplr.Name].Character.HumanoidRootPart.CFrame.lookVector * flwnum
  1363. end
  1364. if trailing then
  1365. LP.Character.HumanoidRootPart.CFrame = gsPlayers[trlplr.Name].Character.HumanoidRootPart.CFrame + gsPlayers[trlplr.Name].Character.HumanoidRootPart.CFrame.lookVector * trlnum
  1366. end
  1367. if annoying then
  1368. LP.Character.HumanoidRootPart.CFrame = gsPlayers[annplr.Name].Character.HumanoidRootPart.CFrame
  1369. end
  1370. if walkto then
  1371. LP.Character.Humanoid:MoveTo(walkplr.Character.HumanoidRootPart.Position)
  1372. end
  1373. if cbringing then
  1374. CBRINGplr.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * CBRINGamount
  1375. end
  1376. if cbringingall then
  1377. for i,getbringplrs in pairs(gsPlayers:GetPlayers()) do
  1378. if getbringplrs ~= LP then
  1379. getbringplrs.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * CBRINGamount
  1380. end
  1381. end
  1382. end
  1383. if staring then
  1384. LP.Character.HumanoidRootPart.CFrame = CFrame.new(LP.Character.Torso.Position, gsPlayers[stareplr.Name].Character.Torso.Position)
  1385. end
  1386. if stopsitting then
  1387. LP.Character.Humanoid.Sit = false
  1388. end
  1389. if looptpbypassfly then
  1390. pcall(function()
  1391. LP.Character.Head.Anchored = false
  1392. LP.Character.HumanoidRootPart.CFrame = gsWorkspace.rGETpartNUMBER2.CFrame
  1393. LP.Character.Head.Anchored = true
  1394. end)
  1395. end
  1396. if loopview then
  1397. view(viewplr)
  1398. end
  1399. if cmdForward then
  1400. LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * forwardSpeed
  1401. end
  1402. if loopviewfc then
  1403. pcall(function()
  1404. gsWorkspace.CurrentCamera.CameraSubject = gsWorkspace.rGETpartNUMBER2
  1405. end)
  1406. end
  1407. if spinTOhead then
  1408. pcall(function()
  1409. spinObj.Position = LP.Character.Head.Position
  1410. end)
  1411. end
  1412. if rideACTIVE == true then
  1413. LP.character.HumanoidRootPart.CFrame = ridePLAYER.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
  1414. end
  1415. end)
  1416. spawningatreset = false
  1417. spawnresetpoint = LP.Character.Head.CFrame
  1418.  
  1419. LPcurrenthumanoid.Died:Connect(function()
  1420. flying = false
  1421. doFREECAM = false
  1422. if savingtoolsloop then
  1423. run(commandPrefix.."savealltool")
  1424. end
  1425. if spawningatreset == true then
  1426. spawnresetpoint = LP.Character.Head.CFrame + Vector3.new(0, 5, 0)
  1427. end
  1428. end)
  1429.  
  1430. LP.CharacterAdded:Connect(function()
  1431. wait(0.2)
  1432. LP.Character.Humanoid.WalkSpeed = spawnWS
  1433. LP.Character.Humanoid.JumpPower = spawnJP
  1434. LP.Character.Humanoid.HipHeight = spawnHH
  1435. if spawningfegod then
  1436. FEGodmode()
  1437. end
  1438. if spawningpos and spawnpos ~= nil then
  1439. LP.Character.HumanoidRootPart.CFrame = spawnpos
  1440. end
  1441. if spawningatreset == true then
  1442. LP.Character.HumanoidRootPart.CFrame = spawnresetpoint
  1443. end
  1444. end)
  1445.  
  1446. -- Commands
  1447. Commands = {}
  1448.  
  1449. Commands.print = function(args)
  1450. local msg = table.concat(args," ")
  1451. print(msg)
  1452. end
  1453.  
  1454. Commands.warn = function(args)
  1455. local msg = table.concat(args," ")
  1456. warn(msg)
  1457. end
  1458.  
  1459. Commands.sit = function(args)
  1460. LP.Character.Humanoid.Sit = true
  1461. end
  1462.  
  1463. Commands.god = function(args)
  1464. FEGodmode()
  1465. Notification("warning", "You have enabled FE Godmode, tools will not work. Use "..commandPrefix.."grespawn to remove.", 7)
  1466. end
  1467.  
  1468. Commands.view = function(args)
  1469. if args[1] then
  1470. for i,v in pairs(findSinglePlayer(args[1])) do
  1471. if bypassMODE == false then
  1472. view(v)
  1473. Notification("info", "Now viewing "..v.Name..". Use "..commandPrefix.."unview to stop viewing.", 3)
  1474. elseif bypassMODE == true then
  1475. viewplr = v
  1476. loopview = true
  1477. end
  1478. end
  1479. end
  1480. end
  1481.  
  1482. Commands.unview = function(args)
  1483. view(LP)
  1484. loopview = false
  1485. end
  1486.  
  1487. Commands.gravity = function(args)
  1488. if args[1] then
  1489. gsWorkspace.Gravity = args[1]
  1490. end
  1491. end
  1492.  
  1493. Commands.ungravity = function(args)
  1494. gsWorkspace.Gravity = CurrentGravity
  1495. end
  1496.  
  1497. Commands.goto = function(args)
  1498. if args[1] then
  1499. if bypassMODE == false then
  1500. for i,v in pairs(findPlayer(args[1])) do
  1501. LP.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  1502. end
  1503. elseif bypassMODE == true then
  1504. for i,v in pairs(findPlayer(args[1])) do
  1505. local TPbypass = {}
  1506. TPbypass.CFrame = v.Character.HumanoidRootPart.CFrame + Vector3.new(0, 5, 0)
  1507. local TPFunction = gsTween:Create(LP.Character.HumanoidRootPart, TweenInfo.new(1.5, Enum.EasingStyle.Sine, Enum.EasingDirection.In), TPbypass)
  1508. TPFunction:Play()
  1509. end
  1510. end
  1511. end
  1512. end
  1513.  
  1514. Commands.fecheck = function(args)
  1515. if gsWorkspace.FilteringEnabled == true then
  1516. Notification("warning", "FE is enabled!", 7)
  1517. else
  1518. Notification("warning", "FE is disabled. Consider using a different script.", 7)
  1519. end
  1520. end
  1521.  
  1522. Commands.lockws = function(args)
  1523. lockWS()
  1524. Notification("info", "Workspace locked.", 4)
  1525. end
  1526.  
  1527. Commands.unlockws = function(args)
  1528. unlockWS()
  1529. Notification("info", "Workspace unlocked.", 4)
  1530. end
  1531.  
  1532. Commands.noclip = function(args)
  1533. noclip = true
  1534. Notification("info", "Noclip enabled.", 4)
  1535. end
  1536.  
  1537. Commands.clip = function(args)
  1538. noclip = false
  1539. Notification("info", "Noclip disabled.", 4)
  1540. end
  1541.  
  1542. Commands.follow = function(args)
  1543. if args[1] then
  1544. for i,v in pairs(findPlayer(args[1])) do
  1545. flwplr = v
  1546. end
  1547. if args[2] then
  1548. flwnum = args[2]
  1549. else
  1550. flwnum = -5
  1551. end
  1552. following = true
  1553. else
  1554. Notification("warning", "No player selected to follow! Use: "..commandPrefix.."follow player", 4)
  1555. end
  1556. end
  1557.  
  1558. Commands.unfollow = function(args)
  1559. following = false
  1560. end
  1561.  
  1562. Commands.fling = function(args)
  1563. if args[1] then
  1564. for i,v in pairs(findSinglePlayer(args[1])) do
  1565. if v ~= LP then
  1566. view(v)
  1567. pcall(function()
  1568. LP.Character.HumanoidRootPart.Fling:Destroy()
  1569. end)
  1570. if not args[2] then
  1571. RocketPropulsion(800000,1000,400000,v,"Fling")
  1572. else
  1573. RocketPropulsion(args[2],1500,400000,v,"Fling")
  1574. end
  1575. if noclip ~= true then
  1576. flingnoclip = true
  1577. noclip = true
  1578. end
  1579. end
  1580. end
  1581. else
  1582. Notification("warning", "No player selected to fling! Use: "..commandPrefix.."fling player", 4)
  1583. end
  1584. end
  1585.  
  1586. Commands.unfling = function(args)
  1587. view(LP)
  1588. pcall(function()
  1589. if LP.Character.HumanoidRootPart.Fling then
  1590. for i,v in pairs(LP.Character:GetDescendants()) do
  1591. if v.Name == "Fling" and v:IsA("RocketPropulsion") then
  1592. v:Destroy()
  1593. end
  1594. end
  1595. end
  1596. end)
  1597. if flingnoclip == true then
  1598. noclip = false
  1599. flingnoclip = false
  1600. end
  1601. end
  1602.  
  1603. Commands.trail = function(args)
  1604. if args[1] then
  1605. for i,v in pairs(findPlayer(args[1])) do
  1606. trlplr = v
  1607. end
  1608. if args[2] then
  1609. trlnum = args[2]
  1610. else
  1611. trlnum = 5
  1612. end
  1613. trailing = true
  1614. else
  1615. Notification("warning", "No player selected to trail! Use: "..commandPrefix.."trail player", 4)
  1616. end
  1617. end
  1618.  
  1619. Commands.untrail = function(args)
  1620. trailing = false
  1621. end
  1622.  
  1623. Commands.annoy = function(args)
  1624. if args[1] then
  1625. for i,v in pairs(findPlayer(args[1])) do
  1626. annplr = v
  1627. end
  1628. annoying = true
  1629. else
  1630. Notification("warning", "No player selected to annoy! Use: "..commandPrefix.."annoy player", 4)
  1631. end
  1632. end
  1633.  
  1634. Commands.unannoy = function(args)
  1635. annoying = false
  1636. end
  1637.  
  1638. Commands.reset = function(args)
  1639. LP.Character:BreakJoints()
  1640. end
  1641.  
  1642. Commands.grespawn = function(args)
  1643. LP.Character.Humanoid.Health = 0
  1644. wait(1)
  1645. LP.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
  1646. LP.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
  1647. end
  1648.  
  1649. Commands.respawn = function(args)
  1650. local mod = Instance.new('Model', workspace) mod.Name = 'new '..LP.Name
  1651. local hum = Instance.new('Humanoid', mod)
  1652. local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
  1653. LP.Character = mod
  1654. end
  1655.  
  1656. Commands.speed = function(args)
  1657. if args[1] then
  1658. run(commandPrefix.."ws "..args[1])
  1659. end
  1660. end
  1661.  
  1662. bypassingwalkspeed = false
  1663. Commands.ws = function(args)
  1664. if args[1] then
  1665. if bypassMODE == false then
  1666. LP.Character.Humanoid.WalkSpeed = args[1]
  1667. elseif bypassMODE == true then
  1668. if game.GameId == 245662005 then
  1669. bypassingwalkspeed = true
  1670. bypassWalkspeed = args[1]
  1671. end
  1672. end
  1673. end
  1674. end
  1675.  
  1676. game:GetService("RunService").Heartbeat:Connect(function()
  1677. if bypassingwalkspeed then
  1678. LP.Character.Humanoid.WalkSpeed = bypassWalkspeed
  1679. end
  1680. end)
  1681.  
  1682. Commands.jumppower = function(args)
  1683. if args[1] then
  1684. LP.Character.Humanoid.JumpPower = args[1]
  1685. end
  1686. end
  1687.  
  1688. Commands.jp = function(args)
  1689. if args[1] then
  1690. LP.Character.Humanoid.JumpPower = args[1]
  1691. end
  1692. end
  1693.  
  1694. Commands.hipheight = function(args)
  1695. if args[1] then
  1696. LP.Character.Humanoid.HipHeight = args[1]
  1697. end
  1698. end
  1699.  
  1700. Commands.hh = function(args)
  1701. if args[1] then
  1702. LP.Character.Humanoid.HipHeight = args[1]
  1703. end
  1704. end
  1705.  
  1706. Commands.default = function(args)
  1707. LP.Character.Humanoid.WalkSpeed = CurrentWalkspeed
  1708. LP.Character.Humanoid.HipHeight = CurrentHipheight
  1709. LP.Character.Humanoid.JumpPower = CurrentJumppower
  1710. end
  1711.  
  1712. Commands.credits = function(args)
  1713. Notification("info", "Shattervast was made by illremember#3799 , "..commandPrefix.."fullcredits for all credits.", 8)
  1714. end
  1715.  
  1716. Commands.attach = function(args)
  1717. if hasTools() == false then
  1718. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  1719. else
  1720. FEGodmode()
  1721. for i,v in pairs(LP.Backpack:GetChildren())do
  1722. LP.Character.Humanoid:EquipTool(v)
  1723. end
  1724. if args[1] then
  1725. for i,v in pairs(findSinglePlayer(args[1])) do
  1726. if v ~= LP then
  1727. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  1728. wait(0.3)
  1729. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  1730. end
  1731. end
  1732. end
  1733. end
  1734. end
  1735.  
  1736. Commands.fly = function(args)
  1737. if bypassMODE == false then
  1738. local speedget = 1
  1739. repeat wait() until LP and LP.Character and LP.Character:FindFirstChild('HumanoidRootPart') and LP.Character:FindFirstChild('Humanoid')
  1740. repeat wait() until Mouse
  1741. if args[1] then
  1742. speedfly = args[1]
  1743. else
  1744. speedfly = 1
  1745. end
  1746.  
  1747. local T = LP.Character.HumanoidRootPart
  1748. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  1749. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  1750. local SPEED = speedget
  1751.  
  1752. local function fly()
  1753. flying = true
  1754. local BG = Instance.new('BodyGyro', T)
  1755. local BV = Instance.new('BodyVelocity', T)
  1756. BG.P = 9e4
  1757. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  1758. BG.cframe = T.CFrame
  1759. BV.velocity = Vector3.new(0, 0.1, 0)
  1760. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  1761. spawn(function()
  1762. repeat wait()
  1763. LP.Character.Humanoid.PlatformStand = true
  1764. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  1765. SPEED = 50
  1766. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  1767. SPEED = 0
  1768. end
  1769. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  1770. 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
  1771. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  1772. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  1773. 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
  1774. else
  1775. BV.velocity = Vector3.new(0, 0.1, 0)
  1776. end
  1777. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  1778. until not flying
  1779. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  1780. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  1781. SPEED = 0
  1782. BG:destroy()
  1783. BV:destroy()
  1784. LP.Character.Humanoid.PlatformStand = false
  1785. end)
  1786. end
  1787. Mouse.KeyDown:connect(function(KEY)
  1788. if KEY:lower() == 'w' then
  1789. CONTROL.F = speedfly
  1790. elseif KEY:lower() == 's' then
  1791. CONTROL.B = -speedfly
  1792. elseif KEY:lower() == 'a' then
  1793. CONTROL.L = -speedfly
  1794. elseif KEY:lower() == 'd' then
  1795. CONTROL.R = speedfly
  1796. end
  1797. end)
  1798. Mouse.KeyUp:connect(function(KEY)
  1799. if KEY:lower() == 'w' then
  1800. CONTROL.F = 0
  1801. elseif KEY:lower() == 's' then
  1802. CONTROL.B = 0
  1803. elseif KEY:lower() == 'a' then
  1804. CONTROL.L = 0
  1805. elseif KEY:lower() == 'd' then
  1806. CONTROL.R = 0
  1807. end
  1808. end)
  1809. fly()
  1810. elseif bypassMODE == true then
  1811. if not args[1] then
  1812. run(commandPrefix.."fc")
  1813. else
  1814. run(commandPrefix.."fc "..args[1])
  1815. end
  1816. LP.Character.Head.Anchored = false
  1817. looptpbypassfly = true
  1818. view(LP)
  1819. end
  1820. end
  1821.  
  1822. Commands.unfly = function(args)
  1823. if bypassMODE == false then
  1824. flying = false
  1825. LP.Character.Humanoid.PlatformStand = false
  1826. else
  1827. looptpbypassfly = false
  1828. run(commandPrefix.."unfreecam")
  1829. local goalTP = LP.Character.HumanoidRootPart.CFrame
  1830. if game.GameId == 245662005 then
  1831. for i = 1, 5 do wait(0.2)
  1832. LP.Character.HumanoidRootPart.CFrame = goalTP
  1833. end
  1834. else
  1835. LP.Character.HumanoidRootPart.CFrame = goalTP
  1836. end
  1837. LP.Character.Head.Anchored = false
  1838. end
  1839. end
  1840.  
  1841. Commands.kill = function(args)
  1842. if args[1] then
  1843. for i,v in pairs(findSinglePlayer(args[1])) do
  1844. if v == LP then
  1845. LP.Character:BreakJoints()
  1846. else
  1847. if hasTools() == false then
  1848. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  1849. else
  1850. FEGodmode()
  1851. for i,v in pairs(LP.Backpack:GetChildren())do
  1852. LP.Character.Humanoid:EquipTool(v)
  1853. end
  1854. local NOW = LP.Character.HumanoidRootPart.CFrame
  1855. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  1856. wait(0.3)
  1857. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  1858. local function tp(player,player2)
  1859. local char1,char2=player.Character,player2.Character
  1860. if char1 and char2 then
  1861. char1:MoveTo(char2.Head.Position)
  1862. end
  1863. end
  1864. wait(0.5)
  1865. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(100000,0,100000))
  1866. wait(0.5)
  1867. tp(LP,game:GetService("Players")[v.Name])
  1868. wait(0.7)
  1869. LP.Character.HumanoidRootPart.CFrame = NOW
  1870. view(LP)
  1871. end
  1872. end
  1873. end
  1874. end
  1875. end
  1876. Commands.bring = function(args)
  1877. if hasTools() == false then
  1878. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  1879. else
  1880. FEGodmode()
  1881. for i,v in pairs(LP.Backpack:GetChildren())do
  1882. LP.Character.Humanoid:EquipTool(v)
  1883. end
  1884. if args[1] then
  1885. for i,v in pairs(findSinglePlayer(args[1])) do
  1886. if v ~= LP then
  1887. local NOW = LP.Character.HumanoidRootPart.CFrame
  1888. local function tp(player,player2)
  1889. local char1,char2=player.Character,player2.Character
  1890. if char1 and char2 then
  1891. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  1892. end
  1893. end
  1894. local function getout(player,player2)
  1895. local char1,char2=player.Character,player2.Character
  1896. if char1 and char2 then
  1897. char1:MoveTo(char2.Head.Position)
  1898. end
  1899. end
  1900. tp(game:GetService("Players")[v.Name], LP)
  1901. wait(0.2)
  1902. tp(game:GetService("Players")[v.Name], LP)
  1903. wait(0.5)
  1904. LP.Character.HumanoidRootPart.CFrame = NOW
  1905. wait(0.5)
  1906. getout(LP, game:GetService("Players")[v.Name])
  1907. wait(0.3)
  1908. LP.Character.HumanoidRootPart.CFrame = NOW
  1909. end
  1910. end
  1911. end
  1912. end
  1913. end
  1914.  
  1915. Commands.naked = function(args)
  1916. for i,v in pairs(LP.Character:GetDescendants()) do
  1917. if v:IsA("Clothing") then
  1918. v:Destroy()
  1919. end
  1920. end
  1921. end
  1922.  
  1923. Commands.nolimbs = function(args)
  1924. LP.Character["Left Arm"]:Destroy()
  1925. LP.Character["Right Arm"]:Destroy()
  1926. LP.Character["Left Leg"]:Destroy()
  1927. LP.Character["Right Leg"]:Destroy()
  1928. end
  1929.  
  1930. Commands.noarms = function(args)
  1931. LP.Character["Left Arm"]:Destroy()
  1932. LP.Character["Right Arm"]:Destroy()
  1933. end
  1934.  
  1935. Commands.nolegs = function(args)
  1936. LP.Character["Left Leg"]:Destroy()
  1937. LP.Character["Right Leg"]:Destroy()
  1938. end
  1939.  
  1940. Commands.headless = function(args)
  1941. local l = LP.Character.Humanoid:Clone()
  1942. LP.Character.Humanoid:Destroy()
  1943. wait(0.2)
  1944. LP.Character.Head.CanCollide = false
  1945. for i,v in pairs(LP.Character:GetDescendants()) do
  1946. if string.sub(v.Name, 1, 4) == "Neck" then
  1947. v:Destroy()
  1948. end
  1949. end
  1950. wait(0.2)
  1951. l.Name = "Humanoid"
  1952. l.Parent = LP.Character
  1953. wait(0.1)
  1954. game:GetService("Workspace").CurrentCamera.CameraSubject = LP.Character
  1955. LP.Character.Animate:Destroy()
  1956. end
  1957.  
  1958. antiremotes = false
  1959. Commands.antikick = function(args)
  1960. if args[1] then
  1961. if args[1] == "on" then
  1962. antiremotes = true
  1963. wait(0.2)
  1964. for i,v in pairs(LP.Character:GetChildren()) do
  1965. if string.find(string.lower(v.Name), "exploit") and v:IsA("LocalScript") then
  1966. v.Disabled = true
  1967. end
  1968. end
  1969. Notification("warning", "This command disables all remotes incase they are kick remotes, may break game.", 8)
  1970. Notification("info", "Does not prevent serverside kicks, use "..commandPrefix.."antikick off to turn off.", 8)
  1971. elseif args[1] == "off" then
  1972. antiremotes = false
  1973. Notification("warning", "Remote anti-kick turned off.", 8)
  1974. end
  1975. end
  1976. end
  1977.  
  1978. blockedremotes = {}
  1979. Commands.blockremote = function(args)
  1980. local getService = ""
  1981. if args[1] then
  1982. local remoteName = string.lower(tostring(args[1]))
  1983. if args[2] then
  1984. local serviceRemote = string.lower(tostring(args[2]))
  1985. if serviceRemote == "workspace" then
  1986. getService = "Workspace"
  1987. elseif serviceRemote == "replicatedstorage" then
  1988. getService = "ReplicatedStorage"
  1989. elseif serviceRemote == "players" then
  1990. getService = "Players"
  1991. elseif serviceRemote == "lighting" then
  1992. getService = "Lighting"
  1993. elseif serviceRemote == "startergui" then
  1994. getService = "StarterGui"
  1995. elseif serviceRemote == "starterpack" then
  1996. getService = "StarterPack"
  1997. elseif serviceRemote == "starterplayer" then
  1998. getService = "StarterPlayer"
  1999. else
  2000. getService = "ReplicatedStorage"
  2001. end
  2002. else
  2003. getService = "ReplicatedStorage"
  2004. end
  2005. for i,getRemote in pairs(game:GetService(getService):GetDescendants()) do
  2006. if string.lower(getRemote.Name) == remoteName then
  2007. table.insert(blockedremotes, getRemote.Name)
  2008. end
  2009. end
  2010. end
  2011. Notification("warning", "If this command does not work, make sure you type remote name/service fully correct.", 8)
  2012. end
  2013.  
  2014. spyingremotes = false
  2015. Commands.remotespy = function(args)
  2016. if args[1] then
  2017. if args[1] == "on" then
  2018. spyingremotes = true
  2019. Notification("info", "Remotespy turned on.", 4)
  2020. elseif args[1] == "off" then
  2021. spyingremotes = false
  2022. Notification("info", "Remotespy turned off.", 4)
  2023. end
  2024. end
  2025. end
  2026.  
  2027. Commands.bang = function(args)
  2028. if args[1] then
  2029. for i,v in pairs(findSinglePlayer(args[1])) do
  2030. if v ~= nil then
  2031. following = true
  2032. flwplr = v
  2033. flwnum = -1
  2034. local bangAnimation = Instance.new("Animation")
  2035. bangAnimation.AnimationId = "rbxassetid://148840371"
  2036. bangTrack = LP.Character.Humanoid:LoadAnimation(bangAnimation)
  2037. if args[2] then
  2038. bangTrack:Play(.1, 1, args[2])
  2039. else
  2040. bangTrack:Play(.1, 1, 1)
  2041. end
  2042. end
  2043. end
  2044. else
  2045. Notification("warning", "No player selected to follow! Use: "..commandPrefix.."follow player", 4)
  2046. end
  2047. end
  2048.  
  2049. Commands.unbang = function(args)
  2050. following = false
  2051. bangTrack:Stop()
  2052. end
  2053.  
  2054. spamdelay = 1
  2055. spamtext = "Spam"
  2056. spamming = false
  2057. Commands.spam = function(args)
  2058. if args[1] then
  2059. spamtext = args[1]
  2060. spamming = true
  2061. end
  2062. end
  2063. Commands.spamdelay = function(args)
  2064. if args[1] then
  2065. spamdelay = args[1]
  2066. end
  2067. end
  2068. spawn(function()
  2069. while wait(spamdelay) do
  2070. if spamming then
  2071. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(spamtext, "All")
  2072. end
  2073. end
  2074. end)
  2075.  
  2076. Commands.unspam = function(args)
  2077. spamming = false
  2078. end
  2079.  
  2080. Commands.info = function(args)
  2081. if args[1] then
  2082. for i,v in pairs(findSinglePlayer(args[1])) do
  2083. createINFO(v)
  2084. end
  2085. end
  2086. end
  2087.  
  2088. Commands.age = function(args)
  2089. if args[1] then
  2090. for i,v in pairs(findPlayer(args[1])) do
  2091. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v.Name.." Account Age: "..v.AccountAge.." days!", "All")
  2092. end
  2093. end
  2094. end
  2095.  
  2096. Commands.invisible = function(args)
  2097. local Character = LP.Character
  2098. if LP.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  2099. local Clone = Character.HumanoidRootPart:Clone()
  2100. Character.HumanoidRootPart:Destroy()
  2101. Clone.Parent = Character
  2102. else
  2103. local Clone = Character.LowerTorso.Root:Clone()
  2104. Character.LowerTorso.Root:Destroy()
  2105. Clone.Parent = Character.LowerTorso
  2106. end
  2107. end
  2108.  
  2109. walkto = false
  2110. walkplr = ""
  2111. Commands.walk = function(args)
  2112. if args[1] then
  2113. for i,v in pairs(findSinglePlayer(args[1])) do
  2114. walkplr = v
  2115. walkto = true
  2116. noclip = true
  2117. end
  2118. end
  2119. end
  2120.  
  2121. Commands.unwalk = function(args)
  2122. walkto = false
  2123. noclip = false
  2124. LP.Character.Humanoid:MoveTo(LP.Character.HumanoidRootPart.Position)
  2125. end
  2126.  
  2127. Commands.glitch = function(args)
  2128. if hasTools() == false then
  2129. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  2130. else
  2131. FEGodmode()
  2132. for i,v in pairs(LP.Backpack:GetChildren())do
  2133. LP.Character.Humanoid:EquipTool(v)
  2134. end
  2135. if args[1] then
  2136. for i,v in pairs(findSinglePlayer(args[1])) do
  2137. local function tp(player,player2)
  2138. local char1,char2=player.Character,player2.Character
  2139. if char1 and char2 then
  2140. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  2141. end
  2142. end
  2143. tp(game:GetService("Players")[v.Name], LP)
  2144. wait(0.2)
  2145. tp(game:GetService("Players")[v.Name], LP)
  2146. wait(0.5)
  2147. local b = Instance.new("BodyForce")
  2148. b.Parent = LP.Character.HumanoidRootPart
  2149. b.Name = "Glitch"
  2150. if args[2] then
  2151. b.Force = Vector3.new(args[2],5000,0)
  2152. else
  2153. b.Force = Vector3.new(100000000,5000,0)
  2154. end
  2155. wait(6)
  2156. b:Destroy()
  2157. end
  2158. end
  2159. end
  2160. end
  2161.  
  2162. Commands.tp = function(args)
  2163. if args[1] then
  2164. for i,v in pairs(findSinglePlayer(args[1])) do
  2165. if v == LP then
  2166. if args[2] then
  2167. for i,a in pairs(findSinglePlayer(args[2])) do
  2168. v.Character.HumanoidRootPart.CFrame = a.Character.HumanoidRootPart.CFrame
  2169. end
  2170. end
  2171. else
  2172. if hasTools() == false then
  2173. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  2174. else
  2175. FEGodmode()
  2176. for i,v in pairs(LP.Backpack:GetChildren())do
  2177. LP.Character.Humanoid:EquipTool(v)
  2178. end
  2179. if args[1] then
  2180. for i,first in pairs(findSinglePlayer(args[1])) do
  2181. if args[2] then
  2182. for i,second in pairs(findSinglePlayer(args[2])) do
  2183. local function tp(player,player2)
  2184. local char1,char2=player.Character,player2.Character
  2185. if char1 and char2 then
  2186. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  2187. end
  2188. end
  2189. local function getout(player,player2)
  2190. local char1,char2=player.Character,player2.Character
  2191. if char1 and char2 then
  2192. char1:MoveTo(char2.Head.Position)
  2193. end
  2194. end
  2195. tp(LP, first)
  2196. wait(0.2)
  2197. tp(LP, first)
  2198. wait(0.5)
  2199. tp(LP, second)
  2200. wait(0.2)
  2201. tp(LP, second)
  2202. wait(0.2)
  2203. getout(LP, first)
  2204. end
  2205. end
  2206. end
  2207. end
  2208. end
  2209. end
  2210. end
  2211. end
  2212. end
  2213.  
  2214. Commands.givetool = function(args)
  2215. if args[1] then
  2216. if args[2] then
  2217. local selectedTool = ""
  2218. for i,allTools in pairs(LP.Character:GetDescendants()) do
  2219. if allTools:IsA("Tool") and string.lower(allTools.Name) == string.lower(args[2]) then
  2220. selectedTool = allTools
  2221. else
  2222. for i,otherTools in pairs(LP.Backpack:GetDescendants()) do
  2223. if otherTools:IsA("Tool") and string.lower(otherTools.Name) == string.lower(args[2]) then
  2224. selectedTool = otherTools
  2225. end
  2226. end
  2227. end
  2228. end
  2229. for i,v in pairs(findSinglePlayer(args[1])) do
  2230. if selectedTool ~= "" then
  2231. selectedTool.Parent = v.Character
  2232. end
  2233. end
  2234. else
  2235. for i,plr in pairs(findSinglePlayer(args[1])) do
  2236. for i,tool in pairs(LP.Character:GetDescendants()) do
  2237. if tool:IsA("Tool") then
  2238. tool.Parent = plr.Character
  2239. end
  2240. end
  2241. end
  2242. end
  2243. end
  2244. end
  2245.  
  2246. Commands.givealltools = function(args)
  2247. LP.Character.Humanoid:UnequipTools()
  2248. for i,plr in pairs(findSinglePlayer(args[1])) do
  2249. for i,v in pairs(LP.Character:GetDescendants()) do
  2250. if v:IsA("Tool") then
  2251. v.Parent = plr.Character
  2252. end
  2253. end
  2254. for i,a in pairs(LP.Backpack:GetDescendants()) do
  2255. if a:IsA("Tool") then
  2256. a.Parent = plr.Character
  2257. end
  2258. end
  2259. end
  2260. end
  2261.  
  2262. Commands.blockhats = function(args)
  2263. for i,v in pairs(LP.Character:GetDescendants()) do
  2264. if v:IsA("Accessory") or v:IsA("Hat") then
  2265. for i,mesh in pairs(v:GetDescendants()) do
  2266. if mesh.Name == "Mesh" then
  2267. mesh:Destroy()
  2268. end
  2269. end
  2270. end
  2271. end
  2272. end
  2273.  
  2274. Commands.blocktool = function(args)
  2275. for i,v in pairs(LP.Character:GetDescendants()) do
  2276. if v:IsA("Tool") then
  2277. for i,mesh in pairs(v:GetDescendants()) do
  2278. if mesh.Name == "Mesh" then
  2279. mesh:Destroy()
  2280. end
  2281. end
  2282. end
  2283. end
  2284. end
  2285.  
  2286. Commands.orbit = function(args)
  2287. if args[1] then
  2288. for i,v in pairs(findSinglePlayer(args[1])) do
  2289. view(v)
  2290. RocketPropulsion(5000,100,5000,v,"OrbitMove")
  2291. end
  2292. else
  2293. Notification("warning", "No player selected to orbit! Use: "..commandPrefix.."orbit player", 4)
  2294. end
  2295. end
  2296.  
  2297. Commands.unorbit = function(args)
  2298. for i,v in pairs(LP.Character:GetDescendants()) do
  2299. if v.Name == "OrbitMove" then
  2300. v:Destroy()
  2301. end
  2302. end
  2303. view(LP)
  2304. end
  2305.  
  2306. Commands.pos = function(args)
  2307. Notification("info", "Your current position is ".. tostring(LP.Character.HumanoidRootPart.Position), 9)
  2308. end
  2309.  
  2310. SavedPosition = ""
  2311. Commands.savepos = function(args)
  2312. SavedPosition = LP.Character.HumanoidRootPart.CFrame
  2313. end
  2314. Commands.loadpos = function(args)
  2315. if SavedPosition ~= "" then
  2316. LP.Character.HumanoidRootPart.CFrame = SavedPosition
  2317. end
  2318. end
  2319.  
  2320. Commands.tppos = function(args)
  2321. if args[1] and args[2] and args[3] then
  2322. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(args[1], args[2], args[3]))
  2323. end
  2324. end
  2325.  
  2326. Commands.pmspam = function(args)
  2327. if args[1] then
  2328. local gotPlayer = ""
  2329. for i,v in pairs(findPlayer(args[1])) do
  2330. gotPlayer = v
  2331. end
  2332. table.remove(args, 1)
  2333. local pmSpamMsg = table.concat(args," ")
  2334. spamtext = "/w "..gotPlayer.Name.." "..pmSpamMsg
  2335. spamming = true
  2336. end
  2337. end
  2338.  
  2339. Commands.unpmspam = function(args)
  2340. spamming = false
  2341. end
  2342.  
  2343. Commands.wsvis = function(args)
  2344. if args[1] then
  2345. for i,v in pairs(gsWorkspace:GetDescendants()) do
  2346. if v:IsA("Part") or v:IsA("Decal") then
  2347. if tonumber(args[1]) > 1 then
  2348. v.Transparency = 0.5
  2349. else
  2350. v.Transparency = args[1]
  2351. end
  2352. end
  2353. end
  2354. end
  2355. clientSided()
  2356. end
  2357.  
  2358. Commands.bringobj = function(args)
  2359. if args[1] then
  2360. local Object = ""
  2361. for i,v in pairs(gsWorkspace:GetDescendants()) do
  2362. if string.lower(v.Name) == string.lower(args[1]) then
  2363. Object = v
  2364. end
  2365. end
  2366. if Object == "" then
  2367. Notification("warning", "Object was not found in the workspace.", 6)
  2368. end
  2369. if args[2] then
  2370. Object.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * args[2]
  2371. else
  2372. Object.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * 3
  2373. end
  2374. clientSided()
  2375. end
  2376. end
  2377.  
  2378. CBRINGplr = ""
  2379. cbringing = false
  2380. cbringingall = false
  2381. Commands.cbring = function(args)
  2382. if args[1] then
  2383. if string.lower(tostring(args[1])) == "all" or string.lower(tostring(args[1])) == "others" then
  2384. cbringingall = true
  2385. else
  2386. for i,v in pairs(findPlayer(args[1])) do
  2387. CBRINGplr = v
  2388. cbringing = true
  2389. end
  2390. end
  2391. if args[2] then
  2392. CBRINGamount = args[2]
  2393. else
  2394. CBRINGamount = 3
  2395. end
  2396. clientSided()
  2397. end
  2398. end
  2399.  
  2400. Commands.uncbring = function(args)
  2401. cbringing = false
  2402. cbringingall = false
  2403. end
  2404.  
  2405. Commands.cfreeze = function(args)
  2406. if args[1] then
  2407. for i,v in pairs(findPlayer(args[1])) do
  2408. v.Character.HumanoidRootPart.Anchored = true
  2409. end
  2410. clientSided()
  2411. end
  2412. end
  2413.  
  2414. Commands.uncfreeze = function(args)
  2415. if args[1] then
  2416. for i,v in pairs(findPlayer(args[1])) do
  2417. v.Character.HumanoidRootPart.Anchored = false
  2418. end
  2419. else
  2420. for i,all in pairs(gsPlayers:GetPlayers()) do
  2421. all.Character.HumanoidRootPart.Anchored = false
  2422. end
  2423. end
  2424. end
  2425.  
  2426. Commands.unattach = function(args)
  2427. local function getout(player,player2)
  2428. local char1,char2=player.Character,player2.Character
  2429. if char1 and char2 then
  2430. char1:MoveTo(char2.Head.Position)
  2431. end
  2432. end
  2433. getout(LP, LP)
  2434. end
  2435.  
  2436. currentToolSize = ""
  2437. Commands.reach = function(args)
  2438. if args[1] then
  2439. for i,v in pairs(LP.Character:GetDescendants()) do
  2440. if v:IsA("Tool") then
  2441. if string.lower(tostring(args[1])) == "off" then
  2442. v.Handle.Size = currentToolSize
  2443. v.Handle.SelectionBoxCreated:Destroy()
  2444. LP.Character.Humanoid:UnequipTools()
  2445. elseif string.lower(tostring(args[1])) == "on" then
  2446. if args[2] then
  2447. currentToolSize = v.Handle.Size
  2448. local a = Instance.new("SelectionBox",v.Handle)
  2449. a.Name = "SelectionBoxCreated"
  2450. a.Adornee = v.Handle
  2451. v.Handle.Size = Vector3.new(0.5,0.5,args[2])
  2452. v.GripPos = Vector3.new(0,0,0)
  2453. LP.Character.Humanoid:UnequipTools()
  2454. else
  2455. currentToolSize = v.Handle.Size
  2456. local a = Instance.new("SelectionBox",v.Handle)
  2457. a.Name = "SelectionBoxCreated"
  2458. a.Adornee = v.Handle
  2459. v.Handle.Size = Vector3.new(0.5,0.5,60)
  2460. v.GripPos = Vector3.new(0,0,0)
  2461. LP.Character.Humanoid:UnequipTools()
  2462. end
  2463. end
  2464. end
  2465. end
  2466. end
  2467. end
  2468.  
  2469. Commands.droptool = function(args)
  2470. for i,v in pairs(LP.Character:GetDescendants()) do
  2471. if v:IsA("Tool") then
  2472. v.Parent = gsWorkspace
  2473. end
  2474. end
  2475. for i,a in pairs(LP.Backpack:GetDescendants()) do
  2476. if a:IsA("Tool") then
  2477. a.Parent = gsWorkspace
  2478. end
  2479. end
  2480. end
  2481.  
  2482. Commands.drophats = function(args)
  2483. for i,v in pairs(LP.Character:GetDescendants()) do
  2484. if v:IsA("Accessory") or v:IsA("Hat") then
  2485. v.Parent = gsWorkspace
  2486. end
  2487. end
  2488. end
  2489.  
  2490. Commands.hidecmdbar = function(args)
  2491. CMDBAR.Visible = false
  2492. end
  2493.  
  2494. Commands.showcmdbar = function(args)
  2495. CMDBAR.Visible = true
  2496. end
  2497.  
  2498. Commands.prefix = function(args)
  2499. if args[1] then
  2500. commandPrefix = string.sub(tostring(args[1]), 1, 1)
  2501. fullUpdate()
  2502. end
  2503. end
  2504.  
  2505. Commands.removeinvis = function(args)
  2506. for i,v in pairs(gsWorkspace:GetDescendants()) do
  2507. if v:IsA("Part") and v.Name ~= "HumanoidRootPart" then
  2508. if v.Transparency == 1 then
  2509. v:Destroy()
  2510. end
  2511. end
  2512. end
  2513. clientSided()
  2514. end
  2515.  
  2516. Commands.removefog = function(args)
  2517. gsLighting.FogStart = 0
  2518. gsLighting.FogEnd = 9999999999999
  2519. clientSided()
  2520. end
  2521.  
  2522. Commands.animation = function(args)
  2523. if args[1] then
  2524. if string.lower(tostring(args[1])) == "gui" then
  2525. loadstring(game:HttpGet(("https://pastebin.com/raw/mdbTSP4d"),true))()
  2526. else
  2527. local Anim = Instance.new("Animation")
  2528. Anim.AnimationId = "rbxassetid://".. tostring(args[1])
  2529. local track = LP.Character.Humanoid:LoadAnimation(Anim)
  2530. if args[2] then
  2531. track:Play(.1, 1, args[2])
  2532. else
  2533. track:Play(.1, 1, 1)
  2534. end
  2535. end
  2536. end
  2537. end
  2538.  
  2539. Commands.btools = function(args)
  2540. local Clone_T = Instance.new("HopperBin",LP.Backpack)
  2541. Clone_T.BinType = "Clone"
  2542. local Destruct = Instance.new("HopperBin",LP.Backpack)
  2543. Destruct.BinType = "Hammer"
  2544. local Hold_T = Instance.new("HopperBin",LP.Backpack)
  2545. Hold_T.BinType = "Grab"
  2546. clientSided()
  2547. end
  2548.  
  2549. Commands.esp = function(args)
  2550. if args[1] then
  2551. for i,v in pairs(findPlayer(args[1])) do
  2552. local espPlayer = v
  2553. for i,createESP in pairs(espPlayer.Character:GetDescendants()) do
  2554. if createESP:IsA("Part") or createESP:IsA("MeshPart") then
  2555. if createESP.Name ~= "HumanoidRootPart" and createESP.Name ~= "Handle" then
  2556. local current = true
  2557. local espBOX = Instance.new("BoxHandleAdornment")
  2558. espBOX.Parent = game.Players.LocalPlayer.PlayerGui
  2559. espBOX.Name = "rGET"..espPlayer.Name
  2560. espBOX.Adornee = createESP
  2561. espBOX.AlwaysOnTop = true
  2562. espBOX.ZIndex = 0
  2563. espBOX.Size = createESP.Size
  2564. espBOX.Transparency = 0.3
  2565. local AboveHead = Instance.new("BillboardGui")
  2566. AboveHead.Parent = game.Players.LocalPlayer.PlayerGui
  2567. AboveHead.Adornee = espPlayer.Character.Head
  2568. AboveHead.Name = "rGET"..espPlayer.Name
  2569. AboveHead.Size = UDim2.new(0, 100, 0, 100)
  2570. AboveHead.StudsOffset = Vector3.new(0, 1, 0)
  2571. AboveHead.AlwaysOnTop = true
  2572. local Info = Instance.new("TextLabel")
  2573. Info.Parent = AboveHead
  2574. Info.BackgroundTransparency = 1
  2575. Info.Position = UDim2.new(0, 0, 0, 0)
  2576. Info.Size = UDim2.new(1, 0, 0, 40)
  2577. Info.TextColor3 = Color3.fromRGB(200,200,200)
  2578. Info.TextStrokeTransparency = 0.5
  2579. Info.TextSize = 15
  2580. if espPlayer.TeamColor == LP.TeamColor then
  2581. espBOX.Color = BrickColor.new("Lime green")
  2582. Info.TextStrokeColor3 = Color3.fromRGB(10,100,10)
  2583. else
  2584. espBOX.Color = BrickColor.new("Really red")
  2585. Info.TextStrokeColor3 = Color3.fromRGB(100,10,10)
  2586. end
  2587. game:GetService('RunService').Stepped:connect(function()
  2588. if current and LP.Character.Humanoid and espPlayer.Character.HumanoidRootPart then
  2589. Info.Text = espPlayer.Name.." (".. math.floor((LP.Character.HumanoidRootPart.Position - espPlayer.Character.HumanoidRootPart.Position).magnitude)..")"
  2590. end
  2591. end)
  2592. espPlayer.Character.Humanoid.Died:Connect(function()
  2593. current = false
  2594. espBOX:Destroy()
  2595. AboveHead:Destroy()
  2596. end)
  2597. gsPlayers.PlayerRemoving:Connect(function(plr)
  2598. if plr == espPlayer then
  2599. current = false
  2600. espBOX:Destroy()
  2601. AboveHead:Destroy()
  2602. end
  2603. end)
  2604. end
  2605. end
  2606. end
  2607. end
  2608. clientSided()
  2609. end
  2610. end
  2611.  
  2612. Commands.unesp = function(args)
  2613. if not args[1] then
  2614. for i,v in pairs(gsCoreGui:GetDescendants()) do
  2615. if string.sub(v.Name, 1, 4) == "rGET" then
  2616. v:Destroy()
  2617. end
  2618. end
  2619. else
  2620. for i,v in pairs(gsCoreGui:GetDescendants()) do
  2621. if string.sub(v.Name, 1, 4) == "rGET" then
  2622. for i,a in pairs(findPlayer(args[1])) do
  2623. if string.sub(v.Name, 5) == a.Name then
  2624. v:Destroy()
  2625. end
  2626. end
  2627. end
  2628. end
  2629. end
  2630. end
  2631.  
  2632. Commands.dice = function(args)
  2633. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("You rolled a dice for ".. tostring(math.random(1, 6)), "All")
  2634. end
  2635.  
  2636. Commands.random = function(args)
  2637. if args[1] and args[2] then
  2638. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Picking random number between "..args[1].." and "..args[2].."... The number is ".. tostring(math.random(args[1], args[2])), "All")
  2639. end
  2640. end
  2641.  
  2642. Commands.closegame = function(args)
  2643. game:Shutdown()
  2644. end
  2645.  
  2646. Commands.savetool = function(args)
  2647. if args[1] then
  2648. for i,a in pairs(LP.Character:GetDescendants()) do
  2649. if a:IsA("Tool") and string.lower(a.Name) == string.lower(tostring(args[1])) then
  2650. a.Parent = LP
  2651. local oldName = a.Name
  2652. a.Name = "saved "..oldName
  2653. else
  2654. for i,n in pairs(LP.Backpack:GetDescendants()) do
  2655. if n:IsA("Tool") and string.lower(n.Name) == string.lower(tostring(args[1])) then
  2656. n.Parent = LP
  2657. local sOldName = n.Name
  2658. n.Name = "saved "..sOldName
  2659. end
  2660. end
  2661. end
  2662. end
  2663. else
  2664. for i,v in pairs(LP.Character:GetDescendants()) do
  2665. if v:IsA("Tool") then
  2666. v.Parent = LP
  2667. local oldName = v.Name
  2668. v.Name = "saved "..oldName
  2669. end
  2670. end
  2671. end
  2672. end
  2673.  
  2674. Commands.loadtool = function(args)
  2675. if args[1] then
  2676. for i,a in pairs(LP:GetChildren()) do
  2677. if a:IsA("Tool") and string.sub(a.Name, 1, 5) == "saved" and string.lower(string.sub(a.Name, 7)) == string.lower(tostring(args[1])) then
  2678. a.Parent = LP.Backpack
  2679. local currentName = a.Name
  2680. a.Name = string.sub(currentName, 7)
  2681. end
  2682. end
  2683. else
  2684. for i,v in pairs(LP:GetChildren()) do
  2685. if string.sub(v.Name, 1, 5) == "saved" then
  2686. v.Parent = LP.Backpack
  2687. local currentName = v.Name
  2688. v.Name = string.sub(currentName, 7)
  2689. end
  2690. end
  2691. end
  2692. end
  2693.  
  2694. Commands.savealltool = function(args)
  2695. for i,v in pairs(LP.Character:GetDescendants()) do
  2696. if v:IsA("Tool") then
  2697. v.Parent = LP
  2698. local oldName = v.Name
  2699. v.Name = "saved "..oldName
  2700. end
  2701. end
  2702. for i,v in pairs(LP.Backpack:GetDescendants()) do
  2703. if v:IsA("Tool") then
  2704. v.Parent = LP
  2705. local oldName = v.Name
  2706. v.Name = "saved "..oldName
  2707. end
  2708. end
  2709. end
  2710.  
  2711. Commands.loadalltool = function(args)
  2712. for i,v in pairs(LP:GetChildren()) do
  2713. if v:IsA("Tool") and string.sub(v.Name, 1, 5) == "saved" then
  2714. v.Parent = LP.Backpack
  2715. local currentName = v.Name
  2716. v.Name = string.sub(currentName, 7)
  2717. end
  2718. end
  2719. end
  2720.  
  2721. Mouse.KeyDown:Connect(function(key)
  2722. if key == clicktpKEY and clicktpACTIVE == true then
  2723. if Mouse.Target then
  2724. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z)
  2725. end
  2726. end
  2727. if key == clickdelKEY and clickdelACTIVE == true then
  2728. if Mouse.Target then
  2729. Mouse.Target:Destroy()
  2730. end
  2731. end
  2732. end)
  2733. Mouse.Button1Down:Connect(function()
  2734. if clicktpACTIVE == true and clicktpCLICK == true then
  2735. if Mouse.Target then
  2736. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z)
  2737. end
  2738. end
  2739. if clickdelACTIVE == true and clickdelCLICK == true then
  2740. if Mouse.Target then
  2741. Mouse.Target:Destroy()
  2742. end
  2743. end
  2744. end)
  2745.  
  2746. clicktpKEY = ""
  2747. clickdelKEY = ""
  2748. clicktpACTIVE = false
  2749. clickdelACTIVE = false
  2750. clicktpCLICK = false
  2751. clickdelCLICK = false
  2752.  
  2753. Commands.clicktp = function(args)
  2754. if args[1] then
  2755. clicktpKEY = string.sub(tostring(args[1]), 1, 1)
  2756. clicktpACTIVE = true
  2757. clicktpCLICK = false
  2758. else
  2759. clicktpKEY = ""
  2760. clicktpACTIVE = true
  2761. clicktpCLICK = true
  2762. end
  2763. clientSided()
  2764. end
  2765.  
  2766. Commands.clickdel = function(args)
  2767. if args[1] then
  2768. clickdelKEY = string.sub(tostring(args[1]), 1, 1)
  2769. clickdelACTIVE = true
  2770. clickdelCLICK = false
  2771. else
  2772. clickdelKEY = ""
  2773. clickdelACTIVE = true
  2774. clickdelCLICK = true
  2775. end
  2776. clientSided()
  2777. end
  2778.  
  2779. Commands.unclicktp = function(args)
  2780. clicktpACTIVE = false
  2781. end
  2782.  
  2783. Commands.unclickdel = function(args)
  2784. clickdelACTIVE = false
  2785. end
  2786.  
  2787. Commands.oof = function(args)
  2788. spawn(function()
  2789. while wait() do
  2790. for i,v in pairs(game:GetService'Players':GetPlayers()) do
  2791. if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  2792. for _,x in pairs(v.Character.Head:GetChildren()) do
  2793. if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true, true) end
  2794. end
  2795. end
  2796. end
  2797. end
  2798. end)
  2799. end
  2800.  
  2801. Commands.chatlogs = function(args)
  2802. MainChatFrame.Position = UDim2.new(0, 760, 0, 261)
  2803. MainChatFrame.Visible = true
  2804. end
  2805.  
  2806. Commands.stopadmin = function(args)
  2807. commandPrefix = " "
  2808. following = false
  2809. trailing = false
  2810. annoying = false
  2811. CMDBAR.Visible = false
  2812. Match.Visible = false
  2813. flying = false
  2814. end
  2815.  
  2816. Commands.freecam = function(args)
  2817. for i,getFC in pairs(gsWorkspace:GetDescendants()) do
  2818. if getFC.Name == "rGETpartNUMBER2" then
  2819. getFC:Destroy()
  2820. end
  2821. end
  2822. local CameraPart = Instance.new("Part")
  2823. CameraPart.CanCollide = false
  2824. CameraPart.CFrame = LP.Character.Head.CFrame
  2825. CameraPart.Locked = true
  2826. CameraPart.Transparency = 1
  2827. CameraPart.Size = Vector3.new(1, 1, 1)
  2828. CameraPart.Parent = gsWorkspace
  2829. CameraPart.Name = "rGETpartNUMBER2"
  2830. if bypassMODE == true then
  2831. loopviewfc = true
  2832. elseif bypassMODE == false then
  2833. gsWorkspace.CurrentCamera.CameraSubject = CameraPart
  2834. end
  2835. local speedget = 1
  2836. local T = CameraPart
  2837. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  2838. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  2839. local SPEED = speedget
  2840. if args[1] then
  2841. speedfly = tonumber(args[1])
  2842. else
  2843. speedfly = 1
  2844. end
  2845. local function freecamfly()
  2846. LP.Character.Head.Anchored = true
  2847. doFREECAM = true
  2848. local BG = Instance.new('BodyGyro', T)
  2849. local BV = Instance.new('BodyVelocity', T)
  2850. BG.P = 9e4
  2851. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  2852. BG.cframe = T.CFrame
  2853. BV.velocity = Vector3.new(0, 0.1, 0)
  2854. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2855. spawn(function()
  2856. repeat wait()
  2857. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  2858. SPEED = 50
  2859. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  2860. SPEED = 0
  2861. end
  2862. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  2863. 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
  2864. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  2865. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  2866. 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
  2867. else
  2868. BV.velocity = Vector3.new(0, 0.1, 0)
  2869. end
  2870. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  2871. until not doFREECAM
  2872. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  2873. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  2874. SPEED = 0
  2875. BG:destroy()
  2876. BV:destroy()
  2877. end)
  2878. end
  2879. Mouse.KeyDown:connect(function(KEY)
  2880. if KEY:lower() == 'w' then
  2881. CONTROL.F = speedfly
  2882. elseif KEY:lower() == 's' then
  2883. CONTROL.B = -speedfly
  2884. elseif KEY:lower() == 'a' then
  2885. CONTROL.L = -speedfly
  2886. elseif KEY:lower() == 'd' then
  2887. CONTROL.R = speedfly
  2888. end
  2889. end)
  2890. Mouse.KeyUp:connect(function(KEY)
  2891. if KEY:lower() == 'w' then
  2892. CONTROL.F = 0
  2893. elseif KEY:lower() == 's' then
  2894. CONTROL.B = 0
  2895. elseif KEY:lower() == 'a' then
  2896. CONTROL.L = 0
  2897. elseif KEY:lower() == 'd' then
  2898. CONTROL.R = 0
  2899. end
  2900. end)
  2901. freecamfly()
  2902. end
  2903.  
  2904. Commands.fc = function(args)
  2905. if args[1] then
  2906. run(commandPrefix.."freecam "..args[1])
  2907. else
  2908. run(commandPrefix.."freecam")
  2909. end
  2910. end
  2911.  
  2912. Commands.unfreecam = function(args)
  2913. doFREECAM = false
  2914. LP.Character.Head.Anchored = false
  2915. view(LP)
  2916. if gsWorkspace.rGETpartNUMBER2 then
  2917. gsWorkspace.rGETpartNUMBER2:Destroy()
  2918. end
  2919. loopviewfc = false
  2920. end
  2921.  
  2922. Commands.unfc = function(args)
  2923. doFREECAM = false
  2924. LP.Character.Head.Anchored = false
  2925. view(LP)
  2926. if gsWorkspace.rGETpartNUMBER2 then
  2927. gsWorkspace.rGETpartNUMBER2:Destroy()
  2928. end
  2929. loopviewfc = false
  2930. end
  2931.  
  2932. Commands.gotofc = function(args)
  2933. doFREECAM = false
  2934. LP.Character.Head.Anchored = false
  2935. view(LP)
  2936. pcall(function()
  2937. LP.Character.HumanoidRootPart.CFrame = gsWorkspace.rGETpartNUMBER2.CFrame
  2938. gsWorkspace.rGETpartNUMBER2:Destroy()
  2939. end)
  2940. loopviewfc = false
  2941. end
  2942.  
  2943. Commands.fctp = function(args)
  2944. if args[1] then
  2945. for i,v in pairs(findPlayer(args[1])) do
  2946. pcall(function()
  2947. gsWorkspace.rGETpartNUMBER2.CFrame = v.Character.Head.CFrame
  2948. end)
  2949. end
  2950. end
  2951. end
  2952.  
  2953. Commands.cmds = function(args)
  2954. CMDSmain.Position = UDim2.new(0, 695, 0, 297)
  2955. CMDSmain.Visible = true
  2956. CMDSmain:TweenSize(UDim2.new(0, 440, 0, 367), "InOut", "Sine", 1)
  2957. end
  2958.  
  2959. Commands.fullcredits = function(args)
  2960. Notification("info", "Credit to Autumn, Josh and 3dsboy08 (Help with "..commandPrefix.."remotespy and anti client kick)", 1)
  2961. Notification("info", "Credit to Infinite Yield developers (Assisted in "..commandPrefix.."esp and "..commandPrefix.."fly commands)", 1)
  2962. Notification("info", "Credit to Timeless ("..commandPrefix.."invisible) and Harkinian ("..commandPrefix.."shutdown)", 1)
  2963. Notification("info", "Credit to DEX creators ("..commandPrefix.."explorer) and xFunnieuss ("..commandPrefix.."spinhats)", 1)
  2964. Notification("info", "Only creator is illremember", 2)
  2965. end
  2966.  
  2967. Commands.hotkey = function(args)
  2968. if args[1] then
  2969. local hotkeyKEY = string.sub(tostring(args[1]), 1, 3)
  2970. if args[2] then
  2971. table.remove(args, 1)
  2972. local hotkeyCMD = table.concat(args, " ")
  2973. table.insert(hotkeys, hotkeyCMD.."//"..hotkeyKEY)
  2974. fullUpdate()
  2975. Notification("info", "Hotkey added!", 1)
  2976. end
  2977. end
  2978. end
  2979.  
  2980. Mouse.KeyDown:Connect(function(key)
  2981. for i,v in pairs(hotkeys) do
  2982. local currentKey = string.match(v, "[%a%d]+$")
  2983. if string.len(currentKey) == 1 then
  2984. if key == string.sub(v, #v, #v) then
  2985. local commandtoRUN = string.match(v, "^[%w%s]+")
  2986. if string.sub(string.lower(tostring(commandtoRUN)), 1, 3) == "fly" then
  2987. if bypassMODE == true then
  2988. if doFREECAM == false then
  2989. run(commandPrefix..tostring(commandtoRUN))
  2990. else
  2991. run(commandPrefix.."unfly")
  2992. end
  2993. else
  2994. if flying == false then
  2995. run(commandPrefix..tostring(commandtoRUN))
  2996. else
  2997. run(commandPrefix.."unfly")
  2998. end
  2999. end
  3000. elseif tostring(commandtoRUN) == "noclip" then
  3001. if noclip == false then
  3002. run(commandPrefix..tostring(commandtoRUN))
  3003. else
  3004. run(commandPrefix.."clip")
  3005. end
  3006. elseif tostring(commandtoRUN) == "freecam" or tostring(commandtoRUN) == "fc" then
  3007. if doFREECAM == false then
  3008. run(commandPrefix..tostring(commandtoRUN))
  3009. else
  3010. if fchotkeymode == "goto" then
  3011. run(commandPrefix.."gotofc")
  3012. elseif fchotkeymode == "unfc" then
  3013. run(commandPrefix.."unfreecam")
  3014. end
  3015. end
  3016. else
  3017. run(commandPrefix..tostring(commandtoRUN))
  3018. end
  3019. end
  3020. else
  3021. if string.lower(string.sub(tostring(currentKey), 1, 1)) == "f" then
  3022. local commandtoRUN = string.match(v, "^[%w%s]+")
  3023. local hotkeyadjust = tonumber(string.sub(currentKey, 2, 3)) + 25
  3024. if string.byte(key) == hotkeyadjust then
  3025. if string.sub(string.lower(tostring(commandtoRUN)), 1, 3) == "fly" then
  3026. if bypassMODE == true then
  3027. if doFREECAM == false then
  3028. run(commandPrefix..tostring(commandtoRUN))
  3029. else
  3030. run(commandPrefix.."unfly")
  3031. end
  3032. else
  3033. if flying == false then
  3034. run(commandPrefix..tostring(commandtoRUN))
  3035. else
  3036. run(commandPrefix.."unfly")
  3037. end
  3038. end
  3039. elseif tostring(commandtoRUN) == "noclip" then
  3040. if noclip == false then
  3041. run(commandPrefix..tostring(commandtoRUN))
  3042. else
  3043. run(commandPrefix.."clip")
  3044. end
  3045. elseif tostring(commandtoRUN) == "freecam" or tostring(commandtoRUN) == "fc" then
  3046. if doFREECAM == false then
  3047. run(commandPrefix..tostring(commandtoRUN))
  3048. else
  3049. if fchotkeymode == "goto" then
  3050. run(commandPrefix.."gotofc")
  3051. elseif fchotkeymode == "unfc" then
  3052. run(commandPrefix.."unfreecam")
  3053. end
  3054. end
  3055. else
  3056. run(commandPrefix..tostring(commandtoRUN))
  3057. end
  3058. end
  3059. end
  3060. end
  3061. end
  3062. end)
  3063.  
  3064. Commands.removeallhotkey = function(args)
  3065. hotkeys = {}
  3066. fullUpdate()
  3067. Notification("warning", "All hotkeys reset/removed", 6)
  3068. end
  3069.  
  3070. Commands.removehotkey = function(args)
  3071. if args[1] then
  3072. for i,v in pairs(hotkeys) do
  3073. local currentKey = string.match(v, "[%a%d]+$")
  3074. if currentKey == string.lower(tostring(args[1])) then
  3075. table.remove(hotkeys, i)
  3076. fullUpdate()
  3077. end
  3078. end
  3079. end
  3080. end
  3081.  
  3082. Commands.printhotkeys = function(args)
  3083. for i,v in pairs(hotkeys) do
  3084. warn("HOTKEYS:")
  3085. print(v)
  3086. end
  3087. end
  3088.  
  3089. Commands.os = function(args)
  3090. if args[1] then
  3091. for i,v in pairs(findPlayer(args[1])) do
  3092. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v.Name.." is on "..v.OsPlatform, "All")
  3093. end
  3094. end
  3095. end
  3096.  
  3097. spinning = false
  3098. Commands.spin = function(args)
  3099. if args[1] then
  3100. for i,v in pairs(findSinglePlayer(args[1])) do
  3101. run(commandPrefix.."attach "..v.Name)
  3102. annplr = v
  3103. annoying = true
  3104. spinning = true
  3105. end
  3106. end
  3107. end
  3108.  
  3109. Commands.unspin = function(args)
  3110. if spinning then
  3111. annoying = false
  3112. spinning = false
  3113. end
  3114. run(""..commandPrefix.."unattach")
  3115. end
  3116.  
  3117. Commands.explorer = function(args)
  3118. loadstring(game:GetObjects("rbxassetid://418957341")[1].Source)()
  3119. Notification("info", "Loaded DEX explorer!", 5)
  3120. end
  3121.  
  3122. Commands.maxzoom = function(args)
  3123. if args[1] then
  3124. LP.CameraMaxZoomDistance = args[1]
  3125. end
  3126. end
  3127.  
  3128. Commands.stare = function(args)
  3129. if args[1] then
  3130. for i,v in pairs(findSinglePlayer(args[1])) do
  3131. stareplr = v
  3132. staring = true
  3133. end
  3134. end
  3135. end
  3136.  
  3137. Commands.unstare = function(args)
  3138. staring = false
  3139. end
  3140.  
  3141. Commands.tempgod = function(args)
  3142. local hu = LP.Character.Humanoid
  3143. local l = Instance.new("Humanoid")
  3144. l.Parent = LP.Character
  3145. l.Name = "Humanoid"
  3146. wait(0.1)
  3147. hu.Parent = LP
  3148. gsWorkspace.CurrentCamera.CameraSubject = LP.Character
  3149. LP.Character.Animate.Disabled = true
  3150. wait(0.1)
  3151. LP.Character.Animate.Disabled = false
  3152. Notification("info", "Enabled Temp FE Godmode", 4)
  3153. end
  3154.  
  3155. Commands.void = function(args)
  3156. if hasTools() == false then
  3157. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  3158. else
  3159. FEGodmode()
  3160. for i,v in pairs(LP.Backpack:GetChildren())do
  3161. LP.Character.Humanoid:EquipTool(v)
  3162. end
  3163. if args[1] then
  3164. for i,v in pairs(findSinglePlayer(args[1])) do
  3165. local NOW = LP.Character.HumanoidRootPart.CFrame
  3166. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  3167. wait(0.3)
  3168. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  3169. local function tp(player,player2)
  3170. local char1,char2=player.Character,player2.Character
  3171. if char1 and char2 then
  3172. char1:MoveTo(char2.Head.Position)
  3173. end
  3174. end
  3175. wait(0.5)
  3176. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(999999999999999,0,999999999999999))
  3177. end
  3178. end
  3179. end
  3180. end
  3181.  
  3182. Commands.freefall = function(args)
  3183. if hasTools() == false then
  3184. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  3185. else
  3186. FEGodmode()
  3187. for i,v in pairs(LP.Backpack:GetChildren())do
  3188. LP.Character.Humanoid:EquipTool(v)
  3189. end
  3190. if args[1] then
  3191. for i,v in pairs(findSinglePlayer(args[1])) do
  3192. local NOW = LP.Character.HumanoidRootPart.CFrame
  3193. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  3194. wait(0.3)
  3195. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  3196. wait(0.5)
  3197. LP.Character.HumanoidRootPart.CFrame = NOW
  3198. wait(0.5)
  3199. LP.Character.HumanoidRootPart.CFrame = NOW
  3200. wait(0.6)
  3201. LP.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
  3202. end
  3203. end
  3204. end
  3205. end
  3206.  
  3207. Commands.version = function(args)
  3208. Notification("info", "Current Shattervast Version: V2.8", 7)
  3209. end
  3210.  
  3211. Commands.shiftlockon = function(args)
  3212. LP.DevEnableMouseLock = true
  3213. Notification("info", "Shift lock enabled!", 5)
  3214. end
  3215.  
  3216. for i,needChat in pairs(gsPlayers:GetPlayers()) do
  3217. needChat.Chatted:Connect(function(msg)
  3218. if copychatall then
  3219. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All")
  3220. end
  3221. end)
  3222. end
  3223. gsPlayers.PlayerAdded:Connect(function(plr)
  3224. plr.Chatted:Connect(function(msg)
  3225. if copychatall then
  3226. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All")
  3227. end
  3228. end)
  3229. end)
  3230.  
  3231. copychatplayer = nil
  3232. copychatall = false
  3233. copychatACTIVE = false
  3234. Commands.copychat = function(args)
  3235. if args[1] then
  3236. if string.lower(args[1]) == "all" or string.lower(args[1]) == "others" then
  3237. copychatall = true
  3238. else
  3239. for i,v in pairs(findPlayer(args[1])) do
  3240. if v ~= LP then
  3241. copychatplayer = v
  3242. copychatACTIVE = true
  3243. end
  3244. end
  3245. end
  3246. end
  3247. end
  3248.  
  3249. Commands.uncopychat = function(args)
  3250. copychatall = false
  3251. copychatACTIVE = false
  3252. end
  3253.  
  3254. Commands.newkill = function(args)
  3255. if hasTools() == false then
  3256. Notification("warning", "You need TWO tools in your backpack/inventory to use this command.", 8)
  3257. else
  3258. if args[1] then
  3259. for i,plr in pairs(findSinglePlayer(args[1])) do
  3260. for i,v in pairs(LP.Backpack:GetChildren())do
  3261. LP.Character.Humanoid:EquipTool(v)
  3262. end
  3263. for i,v in pairs(LP.Backpack:GetDescendants()) do
  3264. if v:IsA("Tool") then
  3265. v.Parent = LP.Character
  3266. wait()
  3267. v.Parent = plr.Character
  3268. end
  3269. end
  3270. wait(0.4)
  3271. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(4000000, -10, 200000))
  3272. end
  3273. end
  3274. end
  3275. end
  3276.  
  3277. Commands.newattach = function(args)
  3278. if hasTools() == false then
  3279. Notification("warning", "You need TWO tools in your backpack/inventory to use this command.", 8)
  3280. else
  3281. if args[1] then
  3282. for i,plr in pairs(findSinglePlayer(args[1])) do
  3283. for i,v in pairs(LP.Backpack:GetChildren())do
  3284. LP.Character.Humanoid:EquipTool(v)
  3285. end
  3286. for i,v in pairs(LP.Backpack:GetDescendants()) do
  3287. if v:IsA("Tool") then
  3288. v.Parent = LP.Character
  3289. wait()
  3290. v.Parent = plr.Character
  3291. end
  3292. end
  3293. end
  3294. end
  3295. end
  3296. end
  3297.  
  3298. Commands.newbring = function(args)
  3299. if hasTools() == false then
  3300. Notification("warning", "You need TWO tools in your backpack/inventory to use this command.", 8)
  3301. else
  3302. if args[1] then
  3303. for i,plr in pairs(findSinglePlayer(args[1])) do
  3304. local NOW = LP.Character.HumanoidRootPart.CFrame
  3305. for i,v in pairs(LP.Backpack:GetChildren())do
  3306. LP.Character.Humanoid:EquipTool(v)
  3307. end
  3308. for i,v in pairs(LP.Backpack:GetDescendants()) do
  3309. if v:IsA("Tool") then
  3310. v.Parent = LP.Character
  3311. wait()
  3312. v.Parent = plr.Character
  3313. end
  3314. end
  3315. wait(0.4)
  3316. LP.Character.HumanoidRootPart.CFrame = NOW
  3317. wait(0.4)
  3318. LP.Character.HumanoidRootPart.CFrame = NOW
  3319. end
  3320. end
  3321. end
  3322. end
  3323.  
  3324. Commands.spawn = function(args)
  3325. if args[1] then
  3326. if string.lower(tostring(args[1])) == "ws" then
  3327. spawnWS = args[2] or CurrentWalkspeed
  3328. LP.Character.Humanoid.WalkSpeed = args[2] or CurrentWalkspeed
  3329. elseif string.lower(tostring(args[1])) == "jp" then
  3330. spawnJP = args[2] or CurrentJumppower
  3331. LP.Character.Humanoid.JumpPower = args[2] or CurrentJumppower
  3332. elseif string.lower(tostring(args[1])) == "hh" then
  3333. spawnHH = args[2] or CurrentHipheight
  3334. LP.Character.Humanoid.HipHeight = args[2] or CurrentHipheight
  3335. elseif string.lower(tostring(args[1])) == "god" then
  3336. spawningfegod = true
  3337. FEGodmode()
  3338. end
  3339. end
  3340. end
  3341.  
  3342. Commands.unspawn = function(args)
  3343. spawnWS = CurrentWalkspeed
  3344. spawnJP = CurrentJumppower
  3345. spawnHH = CurrentHipheight
  3346. spawningfegod = false
  3347. Notification("info", "Reset spawning stats", 5)
  3348. end
  3349.  
  3350. savingtoolsloop = false
  3351. Commands.autosavetool = function(args)
  3352. if args[1] then
  3353. if string.lower(tostring(args[1])) == "on" then
  3354. savingtoolsloop = true
  3355. elseif string.lower(tostring(args[1])) == "off" then
  3356. savingtoolsloop = false
  3357. end
  3358. end
  3359. end
  3360.  
  3361. modeFling = false
  3362. modeCompliment = false
  3363. modeMove = false
  3364. modeInfo = false
  3365. Commands.beginbot = function(args)
  3366. if not args[1] then
  3367. print("fling // compliment // move // info")
  3368. Notification("info", ""..commandPrefix.."beginbot Modes printed", 5)
  3369. else
  3370. if string.lower(tostring(args[1])) == "fling" then
  3371. modeFling = true
  3372. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Hello! I am Fling-Bot 5000! Say !fling [Player] to fling that player!", "All")
  3373. elseif string.lower(tostring(args[1])) == "compliment" then
  3374. modeCompliment = true
  3375. complimentReady = true
  3376. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Good day, I am Compliment-Bot. Say !c [Player] to give them a compliment.", "All")
  3377. elseif string.lower(tostring(args[1])) == "move" then
  3378. modeMove = true
  3379. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Hi, I am movement bot. Commands you can use: !walk [Player], !bringbot, !follow [Player].", "All")
  3380. elseif string.lower(tostring(args[1])) == "info" then
  3381. modeInfo = true
  3382. infoReady = true
  3383. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Hey, I'm Info-Bot. Commands you can use: !age [Player], !id [Player].", "All")
  3384. end
  3385. end
  3386. end
  3387.  
  3388. Commands.endbot = function(args)
  3389. if not args[1] then
  3390. modeFling = false
  3391. modeCompliment = false
  3392. modeMove = false
  3393. modeInfo = false
  3394. else
  3395. if string.lower(tostring(args[1])) == "fling" then
  3396. modeFling = false
  3397. elseif string.lower(tostring(args[1])) == "compliment" then
  3398. modeCompliment = false
  3399. elseif string.lower(tostring(args[1])) == "move" then
  3400. modeMove = false
  3401. elseif string.lower(tostring(args[1])) == "info" then
  3402. modeInfo = false
  3403. end
  3404. end
  3405. end
  3406.  
  3407. Commands.stopsit = function(args)
  3408. stopsitting = true
  3409. end
  3410.  
  3411. Commands.gosit = function(args)
  3412. stopsitting = false
  3413. end
  3414.  
  3415. chattingerror = true
  3416. Commands.chaterror = function(args)
  3417. if chattingerror then
  3418. chattingerror = false
  3419. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(" ", "All")
  3420. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(" ", "All")
  3421. wait(4)
  3422. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(" ", "All")
  3423. wait(3)
  3424. chattingerror = true
  3425. end
  3426. end
  3427.  
  3428. spawnpos = nil
  3429. spawningpos = true
  3430. Commands.spawnpoint = function(args)
  3431. spawnpos = LP.Character.HumanoidRootPart.CFrame
  3432. spawningpos = true
  3433. Notification("info", "Spawn point has been set! Use "..commandPrefix.."nospawn to remove.", 6)
  3434. end
  3435.  
  3436. Commands.nospawn = function(args)
  3437. spawningpos = false
  3438. Notification("info", "Spawn point has been removed. Use "..commandPrefix.."spawnpoint to enable.", 6)
  3439. end
  3440.  
  3441. Commands.bypass = function(args)
  3442. if args[1] then
  3443. if string.lower(tostring(args[1])) == "on" then
  3444. bypassMODE = true
  3445. Notification("warning", "Bypass mode turned on, this changes functions of "..commandPrefix.."fly and other commands to bypass most anti-exploits.", 7)
  3446. elseif string.lower(tostring(args[1])) == "off" then
  3447. bypassMODE = false
  3448. Notification("warning", "Bypass mode has been turned off.", 7)
  3449. end
  3450. end
  3451. end
  3452.  
  3453. Commands.fixcam = function(args)
  3454. gsWorkspace.CurrentCamera:Destroy()
  3455. wait(0.1)
  3456. game:GetService("Workspace").CurrentCamera.CameraSubject = LP.Character.Humanoid
  3457. game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
  3458. LP.CameraMinZoomDistance = 0.5
  3459. LP.CameraMaxZoomDistance = 400
  3460. LP.CameraMode = "Classic"
  3461. LP.DevCameraOcclusionMode = CurrentNormal
  3462. end
  3463.  
  3464. Commands.gotoobj = function(args)
  3465. if args[1] then
  3466. for i,v in pairs(gsWorkspace:GetDescendants()) do
  3467. if string.lower(v.Name) == string.lower(tostring(args[1])) then
  3468. LP.Character.HumanoidRootPart.CFrame = v.CFrame + Vector3.new(0, 3, 0)
  3469. end
  3470. end
  3471. end
  3472. end
  3473.  
  3474. Commands.breakcam = function(args)
  3475. gsWorkspace.CurrentCamera.CameraSubject = LP.Character.Head
  3476. end
  3477.  
  3478. Commands.inviscam = function(args)
  3479. LP.DevCameraOcclusionMode = "Invisicam"
  3480. end
  3481.  
  3482. printobjKEY = ""
  3483. printobjCLICKING = false
  3484. printobjACTIVE = false
  3485.  
  3486. Commands.printobj = function(args)
  3487. if args[1] then
  3488. printobjKEY = string.sub(tostring(args[1]), 1, 1)
  3489. printobjACTIVE = true
  3490. printobjCLICKING = false
  3491. else
  3492. printobjKEY = ""
  3493. printobjACTIVE = true
  3494. printobjCLICKING = true
  3495. end
  3496. end
  3497.  
  3498. Mouse.KeyDown:Connect(function(key)
  3499. if key == printobjKEY and printobjACTIVE == true then
  3500. if Mouse.Target then
  3501. local path = Mouse.Target:GetFullName()
  3502. local getPath = "game:GetService(\"Workspace\")"
  3503. local getSpaces = ""
  3504. local separate = {}
  3505. local a = nil
  3506. for v in string.gmatch(string.sub(path, 10), "[^.]+") do
  3507. if string.match(v, " ") then
  3508. a = "["..v.."]"
  3509. table.insert(separate, a)
  3510. else
  3511. a = "."..v
  3512. table.insert(separate, a)
  3513. end
  3514. getSpaces = table.concat(separate, "")
  3515. end
  3516. local fullPath = getPath..getSpaces
  3517. print(fullPath)
  3518. end
  3519. end
  3520. end)
  3521. Mouse.Button1Down:Connect(function()
  3522. if printobjCLICKING == true and printobjACTIVE == true then
  3523. if Mouse.Target then
  3524. local path = Mouse.Target:GetFullName()
  3525. local getPath = "game:GetService(\"Workspace\")"
  3526. local getSpaces = ""
  3527. local separate = {}
  3528. local a = nil
  3529. for v in string.gmatch(string.sub(path, 10), "[^.]+") do
  3530. if string.match(v, " ") then
  3531. a = "["..v.."]"
  3532. table.insert(separate, a)
  3533. else
  3534. a = "."..v
  3535. table.insert(separate, a)
  3536. end
  3537. getSpaces = table.concat(separate, "")
  3538. end
  3539. local fullPath = getPath..getSpaces
  3540. print(fullPath)
  3541. end
  3542. end
  3543. end)
  3544.  
  3545. Commands.unprintobj = function(args)
  3546. printobjACTIVE = false
  3547. printobjCLICKING = false
  3548. end
  3549.  
  3550. Commands.hotkeyfc = function(args)
  3551. if args[1] then
  3552. if string.lower(tostring(args[1])) == "goto" then
  3553. fchotkeymode = "goto"
  3554. elseif string.lower(tostring(args[1])) == "unfc" then
  3555. fchotkeymode = "unfc"
  3556. end
  3557. fullUpdate()
  3558. end
  3559. end
  3560.  
  3561. Commands.carpet = function(args)
  3562. if args[1] then
  3563. for i,v in pairs(findSinglePlayer(args[1])) do
  3564. if v ~= nil then
  3565. annoying = true
  3566. annplr = v
  3567. local carpetAnimation = Instance.new("Animation")
  3568. carpetAnimation.AnimationId = "rbxassetid://282574440"
  3569. carpetTrack = LP.Character.Humanoid:LoadAnimation(carpetAnimation)
  3570. carpetTrack:Play(.1, 1, 1)
  3571. end
  3572. end
  3573. end
  3574. end
  3575.  
  3576. Commands.uncarpet = function(args)
  3577. annoying = false
  3578. carpetTrack:Stop()
  3579. end
  3580.  
  3581. Commands.brickcreate = function(args)
  3582. if args[1] then
  3583. local createPosition = LP.Character.HumanoidRootPart.CFrame
  3584. if args[2] and args[3] and args[4] then
  3585. createPosition = CFrame.new(Vector3.new(args[2], args[3], args[4]))
  3586. else
  3587. createPosition = LP.Character.HumanoidRootPart.CFrame
  3588. end
  3589. for i = 1, args[1] do
  3590. LP.Character.HumanoidRootPart.CFrame = createPosition
  3591. run(commandPrefix.."blockhats")
  3592. wait(0.2)
  3593. run(commandPrefix.."drophats")
  3594. wait(0.2)
  3595. run(commandPrefix.."reset")
  3596. wait(6)
  3597. end
  3598. end
  3599. end
  3600.  
  3601. Commands.forward = function(args)
  3602. if args[1] then
  3603. forwardSpeed = args[1]
  3604. else
  3605. forwardSpeed = 1
  3606. end
  3607. cmdForward = true
  3608. end
  3609.  
  3610. Commands.unforward = function(args)
  3611. cmdForward = false
  3612. end
  3613.  
  3614. Commands.id = function(args)
  3615. if args[1] then
  3616. for i,v in pairs(findPlayer(args[1])) do
  3617. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v.Name.." Account ID: "..v.UserId.."!", "All")
  3618. end
  3619. end
  3620. end
  3621.  
  3622. Commands.spinhats = function(args) -- Credit to xFunnieuss
  3623. for i,v in pairs(LP.Character:GetDescendants()) do
  3624. if v:IsA("Accessory") or v:IsA("Hat") then
  3625. local keep = Instance.new("BodyPosition") keep.Parent = v.Handle keep.Name = "no"
  3626. local spin = Instance.new("BodyAngularVelocity") spin.Parent = v.Handle spin.Name = "ha"
  3627. if v.Handle.AccessoryWeld then
  3628. v.Handle.AccessoryWeld:Destroy()
  3629. end
  3630. if args[1] then
  3631. spin.AngularVelocity = Vector3.new(0, args[1], 0)
  3632. spin.MaxTorque = Vector3.new(0, args[1] * 2, 0)
  3633. else
  3634. spin.AngularVelocity = Vector3.new(0, 100, 0)
  3635. spin.MaxTorque = Vector3.new(0, 200, 0)
  3636. end
  3637. keep.P = 30000
  3638. keep.D = 50
  3639. spinObj = keep
  3640. spinTOhead = true
  3641. end
  3642. end
  3643. end
  3644.  
  3645. Commands.unspinhats = function(args)
  3646. for i,v in pairs(LP.Character:GetDescendants()) do
  3647. if v:IsA("Accessory") or v:IsA("Hat") then
  3648. pcall(function()
  3649. run(commandPrefix.."drophats")
  3650. wait(2)
  3651. v.Handle.spin:Destroy()
  3652. v.Handle.keep:Destroy()
  3653. end)
  3654. end
  3655. end
  3656. end
  3657.  
  3658. savedmap = {}
  3659. Commands.savemap = function(args)
  3660. for i,v in pairs(gsWorkspace:GetChildren()) do
  3661. v.Archivable = true
  3662. if not v:IsA("Terrain") and not v:IsA("Camera") then
  3663. if not gsPlayers:FindFirstChild(v.Name) then
  3664. table.insert(savedmap, v:Clone())
  3665. end
  3666. end
  3667. end
  3668. clientSided()
  3669. end
  3670.  
  3671. Commands.loadmap = function(args)
  3672. for i,v in pairs(gsWorkspace:GetChildren()) do
  3673. if not v:IsA("Terrain") and not v:IsA("Camera") then
  3674. if not gsPlayers:FindFirstChild(v.Name) then
  3675. pcall(function()
  3676. v:Destroy()
  3677. end)
  3678. end
  3679. end
  3680. end
  3681. for i,a in ipairs(savedmap) do
  3682. a:Clone().Parent = gsWorkspace
  3683. end
  3684. clientSided()
  3685. end
  3686.  
  3687. Commands.creatorid = function(args)
  3688. LP.UserId = game.CreatorId
  3689. end
  3690.  
  3691. Commands.gameid = function(args)
  3692. Notification("info", "Current game's ID = "..game.GameId, 8)
  3693. end
  3694.  
  3695. Commands.delobj = function(args)
  3696. if args[1] then
  3697. for i,v in pairs(gsWorkspace:GetDescendants()) do
  3698. if string.lower(v.Name) == string.lower(tostring(args[1])) then
  3699. v:Destroy()
  3700. clientSided()
  3701. end
  3702. end
  3703. end
  3704. end
  3705.  
  3706. Commands.glide = function(args)
  3707. if args[1] then
  3708. for i,v in pairs(findSinglePlayer(args[1])) do
  3709. local goal = {}
  3710. goal.CFrame = v.Character.HumanoidRootPart.CFrame
  3711. local defaultSpeed = 3
  3712. if args[2] then
  3713. if tonumber(args[2]) < 10 then
  3714. defaultSpeed = tonumber(args[2])
  3715. else
  3716. defaultSpeed = 5
  3717. end
  3718. else
  3719. defaultSpeed = 3
  3720. end
  3721. local goalFunction = gsTween:Create(LP.Character.HumanoidRootPart, TweenInfo.new(defaultSpeed, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), goal)
  3722. goalFunction:Play()
  3723. end
  3724. end
  3725. end
  3726.  
  3727. stutterON = false
  3728. Commands.stutter = function(args)
  3729. if args[1] then
  3730. if string.lower(tostring(args[1])) == "on" then
  3731. stutterON = true
  3732. elseif string.lower(tostring(args[1])) == "off" then
  3733. stutterON = false
  3734. wait(0.4)
  3735. LP.Character.HumanoidRootPart.Anchored = false
  3736. end
  3737. end
  3738. end
  3739.  
  3740. spawn(function()
  3741. while wait(0.1) do
  3742. if stutterON == true then
  3743. LP.Character.HumanoidRootPart.Anchored = false
  3744. wait(0.1)
  3745. LP.Character.HumanoidRootPart.Anchored = true
  3746. end
  3747. end
  3748. end)
  3749.  
  3750. Commands.platform = function(args)
  3751. local a = Instance.new("Part")
  3752. a.Parent = gsWorkspace
  3753. a.Size = Vector3.new(10, 1, 10)
  3754. a.Anchored = true
  3755. a.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 5, 0)
  3756. LP.Character.HumanoidRootPart.CFrame = a.CFrame + Vector3.new(0, 2, 0)
  3757. clientSided()
  3758. wait(20)
  3759. a:Destroy()
  3760. end
  3761.  
  3762. Commands.servertime = function(args)
  3763. Notification("info", "Server time is "..math.ceil(tonumber(gsWorkspace.DistributedGameTime)).." seconds.", 8)
  3764. end
  3765.  
  3766. Commands.ride = function(args)
  3767. if args[1] then
  3768. for i,v in pairs(findSinglePlayer(args[1])) do
  3769. local Anim = Instance.new("Animation")
  3770. Anim.AnimationId = "rbxassetid://179224234"
  3771. RIDEtrack = LP.Character.Humanoid:LoadAnimation(Anim)
  3772. rideACTIVE = true
  3773. ridePLAYER = v
  3774. RIDEtrack:Play()
  3775. end
  3776. end
  3777. end
  3778.  
  3779. Commands.unride = function(args)
  3780. RIDEtrack:Stop()
  3781. rideACTIVE = false
  3782. end
  3783.  
  3784. Commands.cmute = function(args)
  3785. if args[1] then
  3786. for i,v in pairs(findSinglePlayer(args[1])) do
  3787. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/mute "..v.Name, "All")
  3788. clientSided()
  3789. end
  3790. end
  3791. end
  3792.  
  3793. Commands.uncmute = function(args)
  3794. if args[1] then
  3795. for i,v in pairs(findSinglePlayer(args[1])) do
  3796. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/unmute "..v.Name, "All")
  3797. end
  3798. end
  3799. end
  3800.  
  3801. Commands.hat = function(args)
  3802. if args[1] then
  3803. for i,v in pairs(findSinglePlayer(args[1])) do
  3804. local Anim = Instance.new("Animation")
  3805. Anim.AnimationId = "rbxassetid://282574440"
  3806. HATtrack = LP.Character.Humanoid:LoadAnimation(Anim)
  3807. rideACTIVE = true
  3808. ridePLAYER = v
  3809. HATtrack:Play()
  3810. view(v)
  3811. end
  3812. end
  3813. end
  3814.  
  3815. Commands.unhat = function(args)
  3816. HATtrack:Stop()
  3817. rideACTIVE = false
  3818. view(LP)
  3819. end
  3820.  
  3821. --[[Commands.spawnreset = function(args)
  3822. if args[1] then
  3823. if string.lower(tostring(args[1])) == "on" then
  3824. spawningatreset = true
  3825. elseif string.lower(tostring(args[1])) == "off" then
  3826. spawningatreset = false
  3827. end
  3828. end
  3829. end]]
  3830.  
  3831. Commands.chat = function(args)
  3832. if args[1] then
  3833. local Chatmsg = table.concat(args, " ")
  3834. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(Chatmsg, "All")
  3835. end
  3836. end
  3837.  
  3838. -- findPlayer function (ALL, OTHERS, ME, NOOBS, VETERANS, OLDVETERANS, FRIENDS, NOFRIENDS, DEFAULT, RANDOM, SAMETEAM, NOTEAM, OTHERTEAM, TEAMname)
  3839. function findPlayer(plr)
  3840. local players = {}
  3841. local find = plr:lower()
  3842. local getAllNames = getmultipleplayers(find)
  3843. for i,mplr in pairs(getAllNames) do
  3844. if mplr == "all" then
  3845. for i,v in pairs(gsPlayers:GetPlayers()) do
  3846. table.insert(players,v)
  3847. end
  3848. elseif mplr == "others" then
  3849. for i,v in pairs(gsPlayers:GetPlayers()) do
  3850. if v.Name ~= LP.Name then
  3851. table.insert(players,v)
  3852. end
  3853. end
  3854. elseif mplr == "me" then
  3855. table.insert(players,LP)
  3856. elseif mplr == "noobs" then
  3857. for i,v in pairs(gsPlayers:GetPlayers()) do
  3858. if v.AccountAge <= 3 then
  3859. table.insert(players,v)
  3860. end
  3861. end
  3862. elseif mplr == "veterans" then
  3863. for i,v in pairs(gsPlayers:GetPlayers()) do
  3864. if v.AccountAge >= 365 then
  3865. table.insert(players,v)
  3866. end
  3867. end
  3868. elseif mplr == "oldveterans" then
  3869. for i,v in pairs(gsPlayers:GetPlayers()) do
  3870. if v.AccountAge >= 1500 then
  3871. table.insert(players,v)
  3872. end
  3873. end
  3874. elseif mplr == "friends" then
  3875. for i,v in pairs(gsPlayers:GetPlayers()) do
  3876. if v:IsFriendsWith(LP.UserId) and v.Name ~= LP.Name then
  3877. table.insert(players,v)
  3878. end
  3879. end
  3880. elseif mplr == "nofriends" then
  3881. for i,v in pairs(gsPlayers:GetPlayers()) do
  3882. if not v:IsFriendsWith(LP.UserId) and v.Name ~= LP.Name then
  3883. table.insert(players,v)
  3884. end
  3885. end
  3886. elseif mplr == "default" then
  3887. for i,v in pairs(gsPlayers:GetPlayers()) do
  3888. if v.Character:FindFirstChild("Pal Hair") or v.Character:FindFirstChild("Kate Hair") then
  3889. table.insert(players,v)
  3890. end
  3891. end
  3892. elseif mplr == "random" then
  3893. for i,v in pairs(gsPlayers:GetPlayers()) do
  3894. table.insert(players,v[math.random(1, #v)])
  3895. end
  3896. elseif mplr == "sameteam" then
  3897. for i,v in pairs(gsPlayers:GetPlayers()) do
  3898. if v.Team == LP.Team then
  3899. table.insert(players,v)
  3900. end
  3901. end
  3902. elseif mplr == "noteam" then
  3903. for i,v in pairs(gsPlayers:GetPlayers()) do
  3904. if v.Team == nil then
  3905. table.insert(players,v)
  3906. end
  3907. end
  3908. elseif mplr == "otherteam" then
  3909. for i,v in pairs(gsPlayers:GetPlayers()) do
  3910. if v.Team ~= LP.Team then
  3911. table.insert(players,v)
  3912. end
  3913. end
  3914. elseif string.sub(mplr, 1, 4) == "team" then
  3915. for i,v in pairs(gsPlayers:GetPlayers()) do
  3916. local spaceTEAM = {}
  3917. for teamValues in (string.gmatch(string.sub(mplr, 5), "[^_]+")) do
  3918. spaceTEAM[#spaceTEAM + 1] = teamValues
  3919. end
  3920. local gottrueteam = table.concat(spaceTEAM, " ")
  3921. if string.lower(tostring(v.Team)) == string.lower(gottrueteam) then
  3922. table.insert(players,v)
  3923. end
  3924. end
  3925. else
  3926. for i,v in pairs(gsPlayers:GetPlayers()) do
  3927. if string.lower(v.Name):sub(1, #mplr) == string.lower(mplr) then
  3928. table.insert(players,v)
  3929. end
  3930. end
  3931. end
  3932. end
  3933.  
  3934. return players
  3935. end
  3936. function getmultipleplayers(plr)
  3937. local plrsgotten = {}
  3938. for i in string.gmatch(plr,"[^,]+") do
  3939. table.insert(plrsgotten,i)
  3940. end
  3941. return plrsgotten
  3942. end
  3943. function findSinglePlayer(plr)
  3944. local players = {}
  3945. local find = plr:lower()
  3946. if find == "me" then
  3947. table.insert(players,LP)
  3948. else
  3949. for i,v in pairs(gsPlayers:GetPlayers()) do
  3950. if string.lower(v.Name):sub(1, #find) == string.lower(find) then
  3951. table.insert(players,v)
  3952. end
  3953. end
  3954. end
  3955. local oneplayer = {}
  3956. pcall(function()
  3957. table.insert(oneplayer, players[math.random(1, #players)])
  3958. end)
  3959. return oneplayer
  3960. end
  3961.  
  3962. -- Anti Kick
  3963.  
  3964. if getrawmetatable then
  3965. function formatargs(getArgs,v)
  3966. if #getArgs == 0 then
  3967. return ""
  3968. end
  3969.  
  3970. local collectArgs = {}
  3971. for k,v in next,getArgs do
  3972. local argument = ""
  3973. if type(v) == "string" then
  3974. argument = "\""..v.."\""
  3975. elseif type(v) == "table" then
  3976. argument = "{" .. formatargs(v,true) .. "}"
  3977. else
  3978. argument = tostring(v)
  3979. end
  3980. if v and type(k) ~= "number" then
  3981. table.insert(collectArgs,k.."="..argument)
  3982. else
  3983. table.insert(collectArgs,argument)
  3984. end
  3985. end
  3986. return table.concat(collectArgs, ", ")
  3987. end
  3988.  
  3989. kicknum = 0
  3990. local game_meta = getrawmetatable(game)
  3991. local game_namecall = game_meta.__namecall
  3992. local game_index = game_meta.__index
  3993. local w = (setreadonly or fullaccess or make_writeable)
  3994. pcall(w, game_meta, false)
  3995. game_meta.__namecall = function(out, ...)
  3996. local args = {...}
  3997. local Method = args[#args]
  3998. args[#args] = nil
  3999.  
  4000. if Method == "Kick" and out == LP then
  4001. kicknum = kicknum + 1
  4002. warn("Blocked client-kick attempt "..kicknum)
  4003. return
  4004. end
  4005.  
  4006. if antiremotes then
  4007. if Method == "FireServer" or Method == "InvokeServer" then
  4008. if out.Name ~= "CharacterSoundEvent" and out.Name ~= "SayMessageRequest" and out.Name ~= "AddCharacterLoadedEvent" and out.Name ~= "RemoveCharacterEvent" and out.Name ~= "DefaultServerSoundEvent" and out.Parent ~= "DefaultChatSystemChatEvents" then
  4009. warn("Blocked remote: "..out.Name.." // Method: "..Method)
  4010. return
  4011. end
  4012. end
  4013. else
  4014. if Method == "FireServer" or Method == "InvokeServer" then
  4015. for i,noremote in pairs(blockedremotes) do
  4016. if out.Name == noremote and out.Name ~= "SayMessageRequest" then
  4017. warn("Blocked remote: "..out.Name.." // Method: "..Method)
  4018. return
  4019. end
  4020. end
  4021. end
  4022. end
  4023.  
  4024. if spyingremotes then
  4025. if Method == "FireServer" or Method == "InvokeServer" then
  4026. if out.Name ~= "CharacterSoundEvent" and out.Name ~= "AddCharacterLoadedEvent" and out.Name ~= "RemoveCharacterEvent" and out.Name ~= "DefaultServerSoundEvent" and out.Name ~= "SayMessageRequest" then
  4027. local arguments = {}
  4028. for i = 1,#args do
  4029. arguments[i] = args[i]
  4030. end
  4031. local getScript = getfenv(2).script
  4032. if getScript == nil then
  4033. getScript = "??? (Not Found) ???"
  4034. end
  4035. warn("<> <> <> A "..out.ClassName.." has been fired! How to fire:\ngame."..out:GetFullName()..":"..Method.."("..formatargs(arguments)..")\n\nFired from script: ".. tostring(getScript:GetFullName()))
  4036. end
  4037. end
  4038. end
  4039.  
  4040. return game_namecall(out, ...)
  4041. end
  4042. end
  4043.  
  4044. -- FE Check
  4045. function FEcheckDefault()
  4046. if gsWorkspace.FilteringEnabled == true then
  4047. createIntro("warning", "FE is enabled! Press "..commandPrefix.." to bring Command Bar.", 7)
  4048. else
  4049. createIntro("warning", "FE is disabled. Consider using a different script.", 7)
  4050. end
  4051. end
  4052. FEcheckDefault()
  4053. end)
  4054.  
  4055. RoseGUI.Name = "Rose GUI"
  4056. RoseGUI.Parent = Main
  4057. RoseGUI.BackgroundColor3 = Color3.new(1, 1, 0.498039)
  4058. RoseGUI.Position = UDim2.new(0.234739512, 0, 0.398378313, 0)
  4059. RoseGUI.Size = UDim2.new(0, 200, 0, 50)
  4060. RoseGUI.Font = Enum.Font.SourceSans
  4061. RoseGUI.Text = "Rose GUI"
  4062. RoseGUI.TextColor3 = Color3.new(0, 0, 0)
  4063. RoseGUI.TextSize = 40
  4064. RoseGUI.MouseButton1Down:connect(function()
  4065. --local coreGui = game:GetService("Players").LocalPlayer.PlayerGui
  4066. local coreGui = game:GetService("CoreGui")
  4067. local tweening = false
  4068. local tabPos = 5
  4069. local scriptsTabText = ""
  4070. local feTabText = ""
  4071. local gameScriptsTabText = ""
  4072. local guiTabText = ""
  4073.  
  4074. local scripttabList = {
  4075. {"Infinite Yield", "MjBzRjmT", 1},
  4076. {"Knife V3", "W833RBFr", 1},
  4077. {"Bird Wings", "RQ9b8UTv", 1},
  4078. {"M4A1", "eP1zq8tb", 1},
  4079. {"Dungun", "90M7Mi8e", 1},
  4080. {"Bomb Vest", "tG1PPuMd", 1},
  4081. {"Music Bars", "SvYebC2r", 1},
  4082. {"Omni God", "87NeeChc", 1},
  4083. {"Pain Titan", "Hg5L8EtM", 1,},
  4084. {"Reaper Titan", "B0q3QBg6", 1},
  4085. {"Alter Chat", "ZSB4pN9R", 1},
  4086. {"Hoverbike", 01268225564, 2},
  4087. {"Rail Gun Titan", "0wFiFdwM", 1},
  4088. {"True Hero", "P8AQ2ebJ", 1},
  4089. {"Celestial Wheel", "bymTcgzf", 1},
  4090. {"Knive V4", "j0Ns1w1S", 1},
  4091. {"Ravenger Claws", "D7GxxvWL", 1},
  4092. {"John Doe", "m5wHsLhr", 1},
  4093. {"Messor Titan", "4bSrkLtA", 1},
  4094. {"Clown Titan", "L0WLDZvc", 1},
  4095. {"Chara", "HrWjgXtb", 1},
  4096. {"Shedlesky Rage", "2SPz35LS", 1},
  4097. {"LunchaThug", "x6GWFC5K", 1},
  4098. {"Nazi Flag", "ZCZNxFBD", 1},
  4099. {"Psychopath", "DGqk3bqY", 1},
  4100. {"Fireworks Wand", "GB29NAPv", 1},
  4101. {"Psycho Clown", "UgxKqKwE", 1},
  4102. {"Inferno", "qhMGk36S", 1},
  4103. {"Police Titan", "UCmufLU8", 1},
  4104. {"Galaxy Titan", "nKNdCrKj", 1},
  4105. {"Holy Wrench", "cKSh0a8C", 1},
  4106. {"Krystal Dance", "j7EqLfbP", 1},
  4107. {"Pee", "3CYmA0Pz", 1},
  4108. {"Jihad", "vSujnuaF", 1},
  4109. {"Hermit Purple", "R3C3ajQV", 1},
  4110. {"Golden Gun", "2574Sd9E", 1},
  4111. {"Goku", "yAXZZF9r", 1},
  4112. {"Emoji", "vKPcMKnm", 1},
  4113. {"Damn Son", "AMLHT8aJ", 1},
  4114. {"Devuzi", "q0mt2peM", 1},
  4115. {"Flash", "gGSVVq1H", 1},
  4116. {"Teal Scythe", "0TUBSaxt", 1},
  4117. {"Demon Demise", "ghMDMW63", 1},
  4118. {"Red Sayan", "uC5DBvf9", 1},
  4119. {"Ban Hammer", "1ynQ4Mu0", 1},
  4120. {"Dick Gun", "UR9FBjcj", 1},
  4121. {"Dat Boi", "Sz7KJHay", 1},
  4122. {"Watermelon Trap", "pypsM3hj", 1},
  4123. {"Whip", "XDsek3Rf", 1},
  4124. {"School Shooter", "EmmwRFDA", 1},
  4125. {"9/11", "3UmV26hG", 1},
  4126. {"Bong", "8Kb08E9s", 1},
  4127. {"Horse", "MVph7nmq", 1},
  4128. {"Scythe", "fEEVkJba", 1},
  4129. {"Disco Fog", "xg8d4PS0", 1},
  4130. {"Disco Mesh", "GvtPCRVR", 1},
  4131. {"Russian Dance", "RADQ2vH8", 1},
  4132. {"Sun God", "0uJhLJ5m", 1},
  4133. {"Rolling Light Ball", "S4Hj3MPd", 1},
  4134. {"Red Death Scythe", "KJ5nqeVF", 1},
  4135. {"Crystal Pistols", "GDLZ4VAq", 1},
  4136. {"Epic Sword", "DZVV9AGG", 1},
  4137. {"Circle Visualizer", "diJiteen", 1},
  4138. {"Hex Blade", "fA0bBELV", 1},
  4139. {"Bulldog", "nPPLxSA3", 1},
  4140. {"FS-627-SENDER", "R3m4gfuP", 1},
  4141. {"Voodoo Child", "w5TEtd0Q", 1},
  4142. {"Bye Bye", "XBysEMgg", 1},
  4143. {"Galil V2", "cnFz3h8D", 1},
  4144. {"Mario", "pKmtnc9u", 1},
  4145. {"Lighting Blade", "rMEe8R4N", 1},
  4146. {"Flamingo Skybox", "8rWM880e", 1},
  4147. {"Sin Unleashed", "ZQh5B023", 1},
  4148. {"Ravager", "VQEz6a6i", 1},
  4149. {"Brock", "Fe5YrxcY", 1},
  4150. {"M249", "J4ijx897", 1},
  4151. {"MG36", "zLZ4Auqn", 1},
  4152. {"Omega Scythe", "Ag8dKZYB", 1},
  4153. {"Omega Sword", "7JjxwhPn", 1},
  4154. }
  4155.  
  4156. local fescripttabList = {
  4157. {"Fe God", "KduGECH6", 1},
  4158. {"Fe Fly", 1281055032, 2},
  4159. {"Fe Invisible", 1180480887, 2},
  4160. {"Spam", "74GjB7tB", 1},
  4161. {"Lag Switch", "58gjTUf5", 1},
  4162. {"FE Shutdown", "0wgKhFmf", 1},
  4163. }
  4164.  
  4165. local gameScriptsList = {
  4166. {"PF Virgo 2.0", "7TeJszah", 1},
  4167. {"City Life Bomb Vest", "sLHGSBn1", 1},
  4168. {"City Life Suicide", "YdKKQ7yT", 1},
  4169. {"City Life Explosion", "vy78mqrG", 1},
  4170. {"CB:RO Aimbot", "t3yHg06t", 1},
  4171. }
  4172.  
  4173. local guitabList = {
  4174. {"c00lgui", "Rz2EFsLU", 1},
  4175. {"Topkek 4.0", "d0CJRrcg", 1},
  4176. {"Topkek 3.0", "SikGfE9u", 1},
  4177. {"Ro-Xploit 4.0", 175137115, 2},
  4178. {"Ro-Xploit 5.0", 288646117, 2},
  4179. {"Ro-Xploit 6.0", 364364477, 2},
  4180. {"Dex 3.0", 492005721, 2},
  4181. {"Clown Van", "a5UZuuiT", 1},
  4182. {"Hell Elevator GUI", "8NYWpf2T", 1},
  4183. {"Chams / Aimlock", "Yi7fzELj", 1},
  4184. {"YourMom GUI", "289110135", 2},
  4185. {"Pepe GUI", "277881926", 2},
  4186. {"Brack Hub", "PT9Gf7d5", 2},
  4187. }
  4188.  
  4189. local mapsList = {
  4190. {"Clockwork Arena", "EvnXCXhP", 1},
  4191. {"Town Map", 1345094164, 2},
  4192. {"Cave Island", "t29C42rm", 1},
  4193. {"Nature Map", "gmF4Kq5B", 1},
  4194. {"Nazi Map", "az8sLCLT", 1},
  4195. {"Ritual Room", "hYCTFiAC", 1},
  4196. {"Stripper", "jztW5Vuy", 1},
  4197. {"Witch Map", "R9epW292", 1},
  4198. {"Rainbow Tunnel", "8bznLitn", 1},
  4199. {"Scary Map", "fNw46f74", 1},
  4200. {"Nazi Camp", "KJNk4STm", 1},
  4201. {"Night Club", 1281063730, 2},
  4202. }
  4203.  
  4204. local lists = {
  4205. {scripttabList, "Scripts"},
  4206. {fescripttabList, "FE Scripts"},
  4207. {gameScriptsList, "Game Scripts"},
  4208. {guitabList, "GUIs"},
  4209. {mapsList, "Maps"},
  4210. }
  4211.  
  4212. local function makeFrame(Active, BackgroundColor3, BorderSizePixel, Name, Parent, Position, Size, ClipsDescendants, Draggable, BackgroundTransparency)
  4213. local Frame = Instance.new("Frame")
  4214. Frame.Active = Active
  4215. Frame.BackgroundColor3 = BackgroundColor3
  4216. Frame.BorderSizePixel = BorderSizePixel
  4217. Frame.Name = Name
  4218. Frame.Parent = Parent
  4219. Frame.Position = Position
  4220. Frame.Size = Size
  4221. Frame.ClipsDescendants = ClipsDescendants
  4222. Frame.Draggable = Draggable
  4223. Frame.BackgroundTransparency = BackgroundTransparency
  4224. end
  4225.  
  4226. local function makeScrollingFrame(BackgroundColor3, BorderSizePixel, Name, Parent, Position, Size, CanvasSize, BackgroundTransparency, ScrollBarThickness)
  4227. local ScrollingFrame = Instance.new("ScrollingFrame")
  4228. ScrollingFrame.BackgroundColor3 = BackgroundColor3
  4229. ScrollingFrame.BorderSizePixel = BorderSizePixel
  4230. ScrollingFrame.Name = Name
  4231. ScrollingFrame.Parent = Parent
  4232. ScrollingFrame.Position = Position
  4233. ScrollingFrame.Size = Size
  4234. ScrollingFrame.CanvasSize = CanvasSize
  4235. ScrollingFrame.BackgroundTransparency = BackgroundTransparency
  4236. ScrollingFrame.ScrollBarThickness = ScrollBarThickness
  4237. end
  4238.  
  4239. local function makeTextLabel(BackgroundColor3, BackgroundTransparency, Name, Parent, Position, Size, Font, Text, TextColor3, TextSize, BorderSizePixel, TextWrapped)
  4240. local TextLabel = Instance.new("TextLabel")
  4241. TextLabel.BackgroundColor3 = BackgroundColor3
  4242. TextLabel.BackgroundTransparency = BackgroundTransparency
  4243. TextLabel.Name = Name
  4244. TextLabel.Parent = Parent
  4245. TextLabel.Position = Position
  4246. TextLabel.Size = Size
  4247. TextLabel.Font = Font
  4248. TextLabel.Text = Text
  4249. TextLabel.TextColor3 = TextColor3
  4250. TextLabel.TextSize = TextSize
  4251. TextLabel.BorderSizePixel = BorderSizePixel
  4252. TextLabel.TextWrapped = TextWrapped
  4253. end
  4254.  
  4255. local function makeTextBox(BackgroundColor3, BackgroundTransparency, MultiLine, Name, Parent, Position, Size, Font, Text, TextColor3, TextSize, TextWrapped, TextYAlignment, BorderSizePixel, PlaceholderText, TextXAlignment)
  4256. local TextBox = Instance.new("TextBox")
  4257. TextBox.BackgroundColor3 = BackgroundColor3
  4258. TextBox.BackgroundTransparency = BackgroundTransparency
  4259. TextBox.MultiLine = MultiLine
  4260. TextBox.Name = Name
  4261. TextBox.Parent = Parent
  4262. TextBox.Position = Position
  4263. TextBox.Size = Size
  4264. TextBox.Font = Font
  4265. TextBox.Text = Text
  4266. TextBox.TextColor3 = TextColor3
  4267. TextBox.TextSize = TextSize
  4268. TextBox.TextWrapped = TextWrapped
  4269. TextBox.TextYAlignment = TextYAlignment
  4270. TextBox.BorderSizePixel = BorderSizePixel
  4271. TextBox.PlaceholderText = PlaceholderText
  4272. TextBox.TextXAlignment = TextXAlignment
  4273. end
  4274.  
  4275. local function makeTextButton(BackgroundColor3, BorderSizePixel, Name, Parent, Position, Size, Font, Text, TextColor3, TextSize, BackgroundTransparency, func)
  4276. local TextButton = Instance.new("TextButton")
  4277. TextButton.BackgroundColor3 = BackgroundColor3
  4278. TextButton.BorderSizePixel = BorderSizePixel
  4279. TextButton.Name = Name
  4280. TextButton.Parent = Parent
  4281. TextButton.Position = Position
  4282. TextButton.Size = Size
  4283. TextButton.Font = Font
  4284. TextButton.Text = Text
  4285. TextButton.TextColor3 = TextColor3
  4286. TextButton.TextSize = TextSize
  4287. TextButton.BackgroundTransparency = BackgroundTransparency
  4288. TextButton.MouseButton1Down:connect(func)
  4289. end
  4290.  
  4291. local function makeImageLabel(BackgroundColor3, BackgroundTransparency, BorderSizePixel, Name, Parent, Selectable, Size, Image, Position, Rotation)
  4292. local ImageLabel = Instance.new("ImageLabel")
  4293. ImageLabel.BackgroundColor3 = BackgroundColor3
  4294. ImageLabel.BackgroundTransparency = BackgroundTransparency
  4295. ImageLabel.BorderSizePixel = BorderSizePixel
  4296. ImageLabel.Name = Name
  4297. ImageLabel.Parent = Parent
  4298. ImageLabel.Selectable = Selectable
  4299. ImageLabel.Size = Size
  4300. ImageLabel.Image = Image
  4301. ImageLabel.Position = Position
  4302. ImageLabel.Rotation = Rotation
  4303. end
  4304.  
  4305. local tabs = {
  4306. "Home",
  4307. "Scripts",
  4308. "FE Scripts",
  4309. "Game Scripts",
  4310. "GUIs",
  4311. "Maps",
  4312. "Executor",
  4313. "Credits",
  4314. }
  4315.  
  4316. local selectedTab = tabs[1]
  4317.  
  4318. local function changeTab(newTab)
  4319. if tweening == false and newTab ~= selectedTab then
  4320. tweening = true
  4321. if selectedTab == "Credits" then
  4322. for _,object in pairs(screenGui.MainFrame.MainStuff.Credits:GetDescendants()) do
  4323. if object.ClassName == "ImageLabel" then
  4324. local sTween = game:GetService("TweenService")
  4325. local part = object
  4326. local goal = {}
  4327. goal.ImageTransparency = 1
  4328. local tweenInfo = TweenInfo.new(0.5)
  4329. local tween = sTween:Create(part, tweenInfo, goal)
  4330. tween:Play()
  4331. end
  4332. end
  4333. wait(0.5)
  4334. end
  4335. screenGui.MainFrame.MainStuff[selectedTab]:TweenPosition(UDim2.new(-1, 0, 0, 0), "Out", "Quad", 0.5)
  4336. screenGui.MainFrame.MainStuff[newTab]:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Quad", 0.5)
  4337. screenGui.MainFrame.SelectedTab.SelectedTab:TweenPosition(UDim2.new(0, 0, -1, 0), "Out", "Quad", 0.25)
  4338. wait(0.25)
  4339. screenGui.MainFrame.SelectedTab.SelectedTab.Text = newTab
  4340. wait()
  4341. screenGui.MainFrame.SelectedTab.SelectedTab:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Quad", 0.25)
  4342. wait(0.25)
  4343. screenGui.MainFrame.MainStuff[selectedTab].Position = UDim2.new(1, 0, 0, 0)
  4344. if newTab == "Credits" then
  4345. for _,object in pairs(screenGui.MainFrame.MainStuff.Credits:GetDescendants()) do
  4346. if object.ClassName == "ImageLabel" then
  4347. local sTween = game:GetService("TweenService")
  4348. local part = object
  4349. local goal = {}
  4350. goal.ImageTransparency = 0
  4351. local tweenInfo = TweenInfo.new(0.5)
  4352. local tween = sTween:Create(part, tweenInfo, goal)
  4353. tween:Play()
  4354. end
  4355. end
  4356. wait(0.5)
  4357. end
  4358. selectedTab = newTab
  4359. tweening = false
  4360. end
  4361. end
  4362.  
  4363. local function mainTween(what)
  4364. if tweening == false then
  4365. tweening = true
  4366. if what == "Open" then
  4367. screenGui.open:TweenPosition(UDim2.new(-1,0,0.531,0), "Out", "Quad", 0.6)
  4368. screenGui.MainFrame:TweenSize(UDim2.new(0, 350, 0, 40), "Out", "Quad", 0.6)
  4369. wait(0.6)
  4370. screenGui.MainFrame:TweenSize(UDim2.new(0, 350, 0, 340), "Out", "Quad", 0.6)
  4371. if selectedTab == "Credits" then
  4372. wait(0.6)
  4373. for _,object in pairs(screenGui.MainFrame.MainStuff.Credits:GetDescendants()) do
  4374. if object.ClassName == "ImageLabel" then
  4375. local sTween = game:GetService("TweenService")
  4376. local part = object
  4377. local goal = {}
  4378. goal.ImageTransparency = 0
  4379. local tweenInfo = TweenInfo.new(0.5)
  4380. local tween = sTween:Create(part, tweenInfo, goal)
  4381. tween:Play()
  4382. end
  4383. end
  4384. wait(0.5)
  4385. end
  4386. elseif what == "Close" then
  4387. if selectedTab == "Credits" then
  4388. for _,object in pairs(screenGui.MainFrame.MainStuff.Credits:GetDescendants()) do
  4389. if object.ClassName == "ImageLabel" then
  4390. local sTween = game:GetService("TweenService")
  4391. local part = object
  4392. local goal = {}
  4393. goal.ImageTransparency = 1
  4394. local tweenInfo = TweenInfo.new(0.5)
  4395. local tween = sTween:Create(part, tweenInfo, goal)
  4396. tween:Play()
  4397. end
  4398. end
  4399. wait(0.5)
  4400. end
  4401. screenGui.MainFrame:TweenSize(UDim2.new(0, 350, 0, 40), "Out", "Quad", 0.6)
  4402. wait(0.6)
  4403. screenGui.MainFrame:TweenSize(UDim2.new(0, 0, 0, 40), "Out", "Quad", 0.6)
  4404. screenGui.open:TweenPosition(UDim2.new(0,0,0.531,0), "Out", "Quad", 0.6)
  4405. end
  4406. if selectedTab ~= "Credits" then
  4407. wait(0.6)
  4408. end
  4409. tweening = false
  4410. end
  4411. end
  4412.  
  4413. --Make Screen
  4414. screenGui = Instance.new("ScreenGui")
  4415. screenGui.Parent = coreGui
  4416. screenGui.Name = "RoseHubV2"
  4417.  
  4418. makeFrame(true, Color3.fromRGB(255, 35, 110), 0, "MainFrame", screenGui, UDim2.new(0.5, -175, 0.5, -170), UDim2.new(0, 350, 0, 340), true, true, 0)
  4419.  
  4420. makeScrollingFrame(Color3.fromRGB(255, 0, 100), 0, "TabButtons", screenGui.MainFrame, UDim2.new(0, 0, 0, 40), UDim2.new(0, 125, 1, -40), UDim2.new(0, 0, 0, 0), 0, 12)
  4421.  
  4422. makeFrame(false, Color3.fromRGB(225, 0, 100), 0, "TitleFrame", screenGui.MainFrame, UDim2.new(0, 0, 0, 0), UDim2.new(1, 0, 0, 40), true, false, 0)
  4423.  
  4424. makeTextLabel(Color3.fromRGB(255, 255, 255), 1, "Title", screenGui.MainFrame.TitleFrame, UDim2.new(0, 45, 0, 0), UDim2.new(0, 265, 1, 0), Enum.Font.Fantasy, "Rose Hub v2.0.8", Color3.fromRGB(255, 255, 255), 30, 1, false)
  4425.  
  4426. makeImageLabel(Color3.fromRGB(255, 85, 127), 1, 0, "RoseIcon", screenGui.MainFrame.TitleFrame, false, UDim2.new(0, 45, 0, 41), "rbxassetid://1342740333", UDim2.new(0, 0, 0, 0), 0)
  4427.  
  4428. makeTextButton(Color3.fromRGB(255, 255, 255), 1, "Close", screenGui.MainFrame.TitleFrame, UDim2.new(0, 310, 0, 0), UDim2.new(0, 40, 0, 40), Enum.Font.ArialBold, "X", Color3.fromRGB(255, 255, 255), 30, 1, function()
  4429. mainTween("Close")
  4430. end)
  4431.  
  4432. makeTextLabel(Color3.fromRGB(255, 255, 255), 1, "MOTD", screenGui.MainFrame, UDim2.new(0, 125, 0, 315), UDim2.new(0, 225, 0, 25), Enum.Font.Fantasy, "MOTD: RIP Humanoid", Color3.fromRGB(255, 255, 255), 16, 0, true)
  4433.  
  4434. makeFrame(false, Color3.fromRGB(255, 100, 150), 0, "MainStuff", screenGui.MainFrame, UDim2.new(0, 130, 0, 70), UDim2.new(0, 215, 0, 245), true, false, 0.5)
  4435.  
  4436. makeFrame(false, Color3.fromRGB(0, 0, 0), 0, "SelectedTab", screenGui.MainFrame, UDim2.new(0, 125, 0, 40), UDim2.new(0, 225, 0, 30), true, false, 1)
  4437.  
  4438. makeTextLabel(Color3.fromRGB(255, 255, 255), 1, "SelectedTab", screenGui.MainFrame.SelectedTab, UDim2.new(0, 0, 0, 0), UDim2.new(0, 225, 0, 30), Enum.Font.Fantasy, "Home", Color3.fromRGB(255, 255, 255), 25, 0, false)
  4439.  
  4440. makeFrame(true, Color3.fromRGB(255, 84, 126), 0, "open", screenGui, UDim2.new(-0.5, 0, 0.5, 0), UDim2.new(0, 150, 0, 50), true, false, 1)
  4441.  
  4442. makeTextButton(Color3.fromRGB(255, 50, 127), 1, "openbutton", screenGui.open, UDim2.new(0, 0, 0, 0), UDim2.new(1, 0, 1, 0), Enum.Font.Fantasy, "OPEN", Color3.fromRGB(255, 255, 255), 32, false, function()
  4443. mainTween("Open")
  4444. end)
  4445.  
  4446. for i,tabButton in pairs(tabs) do
  4447. makeTextButton(Color3.fromRGB(255, 50, 127), 0, tabButton.."Button", screenGui.MainFrame.TabButtons, UDim2.new(0, 5, 0, tabPos), UDim2.new(0, 115, 0, 30), Enum.Font.Fantasy, tabButton, Color3.fromRGB(255, 255, 255), 20, 0, function()
  4448. changeTab(tabs[i])
  4449. end)
  4450. local mainStuffPos = 0
  4451. if tabButton == selectedTab then
  4452. mainStuffPos = 0
  4453. else
  4454. mainStuffPos = 1
  4455. end
  4456. makeScrollingFrame(Color3.fromRGB(0, 0, 0), 1, tabButton, screenGui.MainFrame.MainStuff, UDim2.new(mainStuffPos, 0, 0, 0), UDim2.new(1, 0, 1, 0), UDim2.new(1, 0, 0, 0), 1)
  4457.  
  4458. tabPos = tabPos + 35
  4459. end
  4460.  
  4461. --Sort lists and insert them
  4462. for _,list in pairs(lists) do
  4463. local toSort = {}
  4464. local sortedList = {}
  4465. local pos = 28
  4466.  
  4467. for _,v in pairs(list[1]) do
  4468. table.insert(toSort, v[1])
  4469. end
  4470.  
  4471. table.sort(toSort)
  4472.  
  4473. for i,name in pairs(toSort) do
  4474. for i,actualTable in pairs(list[1]) do
  4475. if name == actualTable[1] then
  4476. table.insert(sortedList, {actualTable[1], actualTable[2], actualTable[3]})
  4477. end
  4478. end
  4479. end
  4480.  
  4481. local function createButons(text)
  4482. pos = 28
  4483. for _,button in pairs(sortedList) do
  4484. if text == "" or string.sub(string.lower(button[1]), 1, string.len(text)) == string.lower(text) then
  4485. makeTextButton(Color3.fromRGB(255, 50, 127), 0, button[1], screenGui.MainFrame.MainStuff[list[2]], UDim2.new(0, 5, 0, pos), UDim2.new(1, -10, 0, 20), Enum.Font.Fantasy, button[1], Color3.fromRGB(255, 255, 255), 14, 0, function()
  4486. if button[3] == 1 then
  4487. loadstring(game:HttpGet("https://pastebin.com/raw/"..button[2], true))()
  4488. elseif button[3] == 2 then
  4489. loadstring(game:GetObjects("rbxassetid://"..button[2])[1].Source)()
  4490. end
  4491. end)
  4492. pos = pos + 23
  4493. end
  4494. end
  4495. end
  4496.  
  4497. --Remove Buttons and create new on search
  4498. local function removeButtons()
  4499. for _,button in pairs(screenGui.MainFrame.MainStuff[list[2]]:GetChildren()) do
  4500. if button.ClassName == "TextButton" then
  4501. button:Destroy()
  4502. end
  4503. end
  4504. end
  4505.  
  4506. --Search Box
  4507. makeTextBox(Color3.fromRGB(255, 50, 127), 0, false, "Search", screenGui.MainFrame.MainStuff[list[2]], UDim2.new(0, 5, 0, 5), UDim2.new(1, -10, 0, 20), Enum.Font.Fantasy, "", Color3.fromRGB(255, 255, 255), 14, false, "Center", 0, "Search "..list[2], "Center")
  4508. local function searchBar(chosenList)
  4509. local search = screenGui.MainFrame.MainStuff[chosenList].Search
  4510. local currentSearch = ""
  4511. search.Changed:connect(function(property)
  4512. if property == "Text" then
  4513. if search.Text ~= "" and search.Text ~= currentSearch then
  4514. currentSearch = search.Text
  4515. removeButtons()
  4516. createButons(search.Text)
  4517. elseif search.Text == "" and currentSearch.Text ~= "" then
  4518. currentSearch = search.Text
  4519. removeButtons()
  4520. createButons("")
  4521. end
  4522. end
  4523. end)
  4524. end
  4525.  
  4526. searchBar(list[2])
  4527.  
  4528. createButons("")
  4529.  
  4530. screenGui.MainFrame.MainStuff[list[2]].CanvasSize = UDim2.new(1, 0, 0, pos+2)
  4531. screenGui.MainFrame.MainStuff[list[2]].ScrollBarThickness = 0
  4532. end
  4533.  
  4534. makeTextLabel(Color3.fromRGB(255, 255, 255), 1, "WelcomeMSG", screenGui.MainFrame.MainStuff.Home, UDim2.new(0.102, 0, 0.045, 0), UDim2.new(0, 170, 0, 29), Enum.Font.Fantasy, "Welcome to Rose Hub!", Color3.fromRGB(255, 255, 255), 20, 1, false)
  4535.  
  4536. makeTextLabel(Color3.fromRGB(255, 255, 255), 1, "FEStatus", screenGui.MainFrame.MainStuff.Home, UDim2.new(0.2, 0, 0.155, 0), UDim2.new(0, 128, 0, 22), Enum.Font.Fantasy, "FE: Unknown", Color3.fromRGB(255, 255, 255), 16, 1, false)
  4537. if game:GetService("Workspace").FilteringEnabled then --Rather have Enabled/Disabled than true/false
  4538. screenGui.MainFrame.MainStuff.Home.FEStatus.Text = "FE: Enabled!"
  4539. else
  4540. screenGui.MainFrame.MainStuff.Home.FEStatus.Text = "FE: Disabled!"
  4541. end
  4542.  
  4543. makeFrame(false, Color3.fromRGB(255, 0, 127), 0, "SegLine", screenGui.MainFrame.MainStuff.Home, UDim2.new(0, 0, 0.245, 0), UDim2.new(0, 215, 0, 2), false, false, 0.5)
  4544.  
  4545. makeTextLabel(Color3.fromRGB(255, 255, 255), 1, "Explanation", screenGui.MainFrame.MainStuff.Home, UDim2.new(0, 0, 0.253, 0), UDim2.new(0, 215, 0, 183), Enum.Font.SourceSans, 'To get started click the tabs to find what scripts your looking for.\nThe scrolling bar is invisible so to scroll use your scroll wheel.\n\nWant scripts or features added?\n\nJoin our Discord for Support donations and more!', Color3.fromRGB(255, 255, 255), 14, 1, true)
  4546. screenGui.MainFrame.MainStuff.Home.Explanation.TextYAlignment = "Top"
  4547.  
  4548. makeTextButton(Color3.fromRGB(255, 50, 127), 0, "DiscordInvite", screenGui.MainFrame.MainStuff.Home, UDim2.new(0.179, 0, 0.816, 0), UDim2.new(0, 138, 0, 32), Enum.Font.Fantasy, "Discord", Color3.fromRGB(255, 255, 255), 14, 0, function()
  4549. local copy = true
  4550. if pcall(function() Synapse:Copy("https://discord.me/rosehub") end) then
  4551.  
  4552. else
  4553. local clip = setclipboard or Clipboard.set
  4554. clip("https://discord.me/rosehub")
  4555. end
  4556.  
  4557. screenGui.MainFrame.MainStuff.Home.DiscordInvite.text = "Copied!"
  4558. wait(1)
  4559. screenGui.MainFrame.MainStuff.Home.DiscordInvite.text = "Discord"
  4560. end)
  4561.  
  4562. makeTextButton(Color3.fromRGB(255, 0, 127), 0, "Clear", screenGui.MainFrame.MainStuff.Executor, UDim2.new(0, 5, 1, -25), UDim2.new(0, 100, 0, 20), Enum.Font.SourceSansBold, "Clear", Color3.fromRGB(255, 255, 255), 14, 0, function()
  4563. screenGui.MainFrame.MainStuff.Executor.InputHolder.Input.Text = ""
  4564. end)
  4565.  
  4566. makeScrollingFrame(Color3.fromRGB(255, 255, 255), 0, "InputHolder", screenGui.MainFrame.MainStuff.Executor, UDim2.new(0, 5, 0, 5), UDim2.new(0, 205, 0, 205), UDim2.new(0, 0, 0, 0), 1, 0)
  4567.  
  4568. makeTextBox(Color3.fromRGB(255, 0, 128), 1, true, "Input", screenGui.MainFrame.MainStuff.Executor.InputHolder, UDim2.new(0, 0, 0, 0), UDim2.new(1, 0, 1, 0), Enum.Font.Fantasy, "", Color3.fromRGB(255, 255, 255), 14, true, Enum.TextYAlignment.Top, 0, "Paste/Type Scripts Here", Enum.TextXAlignment.Left)
  4569. local execHolder = screenGui.MainFrame.MainStuff.Executor.InputHolder
  4570. local execInput = execHolder.Input
  4571. local movedExec196 = false
  4572. execInput.ClearTextOnFocus = false
  4573. --Checks if executor text changed, if so it will change your canvas position IF you are at the bottom of the script. Has an extra check for the first time moving so it doesnt get annoying
  4574. execInput.Changed:connect(function(property)
  4575. if property == "Text" then
  4576. execHolder.CanvasSize = UDim2.new(1, -10, 0, execInput.TextBounds.Y + execInput.TextSize)
  4577. if execInput.TextBounds.Y - execHolder.CanvasPosition.Y == 205 then
  4578. execHolder.CanvasPosition = Vector2.new(0, execInput.TextBounds.Y+205)
  4579. movedExec196 = false
  4580. elseif movedExec196 == false and execInput.TextBounds.Y == 196 and execHolder.CanvasPosition.Y == 0 then
  4581. execHolder.CanvasPosition = Vector2.new(0, execInput.TextBounds.Y+205)
  4582. movedExec196 = true
  4583. elseif movedExec196 == true and execInput.TextBounds.Y < 196 then
  4584. movedExec196 = false
  4585. end
  4586. end
  4587. end)
  4588.  
  4589. makeTextButton(Color3.fromRGB(255, 0, 127), 0, "Execute", screenGui.MainFrame.MainStuff.Executor, UDim2.new(0.5, 2, 1, -25), UDim2.new(0, 100, 0, 20), Enum.Font.SourceSansBold, "Execute", Color3.fromRGB(255, 255, 255), 14, 0, function()
  4590. loadstring(screenGui.MainFrame.MainStuff.Executor.InputHolder.Input.Text)()
  4591. end)
  4592.  
  4593. --Credits
  4594. makeTextLabel(Color3.fromRGB(255, 255, 255), 1, "RoseCredit", screenGui.MainFrame.MainStuff.Credits, UDim2.new(0.202, 0, 0.053, 0), UDim2.new(0, 128, 0, 32), Enum.Font.Fantasy, "Rose\nHumanoid#4613", Color3.fromRGB(255, 255, 255), 20, 0, false)
  4595.  
  4596. makeImageLabel(Color3.fromRGB(255, 255, 255), 1, 1, "RoseDrops", screenGui.MainFrame.MainStuff.Credits.RoseCredit, false, UDim2.new(0, 66, 0, 65), "rbxassetid://1342740333", UDim2.new(-0.25, 0, -0.844, 0), 80)
  4597.  
  4598. makeImageLabel(Color3.fromRGB(255, 255, 255), 1, 1, "RoseDrops2", screenGui.MainFrame.MainStuff.Credits.RoseCredit, false, UDim2.new(0, 66, 0, 65), "rbxassetid://1342740333", UDim2.new(0.891, 0, 4.438, 0), -40)
  4599.  
  4600. makeTextLabel(Color3.fromRGB(255, 255, 255), 1, "ZwolfCredit", screenGui.MainFrame.MainStuff.Credits, UDim2.new(0.221, 0, 0.253, 0), UDim2.new(0, 120, 0, 30), Enum.Font.Fantasy, "Zwolf\nZwolf#3762", Color3.fromRGB(255, 255, 255), 20, 1, false)
  4601.  
  4602. makeImageLabel(Color3.fromRGB(255, 255, 255), 1, 1, "RoseDrops3", screenGui.MainFrame.MainStuff.Credits.ZwolfCredit, false, UDim2.new(0, 62, 0, 59), "rbxassetid://1342740333", UDim2.new(0.875, 0, 0, 0), -10)
  4603.  
  4604. makeImageLabel(Color3.fromRGB(255, 255, 255), 1, 1, "ImageLabel", screenGui.MainFrame.MainStuff.Credits.ZwolfCredit, false, UDim2.new(0, 70, 0, 60), "rbxassetid://1342740333", UDim2.new(-0.483, 0, 0.433, 0), 59)
  4605.  
  4606. makeTextLabel(Color3.fromRGB(255, 255, 255), 1, "AlexCredit", screenGui.MainFrame.MainStuff.Credits, UDim2.new(0.191, 0, 0.469, 0), UDim2.new(0, 139, 0, 29), Enum.Font.Fantasy, "Alex\nAlex the Great#9740", Color3.fromRGB(255, 255, 255), 20, 1, false)
  4607.  
  4608. makeTextLabel(Color3.fromRGB(255, 255, 255), 1, "DeanCredit", screenGui.MainFrame.MainStuff.Credits, UDim2.new(0.153, 0, 0.755, 0), UDim2.new(0, 139, 0, 40), Enum.Font.Fantasy, "Miya - Intro\nKiwi#4879", Color3.fromRGB(255, 255, 255), 20, 1, false)
  4609.  
  4610. for _,object in pairs(screenGui.MainFrame.MainStuff.Credits:GetDescendants()) do
  4611. if object.ClassName == "ImageLabel" then
  4612. object.ImageTransparency = 1
  4613. end
  4614. end
  4615.  
  4616. screenGui.MainFrame.Size = UDim2.new(0, 0, 0, 40)
  4617.  
  4618. --Intro
  4619. introgui = Instance.new('ScreenGui',coreGui)
  4620. holder = Instance.new('Frame', introgui)
  4621. imhx = Instance.new('ImageLabel',holder)
  4622. blnhx = Instance.new('ImageLabel',holder)
  4623. blnhx2 = Instance.new('ImageLabel',holder)
  4624. pooftemp = Instance.new('ImageLabel',holder)
  4625. text = Instance.new('ImageLabel',holder)
  4626. bar = Instance.new('Frame',holder)
  4627. tomatosauce = Instance.new('Sound',holder)
  4628. large = Instance.new('Sound',holder)
  4629. smol = Instance.new('Sound',holder)
  4630. wosh = Instance.new('Sound',holder)
  4631. blur = Instance.new('BlurEffect',workspace.CurrentCamera)
  4632. blur.Size = 0
  4633.  
  4634. -- Properties
  4635. holder.Position = UDim2.new(0.5,-50,0.5,-50)
  4636. holder.Size = UDim2.new(0,100,0,100)
  4637. holder.BackgroundTransparency = 1
  4638.  
  4639. imhx.Image = "rbxassetid://1491878692"
  4640. imhx.BackgroundTransparency = 1
  4641. imhx.Size = UDim2.new(0,100,0,100)
  4642. imhx.Position = UDim2.new(0,0,0,-500)
  4643. imhx.ZIndex = 3
  4644.  
  4645. blnhx.Image = "rbxassetid://1491878477"
  4646. blnhx.BackgroundTransparency = 1
  4647. blnhx.ImageTransparency = 1
  4648. blnhx.Size = UDim2.new(0,100,0,100)
  4649. blnhx.Position = UDim2.new(0,0,0,0)
  4650. blnhx.ZIndex = 4
  4651.  
  4652. tomatosauce.SoundId = "rbxassetid://752527668"
  4653. tomatosauce.Volume = 1
  4654.  
  4655. large.SoundId = "rbxassetid://541909867"
  4656. large.Volume = 1
  4657.  
  4658. smol.SoundId = "rbxassetid://541909763"
  4659. smol.Volume = 1
  4660.  
  4661. wosh.SoundId = "rbxassetid://147722270"
  4662. wosh.Volume = 1
  4663.  
  4664.  
  4665. blnhx2.Image = "rbxassetid://1491878477"
  4666. blnhx2.BackgroundTransparency = 1
  4667. blnhx2.ImageTransparency = 1
  4668. blnhx2.Size = UDim2.new(0,100,0,100)
  4669. blnhx2.Position = UDim2.new(0,0,0,0)
  4670.  
  4671. pooftemp.Image = "rbxassetid://1491979712"
  4672. pooftemp.BackgroundTransparency = 1
  4673. pooftemp.ImageTransparency = 1
  4674. pooftemp.Size = UDim2.new(0,100,0,100)
  4675. pooftemp.Position = UDim2.new(0,0,0,0)
  4676.  
  4677. text.Image = "rbxassetid://1491935743"
  4678. text.BackgroundTransparency = 1
  4679. text.ImageTransparency = 1
  4680. text.Size = UDim2.new(0,500,0,100)
  4681. text.Position = UDim2.new(0.5,-250,0,0)
  4682. text.ZIndex = 6
  4683.  
  4684. bar.Size = UDim2.new(0,0,0,100)
  4685. bar.Position = UDim2.new(0.5,0,0,0)
  4686. bar.BorderSizePixel = 0
  4687. bar.ZIndex = 5
  4688. bar.BackgroundColor3 = Color3.fromRGB(255, 35, 110)
  4689.  
  4690. -- Animation
  4691. local tweenService = game:GetService("TweenService")
  4692.  
  4693. local tween1 = TweenInfo.new(
  4694. 2,
  4695. Enum.EasingStyle.Quint,
  4696. Enum.EasingDirection.Out
  4697. )
  4698. local stuff1 = {
  4699. Position = UDim2.new(0,0,0,0);
  4700. Rotation = -720
  4701. }
  4702. local stuff6 = {
  4703. Size = 34
  4704. }
  4705. local stuff7 = {
  4706. Size = 0
  4707. }
  4708.  
  4709.  
  4710. local imagetween = tweenService:Create(imhx,tween1,stuff1)
  4711.  
  4712. local tween2 = TweenInfo.new(
  4713. 2,
  4714. Enum.EasingStyle.Quint,
  4715. Enum.EasingDirection.Out
  4716. )
  4717. local stuff2 = {
  4718. Position = UDim2.new(0,-50,0,-50);
  4719. Size = UDim2.new(0,200,0,200);
  4720. ImageTransparency = 1
  4721. }
  4722.  
  4723. local bloop = tweenService:Create(pooftemp,tween2,stuff2)
  4724.  
  4725. local tween3 = TweenInfo.new(
  4726. 1,
  4727. Enum.EasingStyle.Quint,
  4728. Enum.EasingDirection.Out
  4729. )
  4730.  
  4731. local tween4 = TweenInfo.new(
  4732. 2,
  4733. Enum.EasingStyle.Quint,
  4734. Enum.EasingDirection.Out
  4735. )
  4736. local stuff3 = {
  4737. ImageTransparency = 0
  4738. }
  4739.  
  4740. local poof = tweenService:Create(blnhx,tween3,stuff3)
  4741.  
  4742. local fadein = tweenService:Create(blur,tween1,stuff6)
  4743. local fadeout = tweenService:Create(blur,tween1,stuff7)
  4744.  
  4745. local textappere = tweenService:Create(text,tween4,stuff3)
  4746. -- Playing animations/sounds
  4747. imagetween:Play()
  4748. large:Play()
  4749. fadein:Play()
  4750. wait(2)
  4751. pooftemp.ImageTransparency = 0
  4752. bloop:play()
  4753. tomatosauce:Play()
  4754. wait(2)
  4755. poof:Play()
  4756. wait(1)
  4757. imhx.ImageTransparency = 1
  4758. blnhx2.ImageTransparency = 0
  4759. bar:TweenSizeAndPosition(UDim2.new(0,500,0,100),UDim2.new(0.5,-250,0.5,-50),"Out","Quint",2)
  4760. blnhx2:TweenPosition(UDim2.new(0,250,0,0),"Out","Quint",2)
  4761. blnhx:TweenPosition(UDim2.new(0,-250,0,0),"Out","Quint",2)
  4762. smol:Play()
  4763. wait(1.3)
  4764. textappere:Play()
  4765. wait(2)
  4766. holder:TweenPosition(UDim2.new(0,5000,0.5,-50),"In","Quint",2)
  4767. wosh:Play()
  4768. wait(1.4)
  4769. fadeout:Play()
  4770. wait(2)
  4771. introgui:Destroy()
  4772. blur:Destroy()
  4773.  
  4774. wait()
  4775.  
  4776. tweening = true
  4777. screenGui.open:TweenPosition(UDim2.new(0, 0, 0.5, 0),'Out','Quad',0.6)
  4778. wait(0.6)
  4779. tweening = false
  4780. end)
  4781.  
  4782. FEArosiaGUI.Name = "FE ArosiaGUI"
  4783. FEArosiaGUI.Parent = Main
  4784. FEArosiaGUI.BackgroundColor3 = Color3.new(1, 1, 0.498039)
  4785. FEArosiaGUI.Position = UDim2.new(0.234739512, 0, 0.096222654, 0)
  4786. FEArosiaGUI.Size = UDim2.new(0, 200, 0, 50)
  4787. FEArosiaGUI.Font = Enum.Font.SourceSans
  4788. FEArosiaGUI.Text = "FE Arosia GUI"
  4789. FEArosiaGUI.TextColor3 = Color3.new(0, 0, 0)
  4790. FEArosiaGUI.TextSize = 40
  4791. FEArosiaGUI.MouseButton1Down:connect(function()
  4792. -- Thank you for using Arosia, enjoy!
  4793.  
  4794. -- Objects
  4795.  
  4796. local Arosia = Instance.new("ScreenGui")
  4797. local SideTabsBrick = Instance.new("Frame")
  4798. local icon = Instance.new("ImageLabel")
  4799. local MainFrame = Instance.new("Frame")
  4800. local TopRow = Instance.new("Frame")
  4801. local Title = Instance.new("TextLabel")
  4802. local CloseGUI = Instance.new("TextButton")
  4803. local FE_Check = Instance.new("TextLabel")
  4804. local SideTabs = Instance.new("Frame")
  4805. local TAB_LocalPlayer = Instance.new("TextButton")
  4806. local TAB_Others = Instance.new("TextButton")
  4807. local TAB_Scripts = Instance.new("TextButton")
  4808. local TAB_Credit = Instance.new("TextButton")
  4809. local TAB_Games = Instance.new("TextButton")
  4810. local Others = Instance.new("Frame")
  4811. local PlayerUserEnter = Instance.new("TextBox")
  4812. local Guidance = Instance.new("TextLabel")
  4813. local Annoy = Instance.new("TextButton")
  4814. local Teleport = Instance.new("TextButton")
  4815. local View = Instance.new("TextButton")
  4816. local Kill = Instance.new("TextButton")
  4817. local Attach = Instance.new("TextButton")
  4818. local Bring = Instance.new("TextButton")
  4819. local Guidance2 = Instance.new("TextLabel")
  4820. local NoneSelected = Instance.new("Frame")
  4821. local NoneSelectedText1 = Instance.new("TextLabel")
  4822. local NoneSelectedText2 = Instance.new("TextLabel")
  4823. local NoneSelectedText3 = Instance.new("TextLabel")
  4824. local LocalPlayer = Instance.new("Frame")
  4825. local GodMode = Instance.new("TextButton")
  4826. local Fly = Instance.new("TextButton")
  4827. local Speed = Instance.new("TextButton")
  4828. local Speed_TXTBOX = Instance.new("TextBox")
  4829. local JumpHeight = Instance.new("TextButton")
  4830. local JumpHeight_TXTBOX = Instance.new("TextBox")
  4831. local Chat = Instance.new("TextButton")
  4832. local Chat_TXTBOX = Instance.new("TextBox")
  4833. local Respawn = Instance.new("TextButton")
  4834. local HipHeight = Instance.new("TextButton")
  4835. local HipHeight_TXTBOX = Instance.new("TextBox")
  4836. local Noclip = Instance.new("TextButton")
  4837. local Sit = Instance.new("TextButton")
  4838. local Jump = Instance.new("TextButton")
  4839. local HideName = Instance.new("TextButton")
  4840. local Spam = Instance.new("TextButton")
  4841. local Freeze = Instance.new("TextButton")
  4842. local Btools = Instance.new("TextButton")
  4843. local Spin = Instance.new("TextButton")
  4844. local NoLimbs = Instance.new("TextButton")
  4845. local Seizure = Instance.new("TextButton")
  4846. local Games = Instance.new("Frame")
  4847. local Scripts = Instance.new("Frame")
  4848. local SideFrame = Instance.new("Frame")
  4849. local SIDE_Title = Instance.new("TextLabel")
  4850. local OpenGUI = Instance.new("TextButton")
  4851. local SIDE_FE_Check = Instance.new("TextLabel")
  4852. local getimage = game:GetService('ContentProvider')
  4853. local ResetDefault = Instance.new("TextButton")
  4854. local Push = Instance.new("TextButton")
  4855. local ClientFreeze = Instance.new("TextButton")
  4856. local Orbit = Instance.new("TextButton")
  4857. local BringAll = Instance.new("TextButton")
  4858. local AttachAll = Instance.new("TextButton")
  4859. local Flatten = Instance.new("TextButton")
  4860. local Guidance3 = Instance.new("TextLabel")
  4861. local KillAll = Instance.new("TextButton")
  4862. local Energize = Instance.new("TextButton")
  4863. local GlitchMax = Instance.new("TextButton")
  4864. local Energize_TXT = Instance.new("TextLabel")
  4865. local GlitchMax_TXT = Instance.new("TextLabel")
  4866. local Verspin = Instance.new("TextButton")
  4867. local Verspin_TXT = Instance.new("TextLabel")
  4868. local Temp = Instance.new("TextLabel")
  4869. local Experimental = Instance.new("TextButton")
  4870. local CHAOS = Instance.new("TextButton")
  4871.  
  4872. -- Properties
  4873.  
  4874. Arosia.Name = "Arosia"
  4875. Arosia.Parent = game.CoreGui
  4876.  
  4877. MainFrame.Name = "MainFrame"
  4878. MainFrame.Parent = Arosia
  4879. MainFrame.Active = true
  4880. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  4881. MainFrame.BackgroundTransparency = 1
  4882. MainFrame.Draggable = true
  4883. MainFrame.Position = UDim2.new(0.309, 0, -1, 0)
  4884. MainFrame.Size = UDim2.new(0, 448, 0, 334)
  4885.  
  4886. TopRow.Name = "TopRow"
  4887. TopRow.Parent = MainFrame
  4888. TopRow.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4889. TopRow.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4890. TopRow.BorderSizePixel = 2
  4891. TopRow.Size = UDim2.new(0, 448, 0, 24)
  4892. TopRow.ZIndex = 7
  4893.  
  4894. Title.Name = "Title"
  4895. Title.Parent = TopRow
  4896. Title.Active = true
  4897. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  4898. Title.BackgroundTransparency = 1
  4899. Title.Size = UDim2.new(0, 90, 0, 24)
  4900. Title.Font = Enum.Font.ArialBold
  4901. Title.FontSize = Enum.FontSize.Size24
  4902. Title.Text = "Arosia "
  4903. Title.TextColor3 = Color3.new(0.368627, 0.976471, 0.262745)
  4904. Title.TextScaled = true
  4905. Title.TextSize = 19
  4906. Title.TextWrapped = true
  4907. Title.ZIndex = 8
  4908.  
  4909. CloseGUI.Name = "CloseGUI"
  4910. CloseGUI.Parent = TopRow
  4911. CloseGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  4912. CloseGUI.BackgroundTransparency = 1
  4913. CloseGUI.Position = UDim2.new(0.560000002, 166, 0.100000001, 0)
  4914. CloseGUI.Size = UDim2.new(0, 38, 0, 24)
  4915. CloseGUI.Font = Enum.Font.ArialBold
  4916. CloseGUI.FontSize = Enum.FontSize.Size32
  4917. CloseGUI.Text = "X"
  4918. CloseGUI.TextColor3 = Color3.new(0.615686, 0, 0)
  4919. CloseGUI.TextSize = 30
  4920. CloseGUI.ZIndex = 8
  4921.  
  4922. FE_Check.Name = "FE_Check"
  4923. FE_Check.Parent = TopRow
  4924. FE_Check.BackgroundColor3 = Color3.new(1, 1, 1)
  4925. FE_Check.BackgroundTransparency = 1
  4926. FE_Check.Position = UDim2.new(0.291458786, 0, 0, 0)
  4927. FE_Check.Size = UDim2.new(0, 223, 0, 24)
  4928. FE_Check.Font = Enum.Font.Highway
  4929. FE_Check.FontSize = Enum.FontSize.Size14
  4930. FE_Check.Text = "Error loading FE Checker"
  4931. FE_Check.TextColor3 = Color3.new(1, 1, 1)
  4932. FE_Check.TextScaled = true
  4933. FE_Check.TextSize = 14
  4934. FE_Check.TextWrapped = true
  4935. FE_Check.ZIndex = 8
  4936.  
  4937. SideTabs.Name = "SideTabs"
  4938. SideTabs.Parent = MainFrame
  4939. SideTabs.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4940. SideTabs.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4941. SideTabs.BorderSizePixel = 2
  4942. SideTabs.Position = UDim2.new(0, 0, 0.0799999982, 0)
  4943. SideTabs.Size = UDim2.new(0, 120, 0, 307)
  4944. SideTabs.ZIndex = 5
  4945.  
  4946. TAB_LocalPlayer.Name = "TAB_LocalPlayer"
  4947. TAB_LocalPlayer.Parent = SideTabs
  4948. TAB_LocalPlayer.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  4949. TAB_LocalPlayer.BorderSizePixel = 0
  4950. TAB_LocalPlayer.Size = UDim2.new(0, 120, 0, 35)
  4951. TAB_LocalPlayer.Font = Enum.Font.SourceSansBold
  4952. TAB_LocalPlayer.FontSize = Enum.FontSize.Size24
  4953. TAB_LocalPlayer.Text = "Local Player"
  4954. TAB_LocalPlayer.TextColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  4955. TAB_LocalPlayer.TextSize = 23
  4956. TAB_LocalPlayer.TextWrapped = true
  4957. TAB_LocalPlayer.ZIndex = 6
  4958.  
  4959. TAB_Others.Name = "TAB_Others"
  4960. TAB_Others.Parent = SideTabs
  4961. TAB_Others.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  4962. TAB_Others.BorderSizePixel = 0
  4963. TAB_Others.Position = UDim2.new(0, 0, 0.130510315, 0)
  4964. TAB_Others.Size = UDim2.new(0, 120, 0, 35)
  4965. TAB_Others.Font = Enum.Font.SourceSansBold
  4966. TAB_Others.FontSize = Enum.FontSize.Size28
  4967. TAB_Others.Text = "Others"
  4968. TAB_Others.TextColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  4969. TAB_Others.TextSize = 27
  4970. TAB_Others.TextWrapped = true
  4971. TAB_Others.ZIndex = 6
  4972.  
  4973. TAB_Scripts.Name = "TAB_Scripts"
  4974. TAB_Scripts.Parent = SideTabs
  4975. TAB_Scripts.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  4976. TAB_Scripts.BorderSizePixel = 0
  4977. TAB_Scripts.Position = UDim2.new(0, 0, 0.261020631, 0)
  4978. TAB_Scripts.Size = UDim2.new(0, 120, 0, 35)
  4979. TAB_Scripts.Font = Enum.Font.SourceSansBold
  4980. TAB_Scripts.FontSize = Enum.FontSize.Size28
  4981. TAB_Scripts.Text = "Scripts"
  4982. TAB_Scripts.TextColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  4983. TAB_Scripts.TextSize = 27
  4984. TAB_Scripts.TextWrapped = true
  4985. TAB_Scripts.ZIndex = 6
  4986.  
  4987. TAB_Credit.Name = "TAB_Credit"
  4988. TAB_Credit.Parent = SideTabs
  4989. TAB_Credit.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4990. TAB_Credit.BorderSizePixel = 0
  4991. TAB_Credit.Position = UDim2.new(0, 0, 0.880944669, 0)
  4992. TAB_Credit.Size = UDim2.new(0, 120, 0, 37)
  4993. TAB_Credit.Font = Enum.Font.SourceSansBold
  4994. TAB_Credit.FontSize = Enum.FontSize.Size28
  4995. TAB_Credit.Text = "illremember"
  4996. TAB_Credit.TextColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  4997. TAB_Credit.TextSize = 25
  4998. TAB_Credit.TextStrokeColor3 = Color3.new(1, 0, 0)
  4999. TAB_Credit.TextStrokeTransparency = 0.80000001192093
  5000. TAB_Credit.TextWrapped = true
  5001. TAB_Credit.ZIndex = 6
  5002.  
  5003. TAB_Games.Name = "TAB_Games"
  5004. TAB_Games.Parent = SideTabs
  5005. TAB_Games.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  5006. TAB_Games.BorderSizePixel = 0
  5007. TAB_Games.Position = UDim2.new(0, 0, 0.391530931, 0)
  5008. TAB_Games.Size = UDim2.new(0, 120, 0, 35)
  5009. TAB_Games.Font = Enum.Font.SourceSansBold
  5010. TAB_Games.FontSize = Enum.FontSize.Size28
  5011. TAB_Games.Text = "Games"
  5012. TAB_Games.TextColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  5013. TAB_Games.TextSize = 27
  5014. TAB_Games.TextWrapped = true
  5015. TAB_Games.ZIndex = 6
  5016.  
  5017. Others.Name = "Others"
  5018. Others.Parent = MainFrame
  5019. Others.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8)
  5020. Others.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  5021. Others.BorderSizePixel = 2
  5022. Others.Position = UDim2.new(0.31400001, -21, 0.180000007, -33)
  5023. Others.Size = UDim2.new(0, 328, 0, 307)
  5024. Others.Visible = false
  5025.  
  5026. PlayerUserEnter.Name = "PlayerUserEnter"
  5027. PlayerUserEnter.Parent = Others
  5028. PlayerUserEnter.BackgroundColor3 = Color3.new(0.65098, 0.65098, 0.65098)
  5029. PlayerUserEnter.BorderSizePixel = 0
  5030. PlayerUserEnter.Position = UDim2.new(0.0612446219, 0, 0.0978827327, 0)
  5031. PlayerUserEnter.Size = UDim2.new(0, 286, 0, 26)
  5032. PlayerUserEnter.Font = Enum.Font.SourceSans
  5033. PlayerUserEnter.FontSize = Enum.FontSize.Size14
  5034. PlayerUserEnter.Text = ""
  5035. PlayerUserEnter.TextScaled = true
  5036. PlayerUserEnter.TextSize = 14
  5037. PlayerUserEnter.TextWrapped = true
  5038.  
  5039. Guidance.Name = "Guidance"
  5040. Guidance.Parent = Others
  5041. Guidance.BackgroundColor3 = Color3.new(1, 1, 1)
  5042. Guidance.BackgroundTransparency = 1
  5043. Guidance.Position = UDim2.new(0.183733866, 0, 0, 0)
  5044. Guidance.Size = UDim2.new(0, 209, 0, 24)
  5045. Guidance.Font = Enum.Font.ArialBold
  5046. Guidance.FontSize = Enum.FontSize.Size14
  5047. Guidance.Text = "Enter Player Username"
  5048. Guidance.TextColor3 = Color3.new(0.258824, 0.690196, 0.211765)
  5049. Guidance.TextScaled = true
  5050. Guidance.TextSize = 14
  5051. Guidance.TextWrapped = true
  5052.  
  5053. Annoy.Name = "Annoy"
  5054. Annoy.Parent = Others
  5055. Annoy.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5056. Annoy.BorderSizePixel = 0
  5057. Annoy.Position = UDim2.new(0.0612553172, 0, 0.228393063, 0)
  5058. Annoy.Size = UDim2.new(0, 78, 0, 26)
  5059. Annoy.Font = Enum.Font.Arial
  5060. Annoy.FontSize = Enum.FontSize.Size18
  5061. Annoy.Text = "Annoy"
  5062. Annoy.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5063. Annoy.TextSize = 18
  5064. Annoy.TextWrapped = true
  5065.  
  5066. Teleport.Name = "Teleport"
  5067. Teleport.Parent = Others
  5068. Teleport.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5069. Teleport.BorderSizePixel = 0
  5070. Teleport.Position = UDim2.new(0.367531896, 0, 0.228393063, 0)
  5071. Teleport.Size = UDim2.new(0, 78, 0, 26)
  5072. Teleport.Font = Enum.Font.Arial
  5073. Teleport.FontSize = Enum.FontSize.Size18
  5074. Teleport.Text = "Teleport"
  5075. Teleport.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5076. Teleport.TextSize = 18
  5077. Teleport.TextWrapped = true
  5078.  
  5079. View.Name = "View"
  5080. View.Parent = Others
  5081. View.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5082. View.BorderSizePixel = 0
  5083. View.Position = UDim2.new(0.673808455, 0, 0.228393063, 0)
  5084. View.Size = UDim2.new(0, 78, 0, 26)
  5085. View.Font = Enum.Font.Arial
  5086. View.FontSize = Enum.FontSize.Size18
  5087. View.Text = "View"
  5088. View.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5089. View.TextSize = 18
  5090. View.TextWrapped = true
  5091.  
  5092. KillAll.Name = "KillAll"
  5093. KillAll.Parent = Others
  5094. KillAll.BackgroundColor3 = Color3.new(0.423529, 0.0862745, 0.0627451)
  5095. KillAll.BorderSizePixel = 0
  5096. KillAll.Position = UDim2.new(0.0612446219, 0, 0.880944669, 0)
  5097. KillAll.Size = UDim2.new(0, 78, 0, 26)
  5098. KillAll.Font = Enum.Font.Arial
  5099. KillAll.FontSize = Enum.FontSize.Size18
  5100. KillAll.Text = "Kill All"
  5101. KillAll.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5102. KillAll.TextSize = 18
  5103. KillAll.TextWrapped = true
  5104.  
  5105. Attach.Name = "Attach"
  5106. Attach.Parent = Others
  5107. Attach.BackgroundColor3 = Color3.new(0.415686, 0.423529, 0.0666667)
  5108. Attach.BorderSizePixel = 0
  5109. Attach.Position = UDim2.new(0.673808455, 0, 0.652551532, 0)
  5110. Attach.Size = UDim2.new(0, 78, 0, 26)
  5111. Attach.Font = Enum.Font.Arial
  5112. Attach.FontSize = Enum.FontSize.Size18
  5113. Attach.Text = "Attach"
  5114. Attach.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5115. Attach.TextSize = 18
  5116. Attach.TextWrapped = true
  5117.  
  5118. Bring.Name = "Bring"
  5119. Bring.Parent = Others
  5120. Bring.BackgroundColor3 = Color3.new(0.415686, 0.423529, 0.0666667)
  5121. Bring.BorderSizePixel = 0
  5122. Bring.Position = UDim2.new(0.367531896, 0, 0.652551532, 0)
  5123. Bring.Size = UDim2.new(0, 78, 0, 26)
  5124. Bring.Font = Enum.Font.Arial
  5125. Bring.FontSize = Enum.FontSize.Size18
  5126. Bring.Text = "Bring"
  5127. Bring.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5128. Bring.TextSize = 18
  5129. Bring.TextWrapped = true
  5130.  
  5131. Guidance2.Name = "Guidance2"
  5132. Guidance2.Parent = Others
  5133. Guidance2.BackgroundColor3 = Color3.new(1, 1, 1)
  5134. Guidance2.BackgroundTransparency = 1
  5135. Guidance2.Position = UDim2.new(0.153138295, 0, 0.522041261, 0)
  5136. Guidance2.Size = UDim2.new(0, 227, 0, 40)
  5137. Guidance2.Font = Enum.Font.ArialBold
  5138. Guidance2.FontSize = Enum.FontSize.Size14
  5139. Guidance2.Text = "Golden buttons require tools in your backpack before using"
  5140. Guidance2.TextColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  5141. Guidance2.TextScaled = true
  5142. Guidance2.TextSize = 14
  5143. Guidance2.TextStrokeColor3 = Color3.new(1, 0.870588, 0.223529)
  5144. Guidance2.TextStrokeTransparency = 0.80000001192093
  5145. Guidance2.TextWrapped = true
  5146.  
  5147. Kill.Name = "Kill"
  5148. Kill.Parent = Others
  5149. Kill.BackgroundColor3 = Color3.new(0.415686, 0.423529, 0.0666667)
  5150. Kill.BorderSizePixel = 0
  5151. Kill.Position = UDim2.new(0.0612553172, 0, 0.652551532, 0)
  5152. Kill.Size = UDim2.new(0, 78, 0, 26)
  5153. Kill.Font = Enum.Font.Arial
  5154. Kill.FontSize = Enum.FontSize.Size18
  5155. Kill.Text = "Kill"
  5156. Kill.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5157. Kill.TextSize = 18
  5158. Kill.TextWrapped = true
  5159.  
  5160. BringAll.Name = "Bring"
  5161. BringAll.Parent = Others
  5162. BringAll.BackgroundColor3 = Color3.new(0.423529, 0.0862745, 0.0627451)
  5163. BringAll.BorderSizePixel = 0
  5164. BringAll.Position = UDim2.new(0.367467731, 0, 0.880944669, 0)
  5165. BringAll.Size = UDim2.new(0, 78, 0, 26)
  5166. BringAll.Font = Enum.Font.Arial
  5167. BringAll.FontSize = Enum.FontSize.Size18
  5168. BringAll.Text = "Bring All"
  5169. BringAll.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5170. BringAll.TextSize = 18
  5171. BringAll.TextWrapped = true
  5172.  
  5173. AttachAll.Name = "Attach"
  5174. AttachAll.Parent = Others
  5175. AttachAll.BackgroundColor3 = Color3.new(0.423529, 0.0862745, 0.0627451)
  5176. AttachAll.BorderSizePixel = 0
  5177. AttachAll.Position = UDim2.new(0.673690796, 0, 0.880944669, 0)
  5178. AttachAll.Size = UDim2.new(0, 78, 0, 26)
  5179. AttachAll.Font = Enum.Font.Arial
  5180. AttachAll.FontSize = Enum.FontSize.Size18
  5181. AttachAll.Text = "Attach All"
  5182. AttachAll.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5183. AttachAll.TextSize = 18
  5184. AttachAll.TextWrapped = true
  5185.  
  5186. Flatten.Name = "Flatten"
  5187. Flatten.Parent = Others
  5188. Flatten.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5189. Flatten.BorderSizePixel = 0
  5190. Flatten.Position = UDim2.new(0.367531896, 0, 0.424158514, 0)
  5191. Flatten.Size = UDim2.new(0, 78, 0, 26)
  5192. Flatten.Font = Enum.Font.Arial
  5193. Flatten.FontSize = Enum.FontSize.Size18
  5194. Flatten.Text = "Flatten"
  5195. Flatten.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5196. Flatten.TextSize = 18
  5197. Flatten.TextWrapped = true
  5198.  
  5199. Guidance3.Name = "Guidance3"
  5200. Guidance3.Parent = Others
  5201. Guidance3.BackgroundColor3 = Color3.new(1, 1, 1)
  5202. Guidance3.BackgroundTransparency = 1
  5203. Guidance3.Position = UDim2.new(0.153138295, 0, 0.750434279, 0)
  5204. Guidance3.Size = UDim2.new(0, 227, 0, 40)
  5205. Guidance3.Font = Enum.Font.ArialBold
  5206. Guidance3.FontSize = Enum.FontSize.Size14
  5207. Guidance3.Text = "Red buttons require many tools in your backpack before using"
  5208. Guidance3.TextColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  5209. Guidance3.TextScaled = true
  5210. Guidance3.TextSize = 14
  5211. Guidance3.TextStrokeColor3 = Color3.new(1, 0.266667, 0.137255)
  5212. Guidance3.TextStrokeTransparency = 0.80000001192093
  5213. Guidance3.TextWrapped = true
  5214.  
  5215. NoneSelected.Name = "NoneSelected"
  5216. NoneSelected.Parent = MainFrame
  5217. NoneSelected.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8)
  5218. NoneSelected.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  5219. NoneSelected.BorderSizePixel = 2
  5220. NoneSelected.Position = UDim2.new(0.31400001, -21, 0.180000007, -33)
  5221. NoneSelected.Size = UDim2.new(0, 328, 0, 307)
  5222.  
  5223. NoneSelectedText1.Name = "NoneSelectedText1"
  5224. NoneSelectedText1.Parent = NoneSelected
  5225. NoneSelectedText1.BackgroundColor3 = Color3.new(1, 1, 1)
  5226. NoneSelectedText1.BackgroundTransparency = 1
  5227. NoneSelectedText1.Position = UDim2.new(0.184861064, 0, 0.0326275788, 0)
  5228. NoneSelectedText1.Size = UDim2.new(0, 200, 0, 50)
  5229. NoneSelectedText1.Font = Enum.Font.ArialBold
  5230. NoneSelectedText1.FontSize = Enum.FontSize.Size14
  5231. NoneSelectedText1.Text = "Arosia"
  5232. NoneSelectedText1.TextColor3 = Color3.new(0.337255, 0.85098, 0.258824)
  5233. NoneSelectedText1.TextScaled = true
  5234. NoneSelectedText1.TextSize = 14
  5235. NoneSelectedText1.TextWrapped = true
  5236.  
  5237. NoneSelectedText2.Name = "NoneSelectedText2"
  5238. NoneSelectedText2.Parent = NoneSelected
  5239. NoneSelectedText2.BackgroundColor3 = Color3.new(1, 1, 1)
  5240. NoneSelectedText2.BackgroundTransparency = 1
  5241. NoneSelectedText2.Position = UDim2.new(0.184861064, -31, 0.195765465, 0)
  5242. NoneSelectedText2.Size = UDim2.new(0, 272, 0, 72)
  5243. NoneSelectedText2.Font = Enum.Font.ArialBold
  5244. NoneSelectedText2.FontSize = Enum.FontSize.Size14
  5245. NoneSelectedText2.Text = "Dedicated to bringing power into FE games"
  5246. NoneSelectedText2.TextColor3 = Color3.new(0.458824, 0.458824, 0.458824)
  5247. NoneSelectedText2.TextScaled = true
  5248. NoneSelectedText2.TextSize = 14
  5249. NoneSelectedText2.TextWrapped = true
  5250.  
  5251. NoneSelectedText3.Name = "NoneSelectedText3"
  5252. NoneSelectedText3.Parent = NoneSelected
  5253. NoneSelectedText3.BackgroundColor3 = Color3.new(1, 1, 1)
  5254. NoneSelectedText3.BackgroundTransparency = 1
  5255. NoneSelectedText3.Position = UDim2.new(0.0918669328, 0, 0.652551532, 0)
  5256. NoneSelectedText3.Size = UDim2.new(0, 272, 0, 72)
  5257. NoneSelectedText3.Font = Enum.Font.ArialBold
  5258. NoneSelectedText3.FontSize = Enum.FontSize.Size14
  5259. NoneSelectedText3.Text = "By illremember"
  5260. NoneSelectedText3.TextColor3 = Color3.new(0.458824, 0.458824, 0.458824)
  5261. NoneSelectedText3.TextScaled = true
  5262. NoneSelectedText3.TextSize = 14
  5263. NoneSelectedText3.TextStrokeColor3 = Color3.new(1, 0.027451, 0.027451)
  5264. NoneSelectedText3.TextStrokeTransparency = 0.89999997615814
  5265. NoneSelectedText3.TextWrapped = true
  5266.  
  5267. LocalPlayer.Name = "LocalPlayer"
  5268. LocalPlayer.Parent = MainFrame
  5269. LocalPlayer.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8)
  5270. LocalPlayer.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  5271. LocalPlayer.BorderSizePixel = 2
  5272. LocalPlayer.Position = UDim2.new(0.31400001, -21, 0.180000007, -33)
  5273. LocalPlayer.Size = UDim2.new(0, 328, 0, 307)
  5274. LocalPlayer.Visible = false
  5275.  
  5276. GodMode.Name = "GodMode"
  5277. GodMode.Parent = LocalPlayer
  5278. GodMode.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5279. GodMode.BorderSizePixel = 0
  5280. GodMode.Position = UDim2.new(0.0306223109, 0, 0.0326275788, 0)
  5281. GodMode.Size = UDim2.new(0, 80, 0, 26)
  5282. GodMode.Font = Enum.Font.Arial
  5283. GodMode.FontSize = Enum.FontSize.Size18
  5284. GodMode.Text = "GodMode"
  5285. GodMode.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5286. GodMode.TextSize = 18
  5287. GodMode.TextWrapped = true
  5288.  
  5289. Fly.Name = "Fly"
  5290. Fly.Parent = LocalPlayer
  5291. Fly.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5292. Fly.BorderSizePixel = 0
  5293. Fly.Position = UDim2.new(0.398090035, 0, 0.0326275788, 0)
  5294. Fly.Size = UDim2.new(0, 80, 0, 26)
  5295. Fly.Font = Enum.Font.Arial
  5296. Fly.FontSize = Enum.FontSize.Size18
  5297. Fly.Text = "Fly"
  5298. Fly.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5299. Fly.TextSize = 18
  5300. Fly.TextWrapped = true
  5301.  
  5302. Speed.Name = "Speed"
  5303. Speed.Parent = LocalPlayer
  5304. Speed.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5305. Speed.BorderSizePixel = 0
  5306. Speed.Position = UDim2.new(0.0306223109, 0, 0.261020631, 0)
  5307. Speed.Size = UDim2.new(0, 80, 0, 26)
  5308. Speed.Font = Enum.Font.Arial
  5309. Speed.FontSize = Enum.FontSize.Size18
  5310. Speed.Text = "Speed"
  5311. Speed.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5312. Speed.TextSize = 18
  5313. Speed.TextWrapped = true
  5314.  
  5315. Speed_TXTBOX.Name = "Speed_TXTBOX"
  5316. Speed_TXTBOX.Parent = LocalPlayer
  5317. Speed_TXTBOX.BackgroundColor3 = Color3.new(0.65098, 0.65098, 0.65098)
  5318. Speed_TXTBOX.BorderSizePixel = 0
  5319. Speed_TXTBOX.Position = UDim2.new(0.275600791, 0, 0.261020631, 0)
  5320. Speed_TXTBOX.Size = UDim2.new(0, 40, 0, 26)
  5321. Speed_TXTBOX.Font = Enum.Font.SourceSans
  5322. Speed_TXTBOX.FontSize = Enum.FontSize.Size14
  5323. Speed_TXTBOX.Text = ""
  5324. Speed_TXTBOX.TextScaled = true
  5325. Speed_TXTBOX.TextSize = 14
  5326. Speed_TXTBOX.TextWrapped = true
  5327.  
  5328. JumpHeight.Name = "JumpHeight"
  5329. JumpHeight.Parent = LocalPlayer
  5330. JumpHeight.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5331. JumpHeight.BorderSizePixel = 0
  5332. JumpHeight.Position = UDim2.new(0.459334642, 0, 0.261020631, 0)
  5333. JumpHeight.Size = UDim2.new(0, 80, 0, 26)
  5334. JumpHeight.Font = Enum.Font.Arial
  5335. JumpHeight.FontSize = Enum.FontSize.Size18
  5336. JumpHeight.Text = "JumpHeight"
  5337. JumpHeight.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5338. JumpHeight.TextSize = 15
  5339. JumpHeight.TextWrapped = true
  5340.  
  5341. JumpHeight_TXTBOX.Name = "JumpHeight_TXTBOX"
  5342. JumpHeight_TXTBOX.Parent = LocalPlayer
  5343. JumpHeight_TXTBOX.BackgroundColor3 = Color3.new(0.65098, 0.65098, 0.65098)
  5344. JumpHeight_TXTBOX.BorderSizePixel = 0
  5345. JumpHeight_TXTBOX.Position = UDim2.new(0.704313159, 0, 0.261020631, 0)
  5346. JumpHeight_TXTBOX.Size = UDim2.new(0, 40, 0, 26)
  5347. JumpHeight_TXTBOX.Font = Enum.Font.SourceSans
  5348. JumpHeight_TXTBOX.FontSize = Enum.FontSize.Size14
  5349. JumpHeight_TXTBOX.Text = ""
  5350. JumpHeight_TXTBOX.TextScaled = true
  5351. JumpHeight_TXTBOX.TextSize = 14
  5352. JumpHeight_TXTBOX.TextWrapped = true
  5353.  
  5354. Chat.Name = "Chat"
  5355. Chat.Parent = LocalPlayer
  5356. Chat.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5357. Chat.BorderSizePixel = 0
  5358. Chat.Position = UDim2.new(0.0306223109, 0, 0.456786126, 0)
  5359. Chat.Size = UDim2.new(0, 80, 0, 26)
  5360. Chat.Font = Enum.Font.Arial
  5361. Chat.FontSize = Enum.FontSize.Size18
  5362. Chat.Text = "Chat"
  5363. Chat.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5364. Chat.TextSize = 18
  5365. Chat.TextWrapped = true
  5366.  
  5367. Chat_TXTBOX.Name = "Chat_TXTBOX"
  5368. Chat_TXTBOX.Parent = LocalPlayer
  5369. Chat_TXTBOX.BackgroundColor3 = Color3.new(0.65098, 0.65098, 0.65098)
  5370. Chat_TXTBOX.BorderSizePixel = 0
  5371. Chat_TXTBOX.Position = UDim2.new(0.275600791, 0, 0.456786126, 0)
  5372. Chat_TXTBOX.Size = UDim2.new(0, 222, 0, 26)
  5373. Chat_TXTBOX.Font = Enum.Font.SourceSans
  5374. Chat_TXTBOX.FontSize = Enum.FontSize.Size14
  5375. Chat_TXTBOX.Text = ""
  5376. Chat_TXTBOX.TextScaled = true
  5377. Chat_TXTBOX.TextSize = 14
  5378. Chat_TXTBOX.TextWrapped = true
  5379.  
  5380. Respawn.Name = "Respawn"
  5381. Respawn.Parent = LocalPlayer
  5382. Respawn.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5383. Respawn.BorderSizePixel = 0
  5384. Respawn.Position = UDim2.new(0.734935462, 0, 0.0326275788, 0)
  5385. Respawn.Size = UDim2.new(0, 80, 0, 26)
  5386. Respawn.Font = Enum.Font.Arial
  5387. Respawn.FontSize = Enum.FontSize.Size18
  5388. Respawn.Text = "Respawn"
  5389. Respawn.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5390. Respawn.TextSize = 18
  5391. Respawn.TextWrapped = true
  5392.  
  5393. HipHeight.Name = "HipHeight"
  5394. HipHeight.Parent = LocalPlayer
  5395. HipHeight.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5396. HipHeight.BorderSizePixel = 0
  5397. HipHeight.Position = UDim2.new(0.0306223109, 0, 0.358903378, 0)
  5398. HipHeight.Size = UDim2.new(0, 80, 0, 26)
  5399. HipHeight.Font = Enum.Font.Arial
  5400. HipHeight.FontSize = Enum.FontSize.Size18
  5401. HipHeight.Text = "HipHeight"
  5402. HipHeight.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5403. HipHeight.TextSize = 18
  5404. HipHeight.TextWrapped = true
  5405.  
  5406. HipHeight_TXTBOX.Name = "HipHeight_TXTBOX"
  5407. HipHeight_TXTBOX.Parent = LocalPlayer
  5408. HipHeight_TXTBOX.BackgroundColor3 = Color3.new(0.65098, 0.65098, 0.65098)
  5409. HipHeight_TXTBOX.BorderSizePixel = 0
  5410. HipHeight_TXTBOX.Position = UDim2.new(0.275600791, 0, 0.358903378, 0)
  5411. HipHeight_TXTBOX.Size = UDim2.new(0, 40, 0, 26)
  5412. HipHeight_TXTBOX.Font = Enum.Font.SourceSans
  5413. HipHeight_TXTBOX.FontSize = Enum.FontSize.Size14
  5414. HipHeight_TXTBOX.Text = ""
  5415. HipHeight_TXTBOX.TextScaled = true
  5416. HipHeight_TXTBOX.TextSize = 14
  5417. HipHeight_TXTBOX.TextWrapped = true
  5418.  
  5419. Noclip.Name = "Noclip"
  5420. Noclip.Parent = LocalPlayer
  5421. Noclip.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5422. Noclip.BorderSizePixel = 0
  5423. Noclip.Position = UDim2.new(0.0306223109, 0, 0.130510315, 0)
  5424. Noclip.Size = UDim2.new(0, 80, 0, 26)
  5425. Noclip.Font = Enum.Font.Arial
  5426. Noclip.FontSize = Enum.FontSize.Size18
  5427. Noclip.Text = "Noclip"
  5428. Noclip.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5429. Noclip.TextSize = 18
  5430. Noclip.TextWrapped = true
  5431.  
  5432. Sit.Name = "Sit"
  5433. Sit.Parent = LocalPlayer
  5434. Sit.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5435. Sit.BorderSizePixel = 0
  5436. Sit.Position = UDim2.new(0.398090035, 0, 0.130510315, 0)
  5437. Sit.Size = UDim2.new(0, 80, 0, 26)
  5438. Sit.Font = Enum.Font.Arial
  5439. Sit.FontSize = Enum.FontSize.Size18
  5440. Sit.Text = "Sit"
  5441. Sit.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5442. Sit.TextSize = 18
  5443. Sit.TextWrapped = true
  5444.  
  5445. Jump.Name = "Jump"
  5446. Jump.Parent = LocalPlayer
  5447. Jump.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5448. Jump.BorderSizePixel = 0
  5449. Jump.Position = UDim2.new(0.734935462, 0, 0.130510315, 0)
  5450. Jump.Size = UDim2.new(0, 80, 0, 26)
  5451. Jump.Font = Enum.Font.Arial
  5452. Jump.FontSize = Enum.FontSize.Size18
  5453. Jump.Text = "Jump"
  5454. Jump.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5455. Jump.TextSize = 18
  5456. Jump.TextWrapped = true
  5457.  
  5458. HideName.Name = "HideName"
  5459. HideName.Parent = LocalPlayer
  5460. HideName.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5461. HideName.BorderSizePixel = 0
  5462. HideName.Position = UDim2.new(0.0306223109, 0, 0.880944669, 0)
  5463. HideName.Size = UDim2.new(0, 80, 0, 26)
  5464. HideName.Font = Enum.Font.Arial
  5465. HideName.FontSize = Enum.FontSize.Size18
  5466. HideName.Text = "HideName"
  5467. HideName.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5468. HideName.TextSize = 18
  5469. HideName.TextWrapped = true
  5470.  
  5471. Spam.Name = "Spam"
  5472. Spam.Parent = LocalPlayer
  5473. Spam.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5474. Spam.BorderSizePixel = 0
  5475. Spam.Position = UDim2.new(0.0306223109, 0, 0.554668844, 0)
  5476. Spam.Size = UDim2.new(0, 80, 0, 26)
  5477. Spam.Font = Enum.Font.Arial
  5478. Spam.FontSize = Enum.FontSize.Size18
  5479. Spam.Text = "Spam"
  5480. Spam.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5481. Spam.TextSize = 18
  5482. Spam.TextWrapped = true
  5483.  
  5484. Freeze.Name = "Freeze"
  5485. Freeze.Parent = LocalPlayer
  5486. Freeze.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5487. Freeze.BorderSizePixel = 0
  5488. Freeze.Position = UDim2.new(0.398090035, 0, 0.880944669, 0)
  5489. Freeze.Size = UDim2.new(0, 80, 0, 26)
  5490. Freeze.Font = Enum.Font.Arial
  5491. Freeze.FontSize = Enum.FontSize.Size18
  5492. Freeze.Text = "Freeze"
  5493. Freeze.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5494. Freeze.TextSize = 18
  5495. Freeze.TextWrapped = true
  5496.  
  5497. Btools.Name = "Btools"
  5498. Btools.Parent = LocalPlayer
  5499. Btools.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5500. Btools.BorderSizePixel = 0
  5501. Btools.Position = UDim2.new(0.0306223109, 0, 0.783061862, 0)
  5502. Btools.Size = UDim2.new(0, 80, 0, 26)
  5503. Btools.Font = Enum.Font.Arial
  5504. Btools.FontSize = Enum.FontSize.Size18
  5505. Btools.Text = "Btools"
  5506. Btools.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5507. Btools.TextSize = 18
  5508. Btools.TextWrapped = true
  5509.  
  5510. Spin.Name = "Spin"
  5511. Spin.Parent = LocalPlayer
  5512. Spin.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5513. Spin.BorderSizePixel = 0
  5514. Spin.Position = UDim2.new(0.398090035, 0, 0.783061862, 0)
  5515. Spin.Size = UDim2.new(0, 80, 0, 26)
  5516. Spin.Font = Enum.Font.Arial
  5517. Spin.FontSize = Enum.FontSize.Size18
  5518. Spin.Text = "Spin"
  5519. Spin.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5520. Spin.TextSize = 18
  5521. Spin.TextWrapped = true
  5522.  
  5523. NoLimbs.Name = "NoLimbs"
  5524. NoLimbs.Parent = LocalPlayer
  5525. NoLimbs.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5526. NoLimbs.BorderSizePixel = 0
  5527. NoLimbs.Position = UDim2.new(0.734935462, 0, 0.880944669, 0)
  5528. NoLimbs.Size = UDim2.new(0, 80, 0, 26)
  5529. NoLimbs.Font = Enum.Font.Arial
  5530. NoLimbs.FontSize = Enum.FontSize.Size18
  5531. NoLimbs.Text = "NoLimbs"
  5532. NoLimbs.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5533. NoLimbs.TextSize = 18
  5534. NoLimbs.TextWrapped = true
  5535.  
  5536. Seizure.Name = "Seizure"
  5537. Seizure.Parent = LocalPlayer
  5538. Seizure.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5539. Seizure.BorderSizePixel = 0
  5540. Seizure.Position = UDim2.new(0.734935462, 0, 0.783061862, 0)
  5541. Seizure.Size = UDim2.new(0, 80, 0, 26)
  5542. Seizure.Font = Enum.Font.Arial
  5543. Seizure.FontSize = Enum.FontSize.Size18
  5544. Seizure.Text = "Seizure"
  5545. Seizure.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5546. Seizure.TextSize = 18
  5547. Seizure.TextWrapped = true
  5548.  
  5549. Games.Name = "Games"
  5550. Games.Parent = MainFrame
  5551. Games.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8)
  5552. Games.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  5553. Games.BorderSizePixel = 2
  5554. Games.Position = UDim2.new(0.31400001, -21, 0.180000007, -33)
  5555. Games.Size = UDim2.new(0, 328, 0, 307)
  5556. Games.Visible = false
  5557.  
  5558. Scripts.Name = "Scripts"
  5559. Scripts.Parent = MainFrame
  5560. Scripts.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8)
  5561. Scripts.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  5562. Scripts.BorderSizePixel = 2
  5563. Scripts.Position = UDim2.new(0.31400001, -21, 0.180000007, -33)
  5564. Scripts.Size = UDim2.new(0, 328, 0, 307)
  5565. Scripts.Visible = false
  5566.  
  5567. Energize.Name = "Energize"
  5568. Energize.Parent = Scripts
  5569. Energize.BackgroundColor3 = Color3.new(0.960784, 0.419608, 0.145098)
  5570. Energize.BorderColor3 = Color3.new(0.960784, 0.419608, 0.145098)
  5571. Energize.BorderSizePixel = 3
  5572. Energize.Position = UDim2.new(0.183430299, 0, 0.0326275788, 0)
  5573. Energize.Size = UDim2.new(0, 200, 0, 30)
  5574. Energize.Font = Enum.Font.ArialBold
  5575. Energize.FontSize = Enum.FontSize.Size18
  5576. Energize.Text = "Animation GUI for R6/R15"
  5577. Energize.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5578. Energize.TextScaled = true
  5579. Energize.TextSize = 18
  5580. Energize.TextWrapped = true
  5581.  
  5582. GlitchMax.Name = "GlitchMax"
  5583. GlitchMax.Parent = Scripts
  5584. GlitchMax.BackgroundColor3 = Color3.new(0.298039, 0.509804, 0.901961)
  5585. GlitchMax.BorderColor3 = Color3.new(0.298039, 0.509804, 0.901961)
  5586. GlitchMax.BorderSizePixel = 3
  5587. GlitchMax.Position = UDim2.new(0.183430299, 0, 0.358903378, 0)
  5588. GlitchMax.Size = UDim2.new(0, 200, 0, 30)
  5589. GlitchMax.Font = Enum.Font.ArialBold
  5590. GlitchMax.FontSize = Enum.FontSize.Size28
  5591. GlitchMax.Text = "GlitchMax GUI"
  5592. GlitchMax.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5593. GlitchMax.TextSize = 25
  5594. GlitchMax.TextWrapped = true
  5595.  
  5596. Energize_TXT.Name = "Energize_TXT"
  5597. Energize_TXT.Parent = Scripts
  5598. Energize_TXT.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  5599. Energize_TXT.BorderColor3 = Color3.new(0.960784, 0.419608, 0.145098)
  5600. Energize_TXT.BorderSizePixel = 3
  5601. Energize_TXT.Position = UDim2.new(0.183430299, 0, 0.130510315, 0)
  5602. Energize_TXT.Size = UDim2.new(0, 200, 0, 50)
  5603. Energize_TXT.Font = Enum.Font.SourceSansSemibold
  5604. Energize_TXT.FontSize = Enum.FontSize.Size14
  5605. Energize_TXT.Text = "Use cool animations on yourself!"
  5606. Energize_TXT.TextScaled = true
  5607. Energize_TXT.TextSize = 14
  5608. Energize_TXT.TextStrokeColor3 = Color3.new(1, 0.533333, 0.152941)
  5609. Energize_TXT.TextStrokeTransparency = 0.89999997615814
  5610. Energize_TXT.TextWrapped = true
  5611.  
  5612. GlitchMax_TXT.Name = "GlitchMax_TXT"
  5613. GlitchMax_TXT.Parent = Scripts
  5614. GlitchMax_TXT.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  5615. GlitchMax_TXT.BorderColor3 = Color3.new(0.298039, 0.509804, 0.901961)
  5616. GlitchMax_TXT.BorderSizePixel = 3
  5617. GlitchMax_TXT.Position = UDim2.new(0.183430299, 0, 0.456786126, 0)
  5618. GlitchMax_TXT.Size = UDim2.new(0, 200, 0, 50)
  5619. GlitchMax_TXT.Font = Enum.Font.SourceSansSemibold
  5620. GlitchMax_TXT.FontSize = Enum.FontSize.Size14
  5621. GlitchMax_TXT.Text = "Annoy/glitch people in the server!"
  5622. GlitchMax_TXT.TextScaled = true
  5623. GlitchMax_TXT.TextSize = 14
  5624. GlitchMax_TXT.TextStrokeColor3 = Color3.new(0, 0.819608, 1)
  5625. GlitchMax_TXT.TextStrokeTransparency = 0.89999997615814
  5626. GlitchMax_TXT.TextWrapped = true
  5627.  
  5628. Verspin.Name = "Verspin"
  5629. Verspin.Parent = Scripts
  5630. Verspin.BackgroundColor3 = Color3.new(0.278431, 0.827451, 0.109804)
  5631. Verspin.BorderColor3 = Color3.new(0.278431, 0.827451, 0.109804)
  5632. Verspin.BorderSizePixel = 3
  5633. Verspin.Position = UDim2.new(0.183430299, 0, 0.685179174, 0)
  5634. Verspin.Size = UDim2.new(0, 200, 0, 30)
  5635. Verspin.Font = Enum.Font.ArialBold
  5636. Verspin.FontSize = Enum.FontSize.Size28
  5637. Verspin.Text = "Verspin GUI"
  5638. Verspin.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5639. Verspin.TextSize = 25
  5640. Verspin.TextWrapped = true
  5641.  
  5642. Verspin_TXT.Name = "Verspin_TXT"
  5643. Verspin_TXT.Parent = Scripts
  5644. Verspin_TXT.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  5645. Verspin_TXT.BorderColor3 = Color3.new(0.278431, 0.827451, 0.109804)
  5646. Verspin_TXT.BorderSizePixel = 3
  5647. Verspin_TXT.Position = UDim2.new(0.183430299, 0, 0.783061862, 0)
  5648. Verspin_TXT.Size = UDim2.new(0, 200, 0, 50)
  5649. Verspin_TXT.Font = Enum.Font.SourceSansSemibold
  5650. Verspin_TXT.FontSize = Enum.FontSize.Size14
  5651. Verspin_TXT.Text = "Kill/Bring/Attach players with tools!"
  5652. Verspin_TXT.TextScaled = true
  5653. Verspin_TXT.TextSize = 14
  5654. Verspin_TXT.TextStrokeColor3 = Color3.new(1, 0.533333, 0.152941)
  5655. Verspin_TXT.TextStrokeTransparency = 0.89999997615814
  5656. Verspin_TXT.TextWrapped = true
  5657.  
  5658. SideFrame.Name = "SideFrame"
  5659. SideFrame.Parent = Arosia
  5660. SideFrame.Active = true
  5661. SideFrame.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  5662. SideFrame.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  5663. SideFrame.BorderSizePixel = 2
  5664. SideFrame.Draggable = true
  5665. SideFrame.Position = UDim2.new(0.308999985, 0, 0.182999998, 0)
  5666. SideFrame.Size = UDim2.new(0, 448, 0, 334)
  5667. SideFrame.Visible = false
  5668. SideFrame.ZIndex = 9
  5669.  
  5670. SIDE_Title.Name = "SIDE_Title"
  5671. SIDE_Title.Parent = SideFrame
  5672. SIDE_Title.Active = true
  5673. SIDE_Title.BackgroundColor3 = Color3.new(1, 1, 1)
  5674. SIDE_Title.BackgroundTransparency = 1
  5675. SIDE_Title.Size = UDim2.new(0, 90, 0, 24)
  5676. SIDE_Title.Font = Enum.Font.ArialBold
  5677. SIDE_Title.FontSize = Enum.FontSize.Size24
  5678. SIDE_Title.Text = "Arosia "
  5679. SIDE_Title.TextColor3 = Color3.new(0.368627, 0.976471, 0.262745)
  5680. SIDE_Title.TextScaled = true
  5681. SIDE_Title.TextSize = 19
  5682. SIDE_Title.TextWrapped = true
  5683. SIDE_Title.ZIndex = 10
  5684.  
  5685. OpenGUI.Name = "OpenGUI"
  5686. OpenGUI.Parent = SideFrame
  5687. OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  5688. OpenGUI.BackgroundTransparency = 1
  5689. OpenGUI.Position = UDim2.new(0.560000002, 166, 0.100000001, 0)
  5690. OpenGUI.Size = UDim2.new(0, 38, 0, 24)
  5691. OpenGUI.Font = Enum.Font.ArialBold
  5692. OpenGUI.FontSize = Enum.FontSize.Size32
  5693. OpenGUI.Text = "X"
  5694. OpenGUI.TextColor3 = Color3.new(0.615686, 0, 0)
  5695. OpenGUI.TextSize = 30
  5696. OpenGUI.ZIndex = 10
  5697.  
  5698. SIDE_FE_Check.Name = "SIDE_FE_Check"
  5699. SIDE_FE_Check.Parent = SideFrame
  5700. SIDE_FE_Check.BackgroundColor3 = Color3.new(1, 1, 1)
  5701. SIDE_FE_Check.BackgroundTransparency = 1
  5702. SIDE_FE_Check.Position = UDim2.new(0.291458786, 0, 0, 0)
  5703. SIDE_FE_Check.Size = UDim2.new(0, 223, 0, 24)
  5704. SIDE_FE_Check.Font = Enum.Font.Highway
  5705. SIDE_FE_Check.FontSize = Enum.FontSize.Size14
  5706. SIDE_FE_Check.Text = "Error loading FE Checker"
  5707. SIDE_FE_Check.TextColor3 = Color3.new(1, 1, 1)
  5708. SIDE_FE_Check.TextScaled = true
  5709. SIDE_FE_Check.TextSize = 14
  5710. SIDE_FE_Check.TextWrapped = true
  5711. SIDE_FE_Check.ZIndex = 10
  5712.  
  5713. icon.Name = "icon"
  5714. icon.Parent = SideTabs
  5715. icon.BackgroundColor3 = Color3.new(1, 1, 1)
  5716. icon.BackgroundTransparency = 1
  5717. icon.Position = UDim2.new(0, 0, 0.51, 0)
  5718. icon.Size = UDim2.new(0, 120, 0, 110)
  5719. icon.Image = "http://www.roblox.com/asset/?id=1227728863"
  5720. icon.ZIndex = 6
  5721.  
  5722. SideTabsBrick.Name = "SideTabsBrick"
  5723. SideTabsBrick.Parent = MainFrame
  5724. SideTabsBrick.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  5725. SideTabsBrick.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  5726. SideTabsBrick.BorderSizePixel = 0
  5727. SideTabsBrick.Position = UDim2.new(0.270000011, 0, 0.0799999982, 0)
  5728. SideTabsBrick.Size = UDim2.new(0, 0, 0, 307)
  5729.  
  5730. ResetDefault.Name = "ResetDefault"
  5731. ResetDefault.Parent = LocalPlayer
  5732. ResetDefault.BackgroundColor3 = Color3.new(0.6, 0.192157, 0.192157)
  5733. ResetDefault.BorderSizePixel = 0
  5734. ResetDefault.Position = UDim2.new(0.30627659, 0, 0.554668844, 0)
  5735. ResetDefault.Size = UDim2.new(0, 107, 0, 26)
  5736. ResetDefault.Font = Enum.Font.Arial
  5737. ResetDefault.FontSize = Enum.FontSize.Size18
  5738. ResetDefault.Text = "ResetDefault"
  5739. ResetDefault.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5740. ResetDefault.TextSize = 18
  5741. ResetDefault.TextWrapped = true
  5742.  
  5743. Push.Name = "Push"
  5744. Push.Parent = Others
  5745. Push.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5746. Push.BorderSizePixel = 0
  5747. Push.Position = UDim2.new(0.0612553172, 0, 0.326499889, 0)
  5748. Push.Size = UDim2.new(0, 78, 0, 26)
  5749. Push.Font = Enum.Font.Arial
  5750. Push.FontSize = Enum.FontSize.Size18
  5751. Push.Text = "Push"
  5752. Push.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5753. Push.TextSize = 18
  5754. Push.TextWrapped = true
  5755.  
  5756. ClientFreeze.Name = "ClientFreeze"
  5757. ClientFreeze.Parent = Others
  5758. ClientFreeze.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5759. ClientFreeze.BorderSizePixel = 0
  5760. ClientFreeze.Position = UDim2.new(0.367531896, 0, 0.326499889, 0)
  5761. ClientFreeze.Size = UDim2.new(0, 78, 0, 26)
  5762. ClientFreeze.Font = Enum.Font.Arial
  5763. ClientFreeze.FontSize = Enum.FontSize.Size14
  5764. ClientFreeze.Text = "ClientFreeze"
  5765. ClientFreeze.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5766. ClientFreeze.TextSize = 14
  5767. ClientFreeze.TextWrapped = true
  5768.  
  5769. Orbit.Name = "Orbit"
  5770. Orbit.Parent = Others
  5771. Orbit.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5772. Orbit.BorderSizePixel = 0
  5773. Orbit.Position = UDim2.new(0.673808455, 0, 0.326499889, 0)
  5774. Orbit.Size = UDim2.new(0, 78, 0, 26)
  5775. Orbit.Font = Enum.Font.Arial
  5776. Orbit.FontSize = Enum.FontSize.Size18
  5777. Orbit.Text = "Orbit"
  5778. Orbit.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5779. Orbit.TextSize = 18
  5780. Orbit.TextWrapped = true
  5781.  
  5782. KillAll.Name = "KillAll"
  5783. KillAll.Parent = Others
  5784. KillAll.BackgroundColor3 = Color3.new(0.423529, 0.0862745, 0.0627451)
  5785. KillAll.BorderSizePixel = 0
  5786. KillAll.Position = UDim2.new(0.0612446219, 0, 0.880944669, 0)
  5787. KillAll.Size = UDim2.new(0, 78, 0, 26)
  5788. KillAll.Font = Enum.Font.Arial
  5789. KillAll.FontSize = Enum.FontSize.Size18
  5790. KillAll.Text = "Kill All"
  5791. KillAll.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5792. KillAll.TextSize = 18
  5793. KillAll.TextWrapped = true
  5794.  
  5795. Temp.Name = "Temp"
  5796. Temp.Parent = Games
  5797. Temp.BackgroundColor3 = Color3.new(1, 1, 1)
  5798. Temp.BackgroundTransparency = 1
  5799. Temp.Position = UDim2.new(0.183430299, -60, 0.456786126, -17)
  5800. Temp.Rotation = -30
  5801. Temp.Size = UDim2.new(0, 328, 0, 60)
  5802. Temp.Font = Enum.Font.Highway
  5803. Temp.FontSize = Enum.FontSize.Size14
  5804. Temp.Text = "Coming soon!"
  5805. Temp.TextScaled = true
  5806. Temp.TextSize = 14
  5807. Temp.TextStrokeColor3 = Color3.new(0.192157, 1, 0.733333)
  5808. Temp.TextStrokeTransparency = 0
  5809. Temp.TextWrapped = true
  5810.  
  5811. Experimental.Name = "Experimental"
  5812. Experimental.Parent = Others
  5813. Experimental.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5814. Experimental.BorderSizePixel = 0
  5815. Experimental.Position = UDim2.new(0.0611434318, 0, 0.424158514, 0)
  5816. Experimental.Size = UDim2.new(0, 78, 0, 26)
  5817. Experimental.Font = Enum.Font.Arial
  5818. Experimental.FontSize = Enum.FontSize.Size14
  5819. Experimental.Text = "Experimental"
  5820. Experimental.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5821. Experimental.TextSize = 14
  5822. Experimental.TextWrapped = true
  5823.  
  5824. CHAOS.Name = "CHAOS"
  5825. CHAOS.Parent = Others
  5826. CHAOS.BackgroundColor3 = Color3.new(0.0431373, 0.231373, 0.0862745)
  5827. CHAOS.BorderSizePixel = 0
  5828. CHAOS.Position = UDim2.new(0.672577739, 0, 0.424158514, 0)
  5829. CHAOS.Size = UDim2.new(0, 78, 0, 26)
  5830. CHAOS.Font = Enum.Font.Arial
  5831. CHAOS.FontSize = Enum.FontSize.Size18
  5832. CHAOS.Text = "CHAOS"
  5833. CHAOS.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5834. CHAOS.TextSize = 18
  5835. CHAOS.TextWrapped = true
  5836.  
  5837. -- Buttons
  5838. if game.Workspace.FilteringEnabled == false then
  5839. FE_Check.Text = "FE is disabled"
  5840. FE_Check.TextColor3 = Color3.fromRGB(200,10,10)
  5841. SIDE_FE_Check.Text = "FE is disabled"
  5842. SIDE_FE_Check.TextColor3 = Color3.fromRGB(200,10,10)
  5843. else
  5844. FE_Check.Text = "FE is enabled"
  5845. FE_Check.TextColor3 = Color3.fromRGB(10,200,10)
  5846. SIDE_FE_Check.Text = "FE is enabled"
  5847. SIDE_FE_Check.TextColor3 = Color3.fromRGB(10,200,10)
  5848. end
  5849. col = Color3.new(0.231373, 0.231373, 0.231373)
  5850. loc = Color3.new(0.331373, 0.531373, 0.331373)
  5851.  
  5852. wait(0.4)
  5853. MainFrame:TweenPosition(UDim2.new(0.309, 0, 0.183, 0), "Out", "Bounce", 3)
  5854.  
  5855. CloseGUI.MouseButton1Click:connect(function()
  5856. CloseGUI.Visible = false
  5857. TopRow:TweenSize(UDim2.new(0, 448, 0, 334), "Out", "Sine", 1)
  5858. wait(1)
  5859. MainFrame.Visible = false
  5860. SideFrame.Position = MainFrame.Position
  5861. SideFrame.Visible = true
  5862. SideFrame:TweenSize(UDim2.new(0, 448, 0, 24), "Out", "Sine", 1)
  5863. OpenGUI.Visible = false
  5864. wait(1)
  5865. OpenGUI.Visible = true
  5866. end)
  5867.  
  5868. OpenGUI.MouseButton1Click:connect(function()
  5869. OpenGUI.Visible = false
  5870. SideFrame:TweenSize(UDim2.new(0, 448, 0, 334), "Out", "Sine", 1)
  5871. wait(1)
  5872. SideFrame.Visible = false
  5873. MainFrame.Position = SideFrame.Position
  5874. MainFrame.Visible = true
  5875. TopRow:TweenSize(UDim2.new(0, 448, 0, 24), "Out", "Sine", 1)
  5876. CloseGUI.Visible = false
  5877. wait(1)
  5878. CloseGUI.Visible = true
  5879. end)
  5880.  
  5881. TAB_Credit.MouseButton1Click:connect(function()
  5882. SideTabsBrick:TweenSize(UDim2.new(0, 328, 0, 307), "Out", "Sine", 0.5)
  5883. wait(0.5)
  5884. Games.Visible = false
  5885. LocalPlayer.Visible = false
  5886. Others.Visible = false
  5887. Scripts.Visible = false
  5888. NoneSelected.Visible = true
  5889. SideTabsBrick:TweenSize(UDim2.new(0, 0, 0, 307), "Out", "Sine", 0.5)
  5890. end)
  5891.  
  5892. TAB_Games.MouseButton1Click:connect(function()
  5893. SideTabsBrick:TweenSize(UDim2.new(0, 328, 0, 307), "Out", "Sine", 0.5)
  5894. wait(0.5)
  5895. Games.Visible = true
  5896. LocalPlayer.Visible = false
  5897. Others.Visible = false
  5898. Scripts.Visible = false
  5899. NoneSelected.Visible = false
  5900. SideTabsBrick:TweenSize(UDim2.new(0, 0, 0, 307), "Out", "Sine", 0.5)
  5901. end)
  5902.  
  5903. TAB_Scripts.MouseButton1Click:connect(function()
  5904. SideTabsBrick:TweenSize(UDim2.new(0, 328, 0, 307), "Out", "Sine", 0.5)
  5905. wait(0.5)
  5906. Games.Visible = false
  5907. LocalPlayer.Visible = false
  5908. Others.Visible = false
  5909. Scripts.Visible = true
  5910. NoneSelected.Visible = false
  5911. SideTabsBrick:TweenSize(UDim2.new(0, 0, 0, 307), "Out", "Sine", 0.5)
  5912. end)
  5913.  
  5914. TAB_LocalPlayer.MouseButton1Click:connect(function()
  5915. SideTabsBrick:TweenSize(UDim2.new(0, 328, 0, 307), "Out", "Sine", 0.5)
  5916. wait(0.5)
  5917. Games.Visible = false
  5918. LocalPlayer.Visible = true
  5919. Others.Visible = false
  5920. Scripts.Visible = false
  5921. NoneSelected.Visible = false
  5922. SideTabsBrick:TweenSize(UDim2.new(0, 0, 0, 307), "Out", "Sine", 0.5)
  5923. end)
  5924.  
  5925. TAB_Others.MouseButton1Click:connect(function()
  5926. SideTabsBrick:TweenSize(UDim2.new(0, 328, 0, 307), "Out", "Sine", 0.5)
  5927. wait(0.5)
  5928. Games.Visible = false
  5929. LocalPlayer.Visible = false
  5930. Others.Visible = true
  5931. Scripts.Visible = false
  5932. NoneSelected.Visible = false
  5933. SideTabsBrick:TweenSize(UDim2.new(0, 0, 0, 307), "Out", "Sine", 0.5)
  5934. end)
  5935.  
  5936. -- LOCAL PLAYER ---------------------------------
  5937. -- LOCAL PLAYER ---------------------------------
  5938.  
  5939. HipHeight.MouseButton1Click:connect(function()
  5940. game.Players.LocalPlayer.Character.Humanoid.HipHeight = HipHeight_TXTBOX.Text
  5941. end)
  5942. JumpHeight.MouseButton1Click:connect(function()
  5943. game.Players.LocalPlayer.Character.Humanoid.JumpPower = JumpHeight_TXTBOX.Text
  5944. end)
  5945. Speed.MouseButton1Click:connect(function()
  5946. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Speed_TXTBOX.Text
  5947. end)
  5948. Sit.MouseButton1Click:connect(function()
  5949. game.Players.LocalPlayer.Character.Humanoid.Sit = true
  5950. end)
  5951. Jump.MouseButton1Click:connect(function()
  5952. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  5953. end)
  5954. frost = false
  5955. Freeze.MouseButton1Click:connect(function()
  5956. frost = not frost
  5957. if frost then
  5958. game.Players.LocalPlayer.Character.Torso.Anchored = true
  5959. game.Players.LocalPlayer.Character.Head.Anchored = true
  5960. game.Players.LocalPlayer.Character["Left Leg"].Anchored = true
  5961. game.Players.LocalPlayer.Character["Left Arm"].Anchored = true
  5962. game.Players.LocalPlayer.Character["Right Leg"].Anchored = true
  5963. game.Players.LocalPlayer.Character["Right Arm"].Anchored = true
  5964. Freeze.BackgroundColor3 = loc
  5965. else
  5966. game.Players.LocalPlayer.Character.Torso.Anchored = false
  5967. game.Players.LocalPlayer.Character.Head.Anchored = false
  5968. game.Players.LocalPlayer.Character["Left Leg"].Anchored = false
  5969. game.Players.LocalPlayer.Character["Left Arm"].Anchored = false
  5970. game.Players.LocalPlayer.Character["Right Leg"].Anchored = false
  5971. game.Players.LocalPlayer.Character["Right Arm"].Anchored = false
  5972. Freeze.BackgroundColor3 = col
  5973. end
  5974. end)
  5975. Chat.MouseButton1Click:connect(function()
  5976. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(Chat_TXTBOX.Text, "All")
  5977. end)
  5978. keepspam = false
  5979. Spam.MouseButton1Click:connect(function()
  5980. keepspam = not keepspam
  5981. if keepspam then
  5982. Spam.BackgroundColor3 = loc
  5983. else
  5984. Spam.BackgroundColor3 = col
  5985. end
  5986. while wait(0.5) do
  5987. if keepspam then
  5988. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(Chat_TXTBOX.Text, "All")
  5989. end
  5990. end
  5991. end)
  5992. gmd = false
  5993. GodMode.MouseButton1Click:connect(function()
  5994. gmd = not gmd
  5995. if gmd then
  5996. game.Players.LocalPlayer.Character.Humanoid.Name = "no"
  5997. local turn1 = game.Players.LocalPlayer.Character["no"]:Clone()
  5998. turn1.Parent = game.Players.LocalPlayer.Character
  5999. turn1.Name = "Humanoid"
  6000. wait(0.1)
  6001. game.Players.LocalPlayer.Character["no"]:Destroy()
  6002. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  6003. game.Players.LocalPlayer.Character.Animate.Disabled = true
  6004. wait(0.1)
  6005. game.Players.LocalPlayer.Character.Animate.Disabled = false
  6006. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  6007. GodMode.BackgroundColor3 = loc
  6008. else
  6009. GodMode.BackgroundColor3 = col
  6010. end
  6011. end)
  6012. NoLimbs.MouseButton1Click:connect(function()
  6013. game.Players.LocalPlayer.Character["Left Arm"]:Destroy()
  6014. game.Players.LocalPlayer.Character["Right Arm"]:Destroy()
  6015. game.Players.LocalPlayer.Character["Right Leg"]:Destroy()
  6016. game.Players.LocalPlayer.Character["Left Leg"]:Destroy()
  6017. end)
  6018. Respawn.MouseButton1Click:connect(function()
  6019. game.Players.LocalPlayer:LoadCharacter()
  6020. end)
  6021.  
  6022. local Anim = Instance.new("Animation")
  6023. Anim.AnimationId = "rbxassetid://188632011"
  6024. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  6025. local SpinACTIVE = false
  6026. Spin.MouseButton1Click:connect(function()
  6027. SpinACTIVE = not SpinACTIVE
  6028. if SpinACTIVE then
  6029. while wait() do
  6030. if track.IsPlaying == false then
  6031. if SpinACTIVE then
  6032. track:Play(.1, 1, 2)
  6033. Spin.BackgroundColor3 = loc
  6034. else
  6035. Spin.BackgroundColor3 = col
  6036. end
  6037. end
  6038. end
  6039. else
  6040. track:Stop()
  6041. end
  6042. end)
  6043. Hidden = false
  6044. HideName.MouseButton1Click:connect(function()
  6045. Hidden = not Hidden
  6046. if Hidden then
  6047. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  6048. HideName.BackgroundColor3 = loc
  6049. else
  6050. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "Viewer"
  6051. HideName.BackgroundColor3 = col
  6052. end
  6053. end)
  6054. clip = true
  6055. Noclip.MouseButton1Click:connect(function()
  6056. clip = not clip
  6057. if not clip then
  6058. Noclip.BackgroundColor3 = loc
  6059. else
  6060. Noclip.BackgroundColor3 = col
  6061. end
  6062. game:GetService('RunService').Stepped:connect(function()
  6063. if not clip then
  6064. game.Players.LocalPlayer.Character.Head.CanCollide = false
  6065. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  6066. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  6067. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  6068. end
  6069. end)
  6070. end)
  6071. shake = false
  6072. Seizure.MouseButton1Click:connect(function()
  6073. shake = not shake
  6074. if shake then
  6075. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true
  6076. while wait() do
  6077. if shake then
  6078. game.Players.LocalPlayer.Character.Torso.Velocity = Vector3.new(math.random(-20,20),-10,math.random(-20,20))
  6079. game.Players.LocalPlayer.Character.Torso.RotVelocity = Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))
  6080. Seizure.BackgroundColor3 = loc
  6081. else
  6082. Seizure.BackgroundColor3 = col
  6083. end
  6084. end
  6085. else
  6086. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  6087. end
  6088. end)
  6089.  
  6090. local flying = false
  6091. Fly.MouseButton1Click:connect(function()
  6092. flying = not flying
  6093. repeat wait()
  6094. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  6095. local mouse = game.Players.LocalPlayer:GetMouse()
  6096. repeat wait() until mouse
  6097. local plr = game.Players.LocalPlayer
  6098. local torso = plr.Character.Torso
  6099. local deb = true
  6100. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  6101. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  6102. local maxspeed = 60
  6103. local speed = 0
  6104. if flying then
  6105. Fly.BackgroundColor3 = loc
  6106. else
  6107. Fly.BackgroundColor3 = col
  6108. end
  6109.  
  6110. function FlyFunction()
  6111. local bg = Instance.new("BodyGyro", torso)
  6112. bg.P = 9e4
  6113. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  6114. bg.cframe = torso.CFrame
  6115. local bv = Instance.new("BodyVelocity", torso)
  6116. bv.velocity = Vector3.new(0,0.1,0)
  6117. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  6118. repeat wait()
  6119. plr.Character.Humanoid.PlatformStand = true
  6120. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  6121. speed = speed+.5+(speed/maxspeed)
  6122. if speed > maxspeed then
  6123. speed = maxspeed
  6124. end
  6125. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  6126. speed = speed-1
  6127. if speed < 0 then
  6128. speed = 0
  6129. end
  6130. end
  6131. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  6132. 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
  6133. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  6134. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  6135. 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
  6136. else
  6137. bv.velocity = Vector3.new(0,0.1,0)
  6138. end
  6139. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  6140. until not flying
  6141. ctrl = {f = 0, b = 0, l = 0, r = 0}
  6142. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  6143. speed = 0
  6144. bg:Destroy()
  6145. bv:Destroy()
  6146. plr.Character.Humanoid.PlatformStand = false
  6147. end
  6148. mouse.KeyDown:connect(function(key)
  6149. if key:lower() == "w" then
  6150. ctrl.f = 1
  6151. elseif key:lower() == "s" then
  6152. ctrl.b = -1
  6153. elseif key:lower() == "a" then
  6154. ctrl.l = -1
  6155. elseif key:lower() == "d" then
  6156. ctrl.r = 1
  6157. end
  6158. end)
  6159. mouse.KeyUp:connect(function(key)
  6160. if key:lower() == "w" then
  6161. ctrl.f = 0
  6162. elseif key:lower() == "s" then
  6163. ctrl.b = 0
  6164. elseif key:lower() == "a" then
  6165. ctrl.l = 0
  6166. elseif key:lower() == "d" then
  6167. ctrl.r = 0
  6168. end
  6169. end)
  6170. FlyFunction()
  6171. end)
  6172.  
  6173. Btools.MouseButton1Click:connect(function()
  6174. local Clone_T = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  6175. Clone_T.BinType = "Clone"
  6176. local Destruct = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  6177. Destruct.BinType = "Hammer"
  6178. local Hold_T = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  6179. Hold_T.BinType = "Grab"
  6180. local a = game.Workspace:getChildren()
  6181. for i = 1, #a do
  6182. if a[i].className == "Part" then
  6183. a[i].Locked = false
  6184. elseif a[i].className == "Model" then
  6185. local r = a[i]:getChildren()
  6186. for i = 1, #r do
  6187. if r[i].className == "Part" then
  6188. r[i].Locked = false
  6189. end
  6190. end
  6191. end
  6192. end
  6193. end)
  6194.  
  6195. ResetDefault.MouseButton1Click:connect(function()
  6196. flying = false
  6197. game.Players.LocalPlayer.Character.Torso.Anchored = false
  6198. game.Players.LocalPlayer.Character.Head.Anchored = false
  6199. game.Players.LocalPlayer.Character["Left Leg"].Anchored = false
  6200. game.Players.LocalPlayer.Character["Left Arm"].Anchored = false
  6201. game.Players.LocalPlayer.Character["Right Leg"].Anchored = false
  6202. game.Players.LocalPlayer.Character["Right Arm"].Anchored = false
  6203. game.Players.LocalPlayer.Character.Humanoid.HipHeight = 0
  6204. game.Players.LocalPlayer.Character.Humanoid.Sit = false
  6205. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  6206. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  6207. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "Viewer"
  6208. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  6209. end)
  6210.  
  6211. -- OTHERS ---------------------------------
  6212. -- OTHERS ---------------------------------
  6213.  
  6214. function GetPlayer(String) --thank you/credit to Timeless/xFunnieuss
  6215. local Found = {}
  6216. local strl = String:lower()
  6217. if strl == "all" then
  6218. for i,v in pairs(game.Players:GetPlayers()) do
  6219. table.insert(Found,v)
  6220. end
  6221. elseif strl == "others" then
  6222. for i,v in pairs(game.Players:GetPlayers()) do
  6223. if v.Name ~= game.Players.LocalPlayer.Name then
  6224. table.insert(Found,v)
  6225. end
  6226. end
  6227. else
  6228. for i,v in pairs(game.Players:GetPlayers()) do
  6229. if v.Name:lower():sub(1, #String) == String:lower() then
  6230. table.insert(Found,v)
  6231. end
  6232. end
  6233. end
  6234. return Found
  6235. end
  6236.  
  6237. Teleport.MouseButton1Click:connect(function()
  6238. for i,v in pairs(GetPlayer(PlayerUserEnter.Text))do
  6239. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  6240. end
  6241. end)
  6242. currentview = false
  6243. View.MouseButton1Click:connect(function()
  6244. currentview = not currentview
  6245. for i,v in pairs(GetPlayer(PlayerUserEnter.Text))do
  6246. if currentview then
  6247. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  6248. View.BackgroundColor3 = loc
  6249. else
  6250. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Head
  6251. View.BackgroundColor3 = col
  6252. end
  6253. end
  6254. end)
  6255. annoying = false
  6256. Annoy.MouseButton1Click:connect(function()
  6257. annoying = not annoying
  6258. for i,v in pairs(GetPlayer(PlayerUserEnter.Text))do
  6259. while wait() do
  6260. if annoying then
  6261. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  6262. Annoy.BackgroundColor3 = loc
  6263. else
  6264. Annoy.BackgroundColor3 = col
  6265. end
  6266. end
  6267. end
  6268. end)
  6269. cfreeze = false
  6270. ClientFreeze.MouseButton1Click:connect(function()
  6271. cfreeze = not cfreeze
  6272. for i,v in pairs(GetPlayer(PlayerUserEnter.Text))do
  6273. if cfreeze then
  6274. game.Players[v.Name].Character.Torso.Anchored = true
  6275. game.Players[v.Name].Character.Head.Anchored = true
  6276. game.Players[v.Name].Character["Left Leg"].Anchored = true
  6277. game.Players[v.Name].Character["Left Arm"].Anchored = true
  6278. game.Players[v.Name].Character["Right Leg"].Anchored = true
  6279. game.Players[v.Name].Character["Right Arm"].Anchored = true
  6280. else
  6281. game.Players[v.Name].Character.Torso.Anchored = false
  6282. game.Players[v.Name].Character.Head.Anchored = false
  6283. game.Players[v.Name].Character["Left Leg"].Anchored = false
  6284. game.Players[v.Name].Character["Left Arm"].Anchored = false
  6285. game.Players[v.Name].Character["Right Leg"].Anchored = false
  6286. game.Players[v.Name].Character["Right Arm"].Anchored = false
  6287. end
  6288. end
  6289. end)
  6290. orbital = false
  6291. Orbit.MouseButton1Click:connect(function()
  6292. orbital = not orbital
  6293. if orbital then
  6294. Orbit.BackgroundColor3 = loc
  6295. local o = Instance.new("RocketPropulsion")
  6296. o.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  6297. o.Name = "Orbit"
  6298. for i,v in pairs(GetPlayer(PlayerUserEnter.Text))do
  6299. o.Target = game.Players[v.Name].Character.HumanoidRootPart
  6300. o:Fire()
  6301. game:GetService('RunService').Stepped:connect(function()
  6302. if orbital then
  6303. game.Players.LocalPlayer.Character.Head.CanCollide = false
  6304. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  6305. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  6306. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  6307. end
  6308. end)
  6309. end
  6310. else
  6311. game.Players.LocalPlayer.Character.HumanoidRootPart.Orbit:Destroy()
  6312. Orbit.BackgroundColor3 = col
  6313. end
  6314. end)
  6315. pushing = false
  6316. Push.MouseButton1Click:connect(function()
  6317. pushing = not pushing
  6318. if pushing then
  6319. Push.BackgroundColor3 = loc
  6320. local o = Instance.new("RocketPropulsion")
  6321. o.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  6322. o.Name = "Push"
  6323. o.TurnP = 2500
  6324. o.MaxThrust = 50000
  6325. o.MaxSpeed = 1000
  6326. o.ThrustP = 50000
  6327. o.CartoonFactor = 1
  6328. for i,v in pairs(GetPlayer(PlayerUserEnter.Text))do
  6329. o.Target = game.Players[v.Name].Character.HumanoidRootPart
  6330. o:Fire()
  6331. game:GetService('RunService').Stepped:connect(function()
  6332. if pushing then
  6333. game.Players.LocalPlayer.Character.Head.CanCollide = false
  6334. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  6335. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  6336. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  6337. end
  6338. end)
  6339. end
  6340. else
  6341. game.Players.LocalPlayer.Character.HumanoidRootPart.Push:Destroy()
  6342. Push.BackgroundColor3 = col
  6343. end
  6344. end)
  6345. local Anim = Instance.new("Animation")
  6346. Anim.AnimationId = "rbxassetid://282574440"
  6347. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  6348. flattening = false
  6349. Flatten.MouseButton1Click:connect(function()
  6350. flattening = not flattening
  6351. if flattening then
  6352. Flatten.BackgroundColor3 = loc
  6353. local o = Instance.new("RocketPropulsion")
  6354. o.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  6355. o.Name = "Flatten"
  6356. o.MaxThrust = 50000
  6357. o.MaxSpeed = 1000
  6358. o.ThrustP = 50000
  6359. o.CartoonFactor = 1
  6360. for i,v in pairs(GetPlayer(PlayerUserEnter.Text))do
  6361. o.Target = game.Players[v.Name].Character["Left Leg"]
  6362. o:Fire()
  6363. track:Play(.1, 1, 1)
  6364. game:GetService('RunService').Stepped:connect(function()
  6365. if flattening then
  6366. game.Players.LocalPlayer.Character.Head.CanCollide = false
  6367. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  6368. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  6369. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  6370. end
  6371. end)
  6372. while wait(0.3) do
  6373. if flattening then
  6374. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame + Vector3.new(0,2,0)
  6375. end
  6376. end
  6377. end
  6378. else
  6379. game.Players.LocalPlayer.Character.HumanoidRootPart.Flatten:Destroy()
  6380. Flatten.BackgroundColor3 = col
  6381. track:Stop()
  6382. end
  6383. end)
  6384. Verspin.MouseButton1Click:connect(function()
  6385. game:GetObjects("rbxassetid://1249942219")[1].Parent = game.Players.LocalPlayer.PlayerGui
  6386. end)
  6387. Energize.MouseButton1Click:connect(function()
  6388. game:GetObjects("rbxassetid://1202558084")[1].Parent = game.Players.LocalPlayer.PlayerGui
  6389. end)
  6390. GlitchMax.MouseButton1Click:connect(function()
  6391. game:GetObjects("rbxassetid://1249943137")[1].Parent = game.Players.LocalPlayer.PlayerGui
  6392. end)
  6393. Experimental.MouseButton1Click:connect(function()
  6394.  
  6395. end)
  6396. end)
  6397.  
  6398. X.Name = "X"
  6399. X.Parent = Main
  6400. X.BackgroundColor3 = Color3.new(0, 1, 1)
  6401. X.Position = UDim2.new(0.847723722, 0, -0.00053794682, 0)
  6402. X.Size = UDim2.new(0, 52, 0, 25)
  6403. X.Font = Enum.Font.Cartoon
  6404. X.Text = "X"
  6405. X.TextColor3 = Color3.new(0, 0, 0)
  6406. X.TextSize = 20
  6407. X.MouseButton1Down:connect(function()
  6408. OpenFrame.Visible = true
  6409. Main.Visible = false
  6410. end)
  6411.  
  6412. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement