Guest User

Troll Guiv2

a guest
Feb 14th, 2019
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 248.67 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local GUI = Instance.new("Frame")
  6. local Shattervast = Instance.new("TextButton")
  7. local Arosia = Instance.new("TextButton")
  8. local Jailbreaker = Instance.new("TextButton")
  9. local Cms1 = Instance.new("TextButton")
  10. local GuiUpline = Instance.new("TextLabel")
  11. local GuiDownline = Instance.new("TextLabel")
  12. local Cms3 = Instance.new("TextButton")
  13. local CMS2 = Instance.new("TextButton")
  14. local Jailbreaker_2 = Instance.new("TextButton")
  15. local Cms4 = Instance.new("TextButton")
  16. local FeGui = Instance.new("TextButton")
  17. local MinimizeButton = Instance.new("TextButton")
  18. local Image = Instance.new("ImageLabel")
  19. local OPEN = Instance.new("TextButton")
  20. wait(2)
  21. --Properties:
  22. ScreenGui.Parent = game.CoreGui
  23. --Players.XaonIsBest:WaitForChild("PlayerGui")
  24. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  25.  
  26. GUI.Name = "GUI"
  27. GUI.Parent = ScreenGui
  28. GUI.Active = true
  29. GUI.BackgroundColor3 = Color3.new(0, 1, 1)
  30. GUI.Position = UDim2.new(0.303352416, 0, 0.260700315, 0)
  31. GUI.Size = UDim2.new(0, 599, 0, 570)
  32. GUI.Visible = false
  33. GUI.Active = true
  34. GUI.Draggable = true
  35.  
  36. Shattervast.Name = "Shattervast"
  37. Shattervast.Parent = GUI
  38. Shattervast.BackgroundColor3 = Color3.new(0, 0, 1)
  39. Shattervast.Position = UDim2.new(0, 0, 0.173076928, 0)
  40. Shattervast.Size = UDim2.new(0, 137, 0, 50)
  41. Shattervast.Font = Enum.Font.SourceSans
  42. Shattervast.Text = "Shattervast"
  43. Shattervast.TextColor3 = Color3.new(1, 1, 1)
  44. Shattervast.TextSize = 30
  45. Shattervast.TextWrapped = true
  46. Shattervast.MouseButton1Click:connect(function()
  47. -- By illremember#3799
  48.  
  49. -- Important Loading
  50. trueSettings = {
  51. commandPrefix = ";";
  52. hotkeys = {};
  53. fchotkeymode = "unfc";
  54. }
  55.  
  56. -- Important Variables
  57. gsPlayers = game:GetService("Players")
  58. gsWorkspace = game:GetService("Workspace")
  59. gsLighting = game:GetService("Lighting")
  60. gsReplicatedStorage = game:GetService("ReplicatedStorage")
  61. gsCoreGui = game:GetService("CoreGui")
  62. gsTween = game:GetService("TweenService")
  63. gsHttp = game:GetService("HttpService")
  64.  
  65. LP = gsPlayers.LocalPlayer
  66. Mouse = LP:GetMouse()
  67.  
  68. defaultSettings = gsHttp:JSONEncode(trueSettings)
  69. function CreateSave()
  70. writefile("Shattervast.txt", defaultSettings)
  71. wait(0.5)
  72. local content = readfile("Shattervast.txt")
  73. local trueValue = gsHttp:JSONDecode(content)
  74. commandPrefix = trueValue.commandPrefix
  75. hotkeys = trueValue.hotkeys
  76. fchotkeymode = trueValue.fchotkeymode
  77. end
  78. function fullUpdate()
  79. local updatedSettings = {
  80. commandPrefix = commandPrefix;
  81. hotkeys = hotkeys;
  82. fchotkeymode = fchotkeymode;
  83. }
  84. local fullUPDATED = gsHttp:JSONEncode(updatedSettings)
  85. wait(0.2)
  86. writefile("Shattervast.txt", fullUPDATED)
  87. end
  88. if writefile ~= nil then
  89. function builder()
  90. local TESTsave = readfile("Shattervast.txt")
  91. if TESTsave == nil then
  92. return false
  93. else
  94. return true
  95. end
  96. end
  97. local success, message = pcall(builder)
  98. if success == true then
  99. function reader()
  100. local content = readfile("Shattervast.txt")
  101. local trueValue = gsHttp:JSONDecode(content)
  102. commandPrefix = trueValue.commandPrefix
  103. hotkeys = trueValue.hotkeys
  104. if trueValue.fchotkeymode == nil then
  105. fchotkeymode = "unfc"
  106. fullUpdate()
  107. else
  108. fchotkeymode = trueValue.fchotkeymode
  109. end
  110. end
  111. reader()
  112. elseif success == false then
  113. CreateSave()
  114. end
  115. else
  116. commandPrefix = ";"
  117. hotkeys = {}
  118. fchotkeymode = "unfc"
  119. end
  120.  
  121. CurrentGravity = gsWorkspace.Gravity
  122. CurrentWalkspeed = LP.Character.Humanoid.WalkSpeed
  123. CurrentJumppower = LP.Character.Humanoid.JumpPower
  124. CurrentHipheight = LP.Character.Humanoid.HipHeight
  125. CurrentNormal = LP.DevCameraOcclusionMode
  126.  
  127. gsWorkspace.Camera.Changed:connect(function()
  128. gsWorkspace.Camera.FieldOfView = 70
  129. end)
  130.  
  131. -- Important Functions
  132. function view(plr)
  133. if plr.Character.Humanoid ~= nil then
  134. gsWorkspace.CurrentCamera.CameraSubject = plr.Character.Humanoid
  135. else
  136. gsWorkspace.CurrentCamera.CameraSubject = plr.Character.Head
  137. end
  138. end
  139. function unlockWS()
  140. for i,part in pairs(gsWorkspace:GetDescendants()) do
  141. if part:IsA("Part") then
  142. part.Locked = false
  143. end
  144. end
  145. end
  146. function lockWS()
  147. for i,part in pairs(gsWorkspace:GetDescendants()) do
  148. if part:IsA("Part") then
  149. part.Locked = true
  150. end
  151. end
  152. end
  153. function FEGodmode()
  154. local changeview = false
  155. if gsWorkspace.CurrentCamera.CameraSubject == LP.Character.Humanoid or gsWorkspace.CurrentCamera.CameraSubject == LP.Character then
  156. changeview = true
  157. end
  158. LP.Character.Humanoid.Name = 1
  159. local l = LP.Character["1"]:Clone()
  160. l.Parent = LP.Character
  161. l.Name = "Humanoid"
  162. wait(0.1)
  163. LP.Character["1"]:Destroy()
  164. if changeview then
  165. game:GetService("Workspace").CurrentCamera.CameraSubject = LP.Character
  166. end
  167. LP.Character.Animate.Disabled = true
  168. wait(0.1)
  169. LP.Character.Animate.Disabled = false
  170. LP.Character.Humanoid.DisplayDistanceType = "None"
  171. end
  172. function RocketPropulsion(maxthrust,maxspeed,thrustp,targetplr,name)
  173. local l = Instance.new("RocketPropulsion")
  174. l.Parent = LP.Character.HumanoidRootPart
  175. l.CartoonFactor = 1
  176. l.MaxThrust = maxthrust
  177. l.MaxSpeed = maxspeed
  178. l.ThrustP = thrustp
  179. l.Name = name
  180. l.Target = targetplr.Character.HumanoidRootPart
  181. l:Fire()
  182. end
  183. function createIntro(style, msg, length)
  184. if gsCoreGui:FindFirstChild("Notification") then
  185. gsCoreGui:FindFirstChild("Notification"):Destroy()
  186. end
  187. local info = "http://www.roblox.com/asset/?id=1281284684"
  188. local warning = "http://www.roblox.com/asset/?id=1281286925"
  189. if style == "info" then
  190. style = info
  191. elseif style == "warning" then
  192. style = warning
  193. end
  194. local Notification = Instance.new("ScreenGui")
  195. local Frame = Instance.new("Frame")
  196. local TextLabel = Instance.new("TextLabel")
  197. local IMAGE = Instance.new("ImageLabel")
  198. Notification.Name = "Notification"
  199. Notification.Parent = gsCoreGui
  200. Frame.Parent = Notification
  201. Frame.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  202. Frame.BackgroundTransparency = 0.20000000298023
  203. Frame.BorderSizePixel = 0
  204. Frame.Position = UDim2.new(0, 0, -0.2, 0)
  205. Frame.Size = UDim2.new(1, 0, 0, 30)
  206. TextLabel.Parent = Frame
  207. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  208. TextLabel.BackgroundTransparency = 1
  209. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  210. TextLabel.Font = Enum.Font.SourceSansLight
  211. TextLabel.Text = msg
  212. TextLabel.TextColor3 = Color3.new(0.905882, 0.905882, 0.905882)
  213. TextLabel.TextScaled = true
  214. TextLabel.TextSize = 14
  215. TextLabel.TextWrapped = true
  216. IMAGE.Parent = Frame
  217. IMAGE.BackgroundTransparency = 1
  218. IMAGE.Size = UDim2.new(0, 50, 0, 50)
  219. IMAGE.Position = UDim2.new(0.1, 0, 0, 0)
  220. IMAGE.Image = style
  221. local Intro = Instance.new("ScreenGui")
  222. local Frame2 = Instance.new("Frame")
  223. local IMAGE2 = Instance.new("ImageLabel")
  224. Intro.Name = "Intro"
  225. Intro.Parent = gsCoreGui
  226. Frame2.Parent = Intro
  227. Frame2.BackgroundTransparency = 1
  228. Frame2.BorderSizePixel = 0
  229. Frame2.Position = UDim2.new(0, 0, -0.2, 0)
  230. Frame2.Size = UDim2.new(1, 0, 0, 30)
  231. IMAGE2.Parent = Frame
  232. IMAGE2.BackgroundTransparency = 1
  233. IMAGE2.AnchorPoint = Vector2.new(0.5, 0)
  234. IMAGE2.Size = UDim2.new(0, 240, 0, 120)
  235. IMAGE2.Position = UDim2.new(0.5, 0, 0, 0)
  236. IMAGE2.Image = "http://www.roblox.com/asset/?id=1795472522"
  237. Frame2:TweenPosition(UDim2.new(0, 0, 0, 200), "Out", "Quad", 1.5)
  238. Frame:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Quad", 1.5)
  239. wait(length)
  240. pcall(function()
  241. Frame:TweenPosition(UDim2.new(0, 0, -1.5, 0), "Out", "Quad", 3)
  242. Frame2:TweenPosition(UDim2.new(0, 0, -1.5, 0), "Out", "Quad", 3)
  243. end)
  244. wait(3.01)
  245. Intro:Destroy()
  246. Notification:Destroy()
  247. end
  248. function Notification(style, msg, length)
  249. if gsCoreGui:FindFirstChild("Notification") then
  250. gsCoreGui:FindFirstChild("Notification"):Destroy()
  251. end
  252. local info = "http://www.roblox.com/asset/?id=1281284684"
  253. local warning = "http://www.roblox.com/asset/?id=1281286925"
  254. if style == "info" then
  255. style = info
  256. elseif style == "warning" then
  257. style = warning
  258. end
  259. local Notification = Instance.new("ScreenGui")
  260. local Frame = Instance.new("Frame")
  261. local TextLabel = Instance.new("TextLabel")
  262. local IMAGE = Instance.new("ImageLabel")
  263. Notification.Name = "Notification"
  264. Notification.Parent = gsCoreGui
  265. Frame.Parent = Notification
  266. Frame.BackgroundColor3 = Color3.new(0.164706, 0.164706, 0.164706)
  267. Frame.BackgroundTransparency = 0.20000000298023
  268. Frame.BorderSizePixel = 0
  269. Frame.Position = UDim2.new(0, 0, -0.2, 0)
  270. Frame.Size = UDim2.new(1, 0, 0, 30)
  271. TextLabel.Parent = Frame
  272. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  273. TextLabel.BackgroundTransparency = 1
  274. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  275. TextLabel.Font = Enum.Font.SourceSansLight
  276. TextLabel.Text = msg
  277. TextLabel.TextColor3 = Color3.new(0.905882, 0.905882, 0.905882)
  278. TextLabel.TextScaled = true
  279. TextLabel.TextSize = 14
  280. TextLabel.TextWrapped = true
  281. IMAGE.Parent = Frame
  282. IMAGE.BackgroundTransparency = 1
  283. IMAGE.Size = UDim2.new(0, 50, 0, 50)
  284. IMAGE.Position = UDim2.new(0.1, 0, 0, 0)
  285. IMAGE.Image = style
  286. Frame:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Quad", 1.5)
  287. wait(length)
  288. pcall(function()
  289. Frame:TweenPosition(UDim2.new(0, 0, -1.5, 0), "Out", "Quad", 3)
  290. end)
  291. wait(3.01)
  292. Notification:Destroy()
  293. end
  294. function hasTools()
  295. local a = false
  296. local b = false
  297. for i,v in pairs(LP.Character:GetDescendants()) do
  298. if v:IsA("Tool") then
  299. if v ~= nil then
  300. a = true
  301. else
  302. a = false
  303. end
  304. end
  305. end
  306. for i,k in pairs(LP.Backpack:GetDescendants()) do
  307. if k:IsA("Tool") then
  308. if k ~= nil then
  309. b = true
  310. else
  311. b = false
  312. end
  313. end
  314. end
  315. return a or b
  316. end
  317. 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!"}
  318. function complimentplr(player)
  319. local plrName = player.Name
  320. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(plrName..Compliments[math.random(1, #Compliments)], "All")
  321. end
  322. function createINFO(player)
  323. local InfoGUIv2 = Instance.new("ScreenGui")
  324. local Frame = Instance.new("Frame")
  325. local Frame_2 = Instance.new("Frame")
  326. local infoguiCLOSE = Instance.new("TextButton")
  327. local Frame_3 = Instance.new("Frame")
  328. local playerName = Instance.new("TextLabel")
  329. local Frame_4 = Instance.new("Frame")
  330. local playerAvatar = Instance.new("ImageLabel")
  331. local playerAccAge = Instance.new("TextLabel")
  332. local playerId = Instance.new("TextLabel")
  333. local playerOs = Instance.new("TextLabel")
  334. local playerMembership = Instance.new("TextLabel")
  335. local Frame_5 = Instance.new("Frame")
  336. local Frame_6 = Instance.new("Frame")
  337. InfoGUIv2.Name = "InfoGUIv2"
  338. InfoGUIv2.Parent = gsCoreGui
  339. Frame.Parent = InfoGUIv2
  340. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  341. Frame.BackgroundTransparency = 1
  342. Frame.BorderColor3 = Color3.new(0, 0, 0)
  343. Frame.ClipsDescendants = true
  344. Frame.Position = UDim2.new(0.45, 0, 1, 0)
  345. Frame.Size = UDim2.new(0, 265, 0, 302)
  346. Frame.ZIndex = -1
  347. Frame_2.Parent = Frame
  348. Frame_2.BackgroundColor3 = Color3.new(0.290196, 0, 0.447059)
  349. Frame_2.BorderSizePixel = 0
  350. Frame_2.Size = UDim2.new(0, 260, 0, 20)
  351. infoguiCLOSE.Name = "infoguiCLOSE"
  352. infoguiCLOSE.Parent = Frame_2
  353. infoguiCLOSE.BackgroundColor3 = Color3.new(1, 1, 1)
  354. infoguiCLOSE.BackgroundTransparency = 1
  355. infoguiCLOSE.BorderSizePixel = 0
  356. infoguiCLOSE.Position = UDim2.new(0, 230, 0, 0)
  357. infoguiCLOSE.Size = UDim2.new(0, 30, 0, 20)
  358. infoguiCLOSE.Font = Enum.Font.SourceSansBold
  359. infoguiCLOSE.Text = "X"
  360. infoguiCLOSE.TextColor3 = Color3.new(0.992157, 0.992157, 0.992157)
  361. infoguiCLOSE.TextSize = 20
  362. Frame_3.Parent = Frame
  363. Frame_3.BackgroundColor3 = Color3.new(0.482353, 0.121569, 0.635294)
  364. Frame_3.BorderSizePixel = 0
  365. Frame_3.Position = UDim2.new(0, 0, 0, 20)
  366. Frame_3.Size = UDim2.new(0, 260, 0, 40)
  367. playerName.Name = "playerName"
  368. playerName.Parent = Frame_3
  369. playerName.BackgroundColor3 = Color3.new(1, 1, 1)
  370. playerName.BackgroundTransparency = 1
  371. playerName.Position = UDim2.new(0, 10, 0, 5)
  372. playerName.Size = UDim2.new(0, 240, 0, 30)
  373. playerName.Font = Enum.Font.SourceSansLight
  374. playerName.Text = player.Name
  375. playerName.TextColor3 = Color3.new(0.988235, 0.988235, 0.988235)
  376. playerName.TextScaled = true
  377. playerName.TextSize = 14
  378. playerName.TextWrapped = true
  379. Frame_4.Parent = Frame
  380. Frame_4.BackgroundColor3 = Color3.new(0.956863, 0.956863, 0.956863)
  381. Frame_4.BorderSizePixel = 0
  382. Frame_4.Position = UDim2.new(0, 0, 0, 60)
  383. Frame_4.Size = UDim2.new(0, 260, 0, 237)
  384. playerAvatar.Name = "playerAvatar"
  385. playerAvatar.Parent = Frame_4
  386. playerAvatar.BackgroundColor3 = Color3.new(1, 1, 1)
  387. playerAvatar.Position = UDim2.new(0, 85, 0, 10)
  388. playerAvatar.Size = UDim2.new(0, 85, 0, 85)
  389. playerAvatar.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=150&y=150&Format=Png&username="..player.Name
  390. playerAccAge.Name = "playerAccAge"
  391. playerAccAge.Parent = Frame_4
  392. playerAccAge.BackgroundColor3 = Color3.new(1, 1, 1)
  393. playerAccAge.BackgroundTransparency = 1
  394. playerAccAge.Position = UDim2.new(0, 5, 0, 101)
  395. playerAccAge.Size = UDim2.new(0, 250, 0, 30)
  396. playerAccAge.Font = Enum.Font.SourceSans
  397. playerAccAge.Text = "Account Age: "..player.AccountAge
  398. playerAccAge.TextColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  399. playerAccAge.TextScaled = true
  400. playerAccAge.TextSize = 14
  401. playerAccAge.TextWrapped = true
  402. playerId.Name = "playerId"
  403. playerId.Parent = Frame_4
  404. playerId.BackgroundColor3 = Color3.new(1, 1, 1)
  405. playerId.BackgroundTransparency = 1
  406. playerId.Position = UDim2.new(0, 5, 0, 131)
  407. playerId.Size = UDim2.new(0, 250, 0, 30)
  408. playerId.Font = Enum.Font.SourceSans
  409. playerId.Text = "Account ID: "..player.UserId
  410. playerId.TextColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  411. playerId.TextScaled = true
  412. playerId.TextSize = 14
  413. playerId.TextWrapped = true
  414. playerOs.Name = "playerOs"
  415. playerOs.Parent = Frame_4
  416. playerOs.BackgroundColor3 = Color3.new(1, 1, 1)
  417. playerOs.BackgroundTransparency = 1
  418. playerOs.Position = UDim2.new(0, 5, 0, 161)
  419. playerOs.Size = UDim2.new(0, 250, 0, 30)
  420. playerOs.Font = Enum.Font.SourceSansLight
  421. playerOs.Text = "Player OS: "..player.OsPlatform
  422. playerOs.TextColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  423. playerOs.TextScaled = true
  424. playerOs.TextSize = 14
  425. playerOs.TextWrapped = true
  426. playerMembership.Name = "playerMembership"
  427. playerMembership.Parent = Frame_4
  428. playerMembership.BackgroundColor3 = Color3.new(1, 1, 1)
  429. playerMembership.BackgroundTransparency = 1
  430. playerMembership.Position = UDim2.new(0, 5, 0, 191)
  431. playerMembership.Size = UDim2.new(0, 250, 0, 30)
  432. playerMembership.Font = Enum.Font.SourceSansLight
  433. if player.MembershipType == Enum.MembershipType.None then
  434. playerMembership.Text = "No builder's club."
  435. elseif player.MembershipType == Enum.MembershipType.BuildersClub then
  436. playerMembership.Text = "Builder's club!"
  437. elseif player.MembershipType == Enum.MembershipType.TurboBuildersClub then
  438. playerMembership.Text = "Turbo Builder's club!"
  439. elseif player.MembershipType == Enum.MembershipType.OutrageousBuildersClub then
  440. playerMembership.Text = "Outrageous Builder's club!"
  441. end
  442. playerMembership.TextColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  443. playerMembership.TextScaled = true
  444. playerMembership.TextSize = 14
  445. playerMembership.TextWrapped = true
  446. Frame_5.Parent = Frame
  447. Frame_5.BackgroundColor3 = Color3.new(0, 0, 0)
  448. Frame_5.BackgroundTransparency = 0.69999998807907
  449. Frame_5.BorderColor3 = Color3.new(0, 0, 0)
  450. Frame_5.BorderSizePixel = 0
  451. Frame_5.ClipsDescendants = true
  452. Frame_5.Position = UDim2.new(0, 10, 0, 10)
  453. Frame_5.Selectable = true
  454. Frame_5.Size = UDim2.new(0, 255, 0, 292)
  455. Frame_5.ZIndex = -1
  456. Frame_6.Parent = Frame
  457. Frame_6.BackgroundColor3 = Color3.new(0, 0, 0)
  458. Frame_6.BackgroundTransparency = 0.69999998807907
  459. Frame_6.BorderColor3 = Color3.new(0, 0, 0)
  460. Frame_6.BorderSizePixel = 0
  461. Frame_6.ClipsDescendants = true
  462. Frame_6.Position = UDim2.new(0, 8, 0, 8)
  463. Frame_6.Selectable = true
  464. Frame_6.Size = UDim2.new(0, 255, 0, 292)
  465. Frame_6.ZIndex = -1
  466. local closeGet = {}
  467. closeGet.Size = UDim2.new(0, 0, 0, 0)
  468. local openGet = {}
  469. openGet.Position = UDim2.new(0.45, 0, 0.45, 0)
  470. local closeFunction = gsTween:Create(Frame, TweenInfo.new(2, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), closeGet)
  471. local openFunction = gsTween:Create(Frame, TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), openGet)
  472. infoguiCLOSE.MouseButton1Click:connect(function()
  473. closeFunction:Play()
  474. Frame:TweenPosition((Frame.Position + UDim2.new(0, 265 / 2, 0, 302 / 2)), "InOut", "Sine", 2)
  475. wait(2.01)
  476. Frame:Destroy()
  477. end)
  478. openFunction:Play()
  479. local UserInputService = game:GetService("UserInputService")
  480. local dragging
  481. local dragInput
  482. local dragStart
  483. local startPos
  484. local function update(input)
  485. local delta = input.Position - dragStart
  486. local dragTime = 0.055
  487. local SmoothDrag = {}
  488. SmoothDrag.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  489. local dragSmoothFunction = gsTween:Create(Frame, TweenInfo.new(dragTime, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), SmoothDrag)
  490. dragSmoothFunction:Play()
  491. end
  492. Frame.InputBegan:connect(function(input)
  493. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  494. dragging = true
  495. dragStart = input.Position
  496. startPos = Frame.Position
  497. input.Changed:connect(function()
  498. if input.UserInputState == Enum.UserInputState.End then
  499. dragging = false
  500. end
  501. end)
  502. end
  503. end)
  504. Frame.InputChanged:connect(function(input)
  505. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  506. dragInput = input
  507. end
  508. end)
  509. UserInputService.InputChanged:connect(function(input)
  510. if input == dragInput and dragging and Frame.Size == UDim2.new(0, 265, 0, 302) then
  511. update(input)
  512. end
  513. end)
  514. end
  515. function clientSided()
  516. Notification("info", "This command is for the client (you) only, no one else can see!", 6)
  517. end
  518. 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"}
  519. 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
  520. local CMDS_GUI_V2 = Instance.new("ScreenGui")
  521. local CMDSmain = Instance.new("Frame")
  522. local CMDSframemain = Instance.new("Frame")
  523. local cmdgui_topframe = Instance.new("Frame")
  524. local closecmdsgui = Instance.new("TextButton")
  525. local cmdgui_midframe = Instance.new("Frame")
  526. local cmdsgui_SearchFunction = Instance.new("TextBox")
  527. local cmdsgui_searchDETAILFRAME = Instance.new("Frame")
  528. local cmdsgui_searchDETAILTEXT = Instance.new("TextLabel")
  529. local ListofCMDS = Instance.new("ScrollingFrame")
  530. local cmdTutorial = Instance.new("TextLabel")
  531. local cmdTutorial_2 = Instance.new("TextLabel")
  532. local cmdTutorial_3 = Instance.new("TextLabel")
  533. local CMDS_Shadow = Instance.new("Frame")
  534. local CMDS_Shadow2 = Instance.new("Frame")
  535. CMDS_GUI_V2.Name = "CMDS_GUI_V2"
  536. CMDS_GUI_V2.Parent = gsCoreGui
  537. CMDSmain.Name = "CMDSmain"
  538. CMDSmain.Parent = CMDS_GUI_V2
  539. CMDSmain.BackgroundColor3 = Color3.new(1, 1, 1)
  540. CMDSmain.BackgroundTransparency = 1
  541. CMDSmain.Position = UDim2.new(0, 695, 0, 297)
  542. CMDSmain.Size = UDim2.new(0, 440, 0, 367)
  543. CMDSmain.AnchorPoint = Vector2.new(0.5, 0.5)
  544. CMDSmain.Visible = false
  545. CMDSmain.ClipsDescendants = true
  546. CMDSframemain.Name = "CMDSframemain"
  547. CMDSframemain.Parent = CMDSmain
  548. CMDSframemain.BackgroundColor3 = Color3.new(0.309804, 0.309804, 0.309804)
  549. CMDSframemain.BorderSizePixel = 0
  550. CMDSframemain.Size = UDim2.new(0, 440, 0, 367)
  551. cmdgui_topframe.Name = "cmdgui_topframe"
  552. cmdgui_topframe.Parent = CMDSframemain
  553. cmdgui_topframe.BackgroundColor3 = Color3.new(0.0666667, 0.0666667, 0.0666667)
  554. cmdgui_topframe.BorderSizePixel = 0
  555. cmdgui_topframe.Size = UDim2.new(0, 440, 0, 15)
  556. closecmdsgui.Name = "closecmdsgui"
  557. closecmdsgui.Parent = cmdgui_topframe
  558. closecmdsgui.BackgroundColor3 = Color3.new(1, 1, 1)
  559. closecmdsgui.BackgroundTransparency = 1
  560. closecmdsgui.Position = UDim2.new(0, 410, 0, 0)
  561. closecmdsgui.Size = UDim2.new(0, 30, 0, 15)
  562. closecmdsgui.Font = Enum.Font.SourceSansBold
  563. closecmdsgui.Text = "X"
  564. closecmdsgui.TextColor3 = Color3.new(0.968628, 0.968628, 0.968628)
  565. closecmdsgui.TextSize = 20
  566. cmdgui_midframe.Name = "cmdgui_midframe"
  567. cmdgui_midframe.Parent = CMDSframemain
  568. cmdgui_midframe.BackgroundColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  569. cmdgui_midframe.BorderSizePixel = 0
  570. cmdgui_midframe.Position = UDim2.new(0, 0, 0, 15)
  571. cmdgui_midframe.Size = UDim2.new(0, 440, 0, 45)
  572. cmdsgui_SearchFunction.Name = "cmdsgui_SearchFunction"
  573. cmdsgui_SearchFunction.Parent = cmdgui_midframe
  574. cmdsgui_SearchFunction.BackgroundColor3 = Color3.new(1, 1, 1)
  575. cmdsgui_SearchFunction.BackgroundTransparency = 1
  576. cmdsgui_SearchFunction.BorderSizePixel = 0
  577. cmdsgui_SearchFunction.Position = UDim2.new(0, 120, 0, 10)
  578. cmdsgui_SearchFunction.Size = UDim2.new(0, 200, 0, 25)
  579. cmdsgui_SearchFunction.Font = Enum.Font.SourceSans
  580. cmdsgui_SearchFunction.Text = ""
  581. cmdsgui_SearchFunction.TextColor3 = Color3.new(0.972549, 0.972549, 0.972549)
  582. cmdsgui_SearchFunction.TextScaled = true
  583. cmdsgui_SearchFunction.TextSize = 14
  584. cmdsgui_SearchFunction.TextWrapped = true
  585. cmdsgui_searchDETAILFRAME.Name = "cmdsgui_searchDETAILFRAME"
  586. cmdsgui_searchDETAILFRAME.Parent = cmdsgui_SearchFunction
  587. cmdsgui_searchDETAILFRAME.BackgroundColor3 = Color3.fromRGB(240, 240, 240)
  588. cmdsgui_searchDETAILFRAME.BorderSizePixel = 0
  589. cmdsgui_searchDETAILFRAME.Position = UDim2.new(0, 0, 0, 25)
  590. cmdsgui_searchDETAILFRAME.Size = UDim2.new(0, 200, 0, 2)
  591. cmdsgui_searchDETAILTEXT.Name = "cmdsgui_searchDETAILTEXT"
  592. cmdsgui_searchDETAILTEXT.Parent = cmdsgui_SearchFunction
  593. cmdsgui_searchDETAILTEXT.BackgroundColor3 = Color3.fromRGB(240, 240, 240)
  594. cmdsgui_searchDETAILTEXT.BackgroundTransparency = 1
  595. cmdsgui_searchDETAILTEXT.Size = UDim2.new(0, 200, 0, 25)
  596. cmdsgui_searchDETAILTEXT.Font = Enum.Font.SourceSansLight
  597. cmdsgui_searchDETAILTEXT.Text = "Search"
  598. cmdsgui_searchDETAILTEXT.TextColor3 = Color3.fromRGB(240, 240, 240)
  599. cmdsgui_searchDETAILTEXT.TextSize = 30
  600. ListofCMDS.Name = "ListofCMDS"
  601. ListofCMDS.Parent = CMDSframemain
  602. ListofCMDS.BackgroundColor3 = Color3.new(0.309804, 0.309804, 0.309804)
  603. ListofCMDS.BorderSizePixel = 0
  604. ListofCMDS.Position = UDim2.new(0, 0, 0, 60)
  605. ListofCMDS.Size = UDim2.new(0, 440, 0, 307)
  606. ListofCMDS.CanvasSize = UDim2.new(5, 0, 8, 0)
  607. ListofCMDS.ScrollingDirection = Enum.ScrollingDirection.XY
  608. cmdTutorial.Name = "cmdTutorial"
  609. cmdTutorial.Parent = ListofCMDS
  610. cmdTutorial.BackgroundColor3 = Color3.new(1, 1, 1)
  611. cmdTutorial.BackgroundTransparency = 1
  612. cmdTutorial.BorderSizePixel = 0
  613. cmdTutorial.Position = UDim2.new(0, 5, 0, 5)
  614. cmdTutorial.Size = UDim2.new(0, 420, 0, 20)
  615. cmdTutorial.Font = Enum.Font.SourceSansBold
  616. cmdTutorial.Text = "\"/\" means OPTIONAL argument after"
  617. cmdTutorial.TextColor3 = Color3.new(0.956863, 0.956863, 0.956863)
  618. cmdTutorial.TextScaled = true
  619. cmdTutorial.TextSize = 14
  620. cmdTutorial.TextWrapped = true
  621. cmdTutorial.TextXAlignment = Enum.TextXAlignment.Left
  622. cmdTutorial_2.Name = "cmdTutorial"
  623. cmdTutorial_2.Parent = ListofCMDS
  624. cmdTutorial_2.BackgroundColor3 = Color3.new(1, 1, 1)
  625. cmdTutorial_2.BackgroundTransparency = 1
  626. cmdTutorial_2.BorderSizePixel = 0
  627. cmdTutorial_2.Position = UDim2.new(0, 5, 0, 25)
  628. cmdTutorial_2.Size = UDim2.new(0, 420, 0, 20)
  629. cmdTutorial_2.Font = Enum.Font.SourceSansBold
  630. cmdTutorial_2.Text = "\"//\" means another way of running command"
  631. cmdTutorial_2.TextColor3 = Color3.new(0.956863, 0.956863, 0.956863)
  632. cmdTutorial_2.TextScaled = true
  633. cmdTutorial_2.TextSize = 14
  634. cmdTutorial_2.TextWrapped = true
  635. cmdTutorial_2.TextXAlignment = Enum.TextXAlignment.Left
  636. cmdTutorial_3.Name = "cmdTutorial"
  637. cmdTutorial_3.Parent = ListofCMDS
  638. cmdTutorial_3.BackgroundColor3 = Color3.new(1, 1, 1)
  639. cmdTutorial_3.BackgroundTransparency = 1
  640. cmdTutorial_3.BorderSizePixel = 0
  641. cmdTutorial_3.Position = UDim2.new(0, 5, 0, 45)
  642. cmdTutorial_3.Size = UDim2.new(0, 420, 0, 20)
  643. cmdTutorial_3.Font = Enum.Font.SourceSansBold
  644. cmdTutorial_3.Text = "Anything inside \"[ ]\" is an argument for the command"
  645. cmdTutorial_3.TextColor3 = Color3.new(0.956863, 0.956863, 0.956863)
  646. cmdTutorial_3.TextScaled = true
  647. cmdTutorial_3.TextSize = 14
  648. cmdTutorial_3.TextWrapped = true
  649. cmdTutorial_3.TextXAlignment = Enum.TextXAlignment.Left
  650. CMDS_Shadow.Name = "CMDS_Shadow"
  651. CMDS_Shadow.Parent = CMDSmain
  652. CMDS_Shadow.BackgroundColor3 = Color3.new(0, 0, 0)
  653. CMDS_Shadow.BackgroundTransparency = 0.60000002384186
  654. CMDS_Shadow.BorderSizePixel = 0
  655. CMDS_Shadow.Position = UDim2.new(0, 2, 0, 2)
  656. CMDS_Shadow.Size = UDim2.new(0, 440, 0, 367)
  657. CMDS_Shadow.ZIndex = -1
  658. CMDS_Shadow2.Name = "CMDS_Shadow2"
  659. CMDS_Shadow2.Parent = CMDSmain
  660. CMDS_Shadow2.BackgroundColor3 = Color3.new(0, 0, 0)
  661. CMDS_Shadow2.BackgroundTransparency = 0.80000001192093
  662. CMDS_Shadow2.BorderSizePixel = 0
  663. CMDS_Shadow2.Position = UDim2.new(0, 5, 0, 5)
  664. CMDS_Shadow2.Size = UDim2.new(0, 440, 0, 367)
  665. CMDS_Shadow2.ZIndex = -1
  666. closecmdsgui.MouseButton1Click:connect(function()
  667. CMDSmain:TweenSize(UDim2.new(0, 0, 0, 0), "InOut", "Sine", 2)
  668. end)
  669. function CreateCMDlabel(position, text)
  670. local sizenow = 15
  671. local cmdHere = Instance.new("TextLabel")
  672. cmdHere.Name = "cmdHere"
  673. cmdHere.TextWrapped = true
  674. cmdHere.Parent = ListofCMDS
  675. cmdHere.BackgroundColor3 = Color3.new(1, 1, 1)
  676. cmdHere.BackgroundTransparency = 1
  677. cmdHere.BorderSizePixel = 0
  678. cmdHere.Position = position
  679. cmdHere.Size = UDim2.new(0, 1950, 0, sizenow)
  680. cmdHere.Font = Enum.Font.SourceSans
  681. cmdHere.Text = text
  682. cmdHere.TextWrapped = true
  683. cmdHere.TextColor3 = Color3.new(0.956863, 0.956863, 0.956863)
  684. cmdHere.TextScaled = false
  685. cmdHere.TextSize = 20
  686. cmdHere.TextXAlignment = Enum.TextXAlignment.Left
  687. end
  688. for i,_cmds in pairs(searchCmds) do
  689. CreateCMDlabel(UDim2.new(0, 5, 0, 50 + (i * 15)), _cmds)
  690. end
  691. local UserInputService = game:GetService("UserInputService")
  692. local dragging
  693. local dragInput
  694. local dragStart
  695. local startPos
  696. local function updateCMDS(input)
  697. local delta = input.Position - dragStart
  698. local dragTime = 0.055
  699. local SmoothDrag = {}
  700. SmoothDrag.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  701. local dragSmoothFunction = gsTween:Create(CMDSmain, TweenInfo.new(dragTime, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), SmoothDrag)
  702. dragSmoothFunction:Play()
  703. end
  704. cmdgui_topframe.InputBegan:Connect(function(input)
  705. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  706. dragging = true
  707. dragStart = input.Position
  708. startPos = CMDSmain.Position
  709. input.Changed:Connect(function()
  710. if input.UserInputState == Enum.UserInputState.End then
  711. dragging = false
  712. end
  713. end)
  714. end
  715. end)
  716. cmdgui_topframe.InputChanged:Connect(function(input)
  717. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  718. dragInput = input
  719. end
  720. end)
  721. cmdgui_midframe.InputBegan:Connect(function(input)
  722. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  723. dragging = true
  724. dragStart = input.Position
  725. startPos = CMDSmain.Position
  726. input.Changed:Connect(function()
  727. if input.UserInputState == Enum.UserInputState.End then
  728. dragging = false
  729. end
  730. end)
  731. end
  732. end)
  733. cmdgui_midframe.InputChanged:Connect(function(input)
  734. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  735. dragInput = input
  736. end
  737. end)
  738. UserInputService.InputChanged:Connect(function(input)
  739. if input == dragInput and dragging then
  740. updateCMDS(input)
  741. end
  742. end)
  743. cmdsgui_SearchFunction.Focused:Connect(function()
  744. cmdsgui_SearchFunction.TextTransparency = 0
  745. local searchTween = {}
  746. searchTween.TextColor3 = Color3.new(0.0980392, 0.462745, 0.823529)
  747. searchTween.TextSize = 18
  748. searchTween.Position = UDim2.new(0, -70, 0, -15)
  749. local frameTweenblue = {}
  750. frameTweenblue.BackgroundColor3 = Color3.new(0.0980392, 0.462745, 0.823529)
  751. local searchTween1 = gsTween:Create(cmdsgui_searchDETAILTEXT, TweenInfo.new(0.3, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), searchTween)
  752. searchTween1:Play()
  753. local frameTweenblue1 = gsTween:Create(cmdsgui_searchDETAILFRAME, TweenInfo.new(0.3, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), frameTweenblue)
  754. frameTweenblue1:Play()
  755. end)
  756. cmdsgui_SearchFunction.FocusLost:Connect(function(enterPressed)
  757. if not enterPressed then
  758. cmdsgui_SearchFunction.TextTransparency = 1
  759. else
  760. cmdsgui_SearchFunction.Text = " "
  761. end
  762. local searchTween = {}
  763. searchTween.TextColor3 = Color3.fromRGB(240, 240, 240)
  764. searchTween.TextSize = 30
  765. searchTween.Position = UDim2.new(0, 0, 0, 0)
  766. local frameTweenblue = {}
  767. frameTweenblue.BackgroundColor3 = Color3.fromRGB(240, 240, 240)
  768. local searchTween1 = gsTween:Create(cmdsgui_searchDETAILTEXT, TweenInfo.new(0.3, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), searchTween)
  769. searchTween1:Play()
  770. local frameTweenblue1 = gsTween:Create(cmdsgui_searchDETAILFRAME, TweenInfo.new(0.3, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), frameTweenblue)
  771. frameTweenblue1:Play()
  772. end)
  773. cmdsgui_SearchFunction.Changed:Connect(function()
  774. local index = 0
  775. if cmdsgui_SearchFunction.Text ~= "" then
  776. for i,v in pairs(ListofCMDS:GetChildren()) do
  777. if v.Name == "cmdHere" then
  778. if not string.find(v.Text, cmdsgui_SearchFunction.Text) then
  779. v.Visible = false
  780. else
  781. v.Visible = true
  782. index = index + 1
  783. v.Position = UDim2.new(0, 5, 0, 50 + (index * 15))
  784. end
  785. end
  786. end
  787. end
  788. end)
  789.  
  790. -- Command Execution
  791. LP.Chatted:Connect(function(chat)
  792. run(chat)
  793. end)
  794.  
  795. function run(msg)
  796. if string.lower(string.sub(msg, 2, 5)) == "chat" then
  797. msg = msg
  798. elseif string.match(msg, "hotkey") and string.match(msg, "chat") then
  799. msg = msg
  800. else
  801. msg = string.lower(msg)
  802. end
  803. local cmdPrefix = string.sub(msg, 1, 1)
  804. if cmdPrefix == commandPrefix then
  805. msg = string.sub(msg, 2)
  806. local args = {}
  807. for arg in string.gmatch(msg,"[^%s]+") do
  808. table.insert(args,arg)
  809. end
  810. local cmdName = args[1]
  811. table.remove(args,1)
  812. local doCmd = Commands[cmdName]
  813.  
  814. if doCmd ~= nil then
  815. doCmd(args)
  816. end
  817. end
  818. end
  819.  
  820. -- Command bar
  821. local CommandBar = Instance.new("ScreenGui")
  822. local CMDBAR = Instance.new("Frame")
  823. local CMDBARText = Instance.new("TextBox")
  824. CommandBar.Name = "CommandBar"
  825. CommandBar.Parent = gsCoreGui
  826. CMDBAR.Name = "CMDBAR"
  827. CMDBAR.Parent = CommandBar
  828. CMDBAR.BackgroundColor3 = Color3.new(0.164706, 0.152941, 0.172549)
  829. CMDBAR.BorderSizePixel = 0
  830. CMDBAR.Position = UDim2.new(0.025, 0, 1, 0)
  831. CMDBAR.Size = UDim2.new(0, 270, 0, 35)
  832. CMDBARText.Name = "CMDBARText"
  833. CMDBARText.Parent = CMDBAR
  834. CMDBARText.BackgroundColor3 = Color3.new(0.188235, 0.188235, 0.188235)
  835. CMDBARText.BorderSizePixel = 0
  836. CMDBARText.Position = UDim2.new(0, 5, 0, 5)
  837. CMDBARText.Size = UDim2.new(0, 260, 0, 25)
  838. CMDBARText.Font = Enum.Font.SourceSansLight
  839. CMDBARText.Text = ""
  840. CMDBARText.TextColor3 = Color3.new(0.933333, 0.933333, 0.933333)
  841. CMDBARText.TextScaled = true
  842. CMDBARText.TextSize = 14
  843. CMDBARText.TextWrapped = true
  844. Mouse.KeyDown:connect(function(Key)
  845. if Key == string.lower(commandPrefix) then
  846. CMDBARText:CaptureFocus()
  847. CMDBAR:TweenPosition(UDim2.new(0.015, 0, 0.95, 0), "Out", "Elastic", 0.5, true)
  848. end
  849. end)
  850. CMDBARText.FocusLost:connect(function(enterPressed)
  851. CMDBAR:TweenPosition(UDim2.new(0.015, 0, 1, 0), "Out", "Quad", 0.5, true)
  852. if enterPressed then
  853. local cmdmsg = CMDBARText.Text
  854. CMDBARText.Text = ""
  855. run(commandPrefix..cmdmsg)
  856. end
  857. end)
  858. local Match = Instance.new("Frame")
  859. Match.Name = "Match"
  860. Match.Parent = CMDBAR
  861. Match.BackgroundColor3 = Color3.new(0.164706, 0.152941, 0.172549)
  862. Match.BorderSizePixel = 0
  863. Match.Position = UDim2.new(0, 0, -4, 0)
  864. Match.Size = UDim2.new(1, 0, 4, 0)
  865. Match.Visible = false
  866. function CreateOption(Text)
  867. local Option1 = Instance.new("TextLabel")
  868. Option1.Name = "Option"
  869. Option1.Parent = Match
  870. Option1.BackgroundColor3 = Color3.new(1, 1, 1)
  871. Option1.BackgroundTransparency = 1
  872. Option1.Position = UDim2.new(-10, 0, 0, 0)
  873. Option1.Size = UDim2.new(1, 0, 0, 20)
  874. Option1.Font = Enum.Font.SourceSans
  875. Option1.Text = Text
  876. Option1.TextColor3 = Color3.new(0.952941, 0.952941, 0.952941)
  877. Option1.TextScaled = true
  878. Option1.TextWrapped = true
  879. end
  880. for i,cmdtext2 in pairs(CMDS) do
  881. CreateOption(cmdtext2)
  882. end
  883. CMDBARText.Changed:Connect(function()
  884. if CMDBARText.Text ~= "" and CMDBARText.Text ~= commandPrefix then
  885. Match.Visible = true
  886. local PositionMatch = 0
  887. for i,cmdtext in pairs(Match:GetChildren()) do
  888. if cmdtext.Name == "Option" then
  889. if string.find(cmdtext.Text, CMDBARText.Text) then
  890. cmdtext.Position = UDim2.new(0, 0, 0, 2 + (PositionMatch * 20))
  891. PositionMatch = PositionMatch + 1
  892. if cmdtext.Position == UDim2.new(0, 0, 0, 142) then
  893. cmdtext.Position = UDim2.new(-10, 0, 0, 0)
  894. PositionMatch = PositionMatch - 1
  895. end
  896. else
  897. cmdtext.Position = UDim2.new(-10, 0, 0, 0)
  898. end
  899. end
  900. end
  901. else
  902. Match.Visible = false
  903. end
  904. end)
  905.  
  906. -- Chat
  907. local ChatLogsv2 = Instance.new("ScreenGui")
  908. local MainChatFrame = Instance.new("Frame")
  909. local Framess = Instance.new("Frame")
  910. local CloseChatGUI = Instance.new("TextButton")
  911. local Frame_222 = Instance.new("Frame")
  912. local PrintChat = Instance.new("TextButton")
  913. local Shadow1 = Instance.new("Frame")
  914. local Shadow2 = Instance.new("Frame")
  915. local ScrollingFrame = Instance.new("ScrollingFrame")
  916. ChatLogsv2.Name = "ChatLogsv2"
  917. ChatLogsv2.Parent = gsCoreGui
  918. MainChatFrame.Name = "MainChatFrame"
  919. MainChatFrame.Parent = ChatLogsv2
  920. MainChatFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  921. MainChatFrame.BackgroundTransparency = 1
  922. MainChatFrame.Position = UDim2.new(0, 760, 0, 261)
  923. MainChatFrame.Size = UDim2.new(0, 525, 0, 337)
  924. MainChatFrame.Visible = false
  925. Framess.Parent = MainChatFrame
  926. Framess.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  927. Framess.BorderSizePixel = 0
  928. Framess.Size = UDim2.new(0, 525, 0, 15)
  929. CloseChatGUI.Name = "CloseChatGUI"
  930. CloseChatGUI.Parent = Framess
  931. CloseChatGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  932. CloseChatGUI.BackgroundTransparency = 1
  933. CloseChatGUI.BorderSizePixel = 0
  934. CloseChatGUI.Position = UDim2.new(0, 495, 0, 0)
  935. CloseChatGUI.Size = UDim2.new(0, 30, 0, 15)
  936. CloseChatGUI.Font = Enum.Font.SourceSansBold
  937. CloseChatGUI.Text = "X"
  938. CloseChatGUI.TextColor3 = Color3.new(0.945098, 0.945098, 0.945098)
  939. CloseChatGUI.TextSize = 20
  940. Frame_222.Parent = MainChatFrame
  941. Frame_222.BackgroundColor3 = Color3.new(0.14902, 0.14902, 0.14902)
  942. Frame_222.BorderSizePixel = 0
  943. Frame_222.Position = UDim2.new(0, 0, 0, 15)
  944. Frame_222.Size = UDim2.new(0, 525, 0, 50)
  945. PrintChat.Name = "PrintChat"
  946. PrintChat.Parent = Frame_222
  947. PrintChat.BackgroundColor3 = Color3.new(0.870588, 0.25098, 0.25098)
  948. PrintChat.BorderSizePixel = 0
  949. PrintChat.Position = UDim2.new(0, 15, 0, 0)
  950. PrintChat.Size = UDim2.new(0, 170, 0, 30)
  951. PrintChat.Font = Enum.Font.SourceSansLight
  952. PrintChat.Text = "Print Chat"
  953. PrintChat.TextColor3 = Color3.new(0.960784, 0.960784, 0.960784)
  954. PrintChat.TextSize = 30
  955. PrintChat.TextWrapped = true
  956. Shadow1.Name = "Shadow1"
  957. Shadow1.Parent = MainChatFrame
  958. Shadow1.BackgroundColor3 = Color3.new(0, 0, 0)
  959. Shadow1.BackgroundTransparency = 0.5
  960. Shadow1.Position = UDim2.new(0, 2, 0, 2)
  961. Shadow1.Size = UDim2.new(0, 525, 0, 337)
  962. Shadow1.ZIndex = -1
  963. Shadow2.Name = "Shadow2"
  964. Shadow2.Parent = MainChatFrame
  965. Shadow2.BackgroundColor3 = Color3.new(0, 0, 0)
  966. Shadow2.BackgroundTransparency = 0.80000001192093
  967. Shadow2.Position = UDim2.new(0, 5, 0, 5)
  968. Shadow2.Size = UDim2.new(0, 525, 0, 337)
  969. Shadow2.ZIndex = -1
  970. ScrollingFrame.Parent = MainChatFrame
  971. ScrollingFrame.BackgroundColor3 = Color3.new(0.266667, 0.266667, 0.266667)
  972. ScrollingFrame.BorderSizePixel = 0
  973. ScrollingFrame.Position = UDim2.new(0, 0, 0, 65)
  974. ScrollingFrame.Size = UDim2.new(0, 525, 0, 271)
  975. ScrollingFrame.CanvasPosition = Vector2.new(0, 403)
  976. ScrollingFrame.ScrollBarThickness = 8
  977. function CreateChatText(plr, chat)
  978. for i,v in pairs(ScrollingFrame:GetDescendants()) do
  979. v.Position = v.Position - UDim2.new(0, 0, 0, 20)
  980. if v.Position == UDim2.new(0, 5, 0, 10) then
  981. v:Destroy()
  982. end
  983. end
  984. local Example = Instance.new("TextLabel")
  985. Example.Name = "Example"
  986. Example.Parent = ScrollingFrame
  987. Example.BackgroundColor3 = Color3.new(1, 1, 1)
  988. Example.BackgroundTransparency = 1
  989. Example.Position = UDim2.new(0, 5, 0, 650)
  990. Example.Size = UDim2.new(0, 500, 0, 20)
  991. Example.Font = Enum.Font.SourceSans
  992. Example.Text = "["..plr.Name.."]: "..chat
  993. Example.TextColor3 = Color3.new(0.960784, 0.960784, 0.960784)
  994. Example.TextScaled = true
  995. Example.TextSize = 20
  996. Example.TextWrapped = true
  997. Example.TextXAlignment = Enum.TextXAlignment.Left
  998. end
  999. CloseChatGUI.MouseButton1Click:Connect(function()
  1000. MainChatFrame:TweenPosition(UDim2.new(0, 550, 0, -550), "InOut", "Sine", 2)
  1001. wait(2.01)
  1002. MainChatFrame.Visible = false
  1003. end)
  1004. printingChat = false
  1005. PrintChat.MouseButton1Click:Connect(function()
  1006. if printingChat == false then
  1007. printingChat = true
  1008. PrintChat.BackgroundColor3 = Color3.fromRGB(60, 200, 60)
  1009. elseif printingChat == true then
  1010. printingChat = false
  1011. PrintChat.BackgroundColor3 = Color3.new(0.870588, 0.25098, 0.25098)
  1012. end
  1013. end)
  1014. local UserInputService = game:GetService("UserInputService")
  1015. local dragging
  1016. local dragInput
  1017. local dragStart
  1018. local startPos
  1019. local function updateChat(input)
  1020. local delta = input.Position - dragStart
  1021. local dragTime = 0.055
  1022. local SmoothDrag = {}
  1023. SmoothDrag.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  1024. local dragSmoothFunction = gsTween:Create(MainChatFrame, TweenInfo.new(dragTime, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), SmoothDrag)
  1025. dragSmoothFunction:Play()
  1026. end
  1027. Frame_222.InputBegan:Connect(function(input)
  1028. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  1029. dragging = true
  1030. dragStart = input.Position
  1031. startPos = MainChatFrame.Position
  1032. input.Changed:Connect(function()
  1033. if input.UserInputState == Enum.UserInputState.End then
  1034. dragging = false
  1035. end
  1036. end)
  1037. end
  1038. end)
  1039. Frame_222.InputChanged:Connect(function(input)
  1040. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  1041. dragInput = input
  1042. end
  1043. end)
  1044. UserInputService.InputChanged:Connect(function(input)
  1045. if input == dragInput and dragging then
  1046. updateChat(input)
  1047. end
  1048. end)
  1049.  
  1050. function printChat(player, chat)
  1051. print("["..player.Name.."]: "..chat)
  1052. end
  1053. complimentReady = true
  1054. for i,currentPlayersChatting in pairs(game:GetService("Players"):GetPlayers()) do
  1055. currentPlayersChatting.Chatted:connect(function(chat)
  1056. CreateChatText(currentPlayersChatting, chat)
  1057. if printingChat then
  1058. printChat(currentPlayersChatting, chat)
  1059. end
  1060. if copychatACTIVE then
  1061. if currentPlayersChatting == copychatplayer then
  1062. gsReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(chat, "All")
  1063. end
  1064. end
  1065. if modeFling == true then
  1066. if string.lower(string.sub(chat, 1, 7)) == "!fling " then
  1067. if gsWorkspace:PGSIsEnabled() == false then
  1068. FEGodmode()
  1069. end
  1070. if string.lower(string.sub(chat, 8)) == "me" then
  1071. run(commandPrefix.."unfling")
  1072. LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
  1073. run(commandPrefix.."fling "..currentPlayersChatting.Name.." 2000000")
  1074. else
  1075. for i,notAll in pairs(findSinglePlayer(string.lower(string.sub(chat, 8)))) do
  1076. if notAll ~= LP then
  1077. run(commandPrefix.."unfling")
  1078. LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
  1079. run(commandPrefix.."fling "..notAll.Name.." 2000000")
  1080. end
  1081. end
  1082. end
  1083. end
  1084. end
  1085. if modeCompliment == true then
  1086. if string.lower(string.sub(chat, 1, 3)) == "!c " then
  1087. if complimentReady then
  1088. complimentReady = false
  1089. if string.lower(string.sub(chat, 4)) == "me" then
  1090. complimentplr(currentPlayersChatting)
  1091. else
  1092. for i,Others in pairs(findSinglePlayer(string.lower(string.sub(chat, 4)))) do
  1093. if Others == LP then
  1094. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Don't be silly, I can't compliment myself!", "All")
  1095. else
  1096. complimentplr(Others)
  1097. end
  1098. end
  1099. end
  1100. wait(1)
  1101. complimentReady = true
  1102. end
  1103. end
  1104. end
  1105. if modeMove == true then
  1106. if string.lower(string.sub(chat, 1, 9)) == "!bringbot" then
  1107. run(commandPrefix.."unfollow")
  1108. run(commandPrefix.."unwalk")
  1109. run(commandPrefix.."goto "..currentPlayersChatting.Name)
  1110. elseif string.lower(string.sub(chat, 1, 6)) == "!walk " then
  1111. for i,getWalkPlayer in pairs(findSinglePlayer(string.lower(string.sub(chat, 7)))) do
  1112. if getWalkPlayer == LP then
  1113. run(commandPrefix.."unfollow")
  1114. run(commandPrefix.."walk "..currentPlayersChatting.Name)
  1115. else
  1116. run(commandPrefix.."unfollow")
  1117. run(commandPrefix.."walk "..getWalkPlayer.Name)
  1118. end
  1119. end
  1120. elseif string.lower(string.sub(chat, 1, 8)) == "!follow " then
  1121. for i,getFollowPlayer in pairs(findSinglePlayer(string.lower(string.sub(chat, 9)))) do
  1122. if getFollowPlayer == LP then
  1123. run(commandPrefix.."unwalk")
  1124. run(commandPrefix.."follow "..currentPlayersChatting.Name)
  1125. else
  1126. run(commandPrefix.."unwalk")
  1127. run(commandPrefix.."follow "..getFollowPlayer.Name)
  1128. end
  1129. end
  1130. end
  1131. end
  1132. if modeInfo == true then
  1133. if infoReady then
  1134. infoReady = false
  1135. if string.lower(string.sub(chat, 1, 5)) == "!age " then
  1136. for i,v in pairs(findSinglePlayer(string.lower(string.sub(chat, 6)))) do
  1137. if v == LP then
  1138. run(commandPrefix.."age "..currentPlayersChatting.Name)
  1139. else
  1140. run(commandPrefix.."age "..v.Name)
  1141. end
  1142. end
  1143. end
  1144. if string.lower(string.sub(chat, 1, 4)) == "!id " then
  1145. for i,a in pairs(findSinglePlayer(string.lower(string.sub(chat, 5)))) do
  1146. if a == LP then
  1147. run(commandPrefix.."id "..currentPlayersChatting.Name)
  1148. else
  1149. run(commandPrefix.."id "..a.Name)
  1150. end
  1151. end
  1152. end
  1153. wait(1)
  1154. infoReady = true
  1155. end
  1156. end
  1157. end)
  1158. end
  1159. game:GetService("Players").PlayerAdded:connect(function(plr)
  1160. plr.Chatted:connect(function(chat)
  1161. CreateChatText(plr, chat)
  1162. if printingChat then
  1163. printChat(plr, chat)
  1164. end
  1165. if modeFling == true then
  1166. if string.lower(string.sub(chat, 1, 7)) == "!fling " then
  1167. if gsWorkspace:PGSIsEnabled() == false then
  1168. FEGodmode()
  1169. end
  1170. if string.lower(string.sub(chat, 8)) == "me" then
  1171. run(commandPrefix.."unfling")
  1172. LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
  1173. run(commandPrefix.."fling "..plr.Name.." 2000000")
  1174. else
  1175. for i,notAll in pairs(findSinglePlayer(string.lower(string.sub(chat, 8)))) do
  1176. if notAll ~= LP then
  1177. run(commandPrefix.."unfling")
  1178. LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
  1179. run(commandPrefix.."fling "..notAll.Name.." 2000000")
  1180. end
  1181. end
  1182. end
  1183. end
  1184. end
  1185. if modeCompliment == true then
  1186. if string.lower(string.sub(chat, 1, 3)) == "!c " then
  1187. if complimentReady == true then
  1188. complimentReady = false
  1189. if string.lower(string.sub(chat, 4)) == "me" then
  1190. complimentplr(plr)
  1191. else
  1192. for i,Others in pairs(findSinglePlayer(string.lower(string.sub(chat, 4)))) do
  1193. if Others == LP then
  1194. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Don't be silly, I can't compliment myself!", "All")
  1195. else
  1196. complimentplr(Others)
  1197. end
  1198. end
  1199. end
  1200. wait(1)
  1201. complimentReady = true
  1202. end
  1203. end
  1204. end
  1205. if modeMove == true then
  1206. if string.lower(string.sub(chat, 1, 9)) == "!bringbot" then
  1207. run(commandPrefix.."unfollow")
  1208. run(commandPrefix.."unwalk")
  1209. run(commandPrefix.."goto "..plr.Name)
  1210. elseif string.lower(string.sub(chat, 1, 6)) == "!walk " then
  1211. for i,getWalkPlayer in pairs(findSinglePlayer(string.lower(string.sub(chat, 7)))) do
  1212. if getWalkPlayer == LP then
  1213. run(commandPrefix.."unfollow")
  1214. run(commandPrefix.."walk "..plr.Name)
  1215. else
  1216. run(commandPrefix.."unfollow")
  1217. run(commandPrefix.."walk "..getWalkPlayer.Name)
  1218. end
  1219. end
  1220. elseif string.lower(string.sub(chat, 1, 8)) == "!follow " then
  1221. for i,getFollowPlayer in pairs(findSinglePlayer(string.lower(string.sub(chat, 9)))) do
  1222. if getFollowPlayer == LP then
  1223. run(commandPrefix.."unwalk")
  1224. run(commandPrefix.."follow "..plr.Name)
  1225. else
  1226. run(commandPrefix.."unwalk")
  1227. run(commandPrefix.."follow "..getFollowPlayer.Name)
  1228. end
  1229. end
  1230. end
  1231. end
  1232. if modeInfo == true then
  1233. if infoReady then
  1234. infoReady = false
  1235. if string.lower(string.sub(chat, 1, 5)) == "!age " then
  1236. for i,v in pairs(findSinglePlayer(string.lower(string.sub(chat, 6)))) do
  1237. if v == LP then
  1238. run(commandPrefix.."age "..plr.Name)
  1239. else
  1240. run(commandPrefix.."age "..v.Name)
  1241. end
  1242. end
  1243. end
  1244. if string.lower(string.sub(chat, 1, 4)) == "!id " then
  1245. for i,a in pairs(findSinglePlayer(string.lower(string.sub(chat, 5)))) do
  1246. if a == LP then
  1247. run(commandPrefix.."id "..plr.Name)
  1248. else
  1249. run(commandPrefix.."id "..a.Name)
  1250. end
  1251. end
  1252. end
  1253. wait(1)
  1254. infoReady = true
  1255. end
  1256. end
  1257. end)
  1258. end)
  1259.  
  1260. -- Loops
  1261. noclip = false
  1262. following = false
  1263. trailing = false
  1264. annoying = false
  1265. flingnoclip = false
  1266. staring = false
  1267. stopsitting = false
  1268. stareplr = ""
  1269. CBRINGamount = 3
  1270. spawnWS = CurrentWalkspeed
  1271. spawnJP = CurrentJumppower
  1272. spawnHH = CurrentHipheight
  1273. spawningfegod = false
  1274. looptpbypassfly = false
  1275. if game.GameId == 245662005 or game.GameId == 601130232 then
  1276. bypassMODE = true
  1277. else
  1278. bypassMODE = false
  1279. end
  1280. viewplr = ""
  1281. loopview = false
  1282. cmdForward = false
  1283. forwardSpeed = 1
  1284. loopviewfc = false
  1285. spinTOhead = false
  1286. spinObj = ""
  1287. rideACTIVE = false
  1288. ridePLAYER = ""
  1289.  
  1290. LPcurrenthumanoid = LP.Character.Humanoid
  1291. game:GetService('RunService').Stepped:connect(function()
  1292. if LP.Character.Humanoid ~= nil then
  1293. LPcurrenthumanoid = LP.Character.Humanoid
  1294. end
  1295. if noclip then
  1296. if LP.Character then
  1297. if LP.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  1298. LP.Character.Head.CanCollide = false
  1299. LP.Character.Torso.CanCollide = false
  1300. LP.Character["Left Leg"].CanCollide = false
  1301. LP.Character["Right Leg"].CanCollide = false
  1302. LP.Character["Left Arm"].CanCollide = false
  1303. LP.Character["Right Arm"].CanCollide = false
  1304. elseif LP.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  1305. LP.Character.Head.CanCollide = false
  1306. LP.Character.UpperTorso.CanCollide = false
  1307. LP.Character.LowerTorso.CanCollide = false
  1308. LP.Character.HumanoidRootPart.CanCollide = false
  1309. end
  1310. end
  1311. end
  1312. if following then
  1313. LP.Character.HumanoidRootPart.CFrame = gsPlayers[flwplr.Name].Character.HumanoidRootPart.CFrame + gsPlayers[flwplr.Name].Character.HumanoidRootPart.CFrame.lookVector * flwnum
  1314. end
  1315. if trailing then
  1316. LP.Character.HumanoidRootPart.CFrame = gsPlayers[trlplr.Name].Character.HumanoidRootPart.CFrame + gsPlayers[trlplr.Name].Character.HumanoidRootPart.CFrame.lookVector * trlnum
  1317. end
  1318. if annoying then
  1319. LP.Character.HumanoidRootPart.CFrame = gsPlayers[annplr.Name].Character.HumanoidRootPart.CFrame
  1320. end
  1321. if walkto then
  1322. LP.Character.Humanoid:MoveTo(walkplr.Character.HumanoidRootPart.Position)
  1323. end
  1324. if cbringing then
  1325. CBRINGplr.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * CBRINGamount
  1326. end
  1327. if cbringingall then
  1328. for i,getbringplrs in pairs(gsPlayers:GetPlayers()) do
  1329. if getbringplrs ~= LP then
  1330. getbringplrs.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * CBRINGamount
  1331. end
  1332. end
  1333. end
  1334. if staring then
  1335. LP.Character.HumanoidRootPart.CFrame = CFrame.new(LP.Character.Torso.Position, gsPlayers[stareplr.Name].Character.Torso.Position)
  1336. end
  1337. if stopsitting then
  1338. LP.Character.Humanoid.Sit = false
  1339. end
  1340. if looptpbypassfly then
  1341. pcall(function()
  1342. LP.Character.Head.Anchored = false
  1343. LP.Character.HumanoidRootPart.CFrame = gsWorkspace.rGETpartNUMBER2.CFrame
  1344. LP.Character.Head.Anchored = true
  1345. end)
  1346. end
  1347. if loopview then
  1348. view(viewplr)
  1349. end
  1350. if cmdForward then
  1351. LP.Character.HumanoidRootPart.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * forwardSpeed
  1352. end
  1353. if loopviewfc then
  1354. pcall(function()
  1355. gsWorkspace.CurrentCamera.CameraSubject = gsWorkspace.rGETpartNUMBER2
  1356. end)
  1357. end
  1358. if spinTOhead then
  1359. pcall(function()
  1360. spinObj.Position = LP.Character.Head.Position
  1361. end)
  1362. end
  1363. if rideACTIVE == true then
  1364. LP.character.HumanoidRootPart.CFrame = ridePLAYER.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
  1365. end
  1366. end)
  1367. spawningatreset = false
  1368. spawnresetpoint = LP.Character.Head.CFrame
  1369.  
  1370. LPcurrenthumanoid.Died:Connect(function()
  1371. flying = false
  1372. doFREECAM = false
  1373. if savingtoolsloop then
  1374. run(commandPrefix.."savealltool")
  1375. end
  1376. if spawningatreset == true then
  1377. spawnresetpoint = LP.Character.Head.CFrame + Vector3.new(0, 5, 0)
  1378. end
  1379. end)
  1380.  
  1381. LP.CharacterAdded:Connect(function()
  1382. wait(0.2)
  1383. LP.Character.Humanoid.WalkSpeed = spawnWS
  1384. LP.Character.Humanoid.JumpPower = spawnJP
  1385. LP.Character.Humanoid.HipHeight = spawnHH
  1386. if spawningfegod then
  1387. FEGodmode()
  1388. end
  1389. if spawningpos and spawnpos ~= nil then
  1390. LP.Character.HumanoidRootPart.CFrame = spawnpos
  1391. end
  1392. if spawningatreset == true then
  1393. LP.Character.HumanoidRootPart.CFrame = spawnresetpoint
  1394. end
  1395. end)
  1396.  
  1397. -- Commands
  1398. Commands = {}
  1399.  
  1400. Commands.print = function(args)
  1401. local msg = table.concat(args," ")
  1402. print(msg)
  1403. end
  1404.  
  1405. Commands.warn = function(args)
  1406. local msg = table.concat(args," ")
  1407. warn(msg)
  1408. end
  1409.  
  1410. Commands.sit = function(args)
  1411. LP.Character.Humanoid.Sit = true
  1412. end
  1413.  
  1414. Commands.god = function(args)
  1415. FEGodmode()
  1416. Notification("warning", "You have enabled FE Godmode, tools will not work. Use "..commandPrefix.."grespawn to remove.", 7)
  1417. end
  1418.  
  1419. Commands.view = function(args)
  1420. if args[1] then
  1421. for i,v in pairs(findSinglePlayer(args[1])) do
  1422. if bypassMODE == false then
  1423. view(v)
  1424. Notification("info", "Now viewing "..v.Name..". Use "..commandPrefix.."unview to stop viewing.", 3)
  1425. elseif bypassMODE == true then
  1426. viewplr = v
  1427. loopview = true
  1428. end
  1429. end
  1430. end
  1431. end
  1432.  
  1433. Commands.unview = function(args)
  1434. view(LP)
  1435. loopview = false
  1436. end
  1437.  
  1438. Commands.gravity = function(args)
  1439. if args[1] then
  1440. gsWorkspace.Gravity = args[1]
  1441. end
  1442. end
  1443.  
  1444. Commands.ungravity = function(args)
  1445. gsWorkspace.Gravity = CurrentGravity
  1446. end
  1447.  
  1448. Commands.goto = function(args)
  1449. if args[1] then
  1450. if bypassMODE == false then
  1451. for i,v in pairs(findPlayer(args[1])) do
  1452. LP.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  1453. end
  1454. elseif bypassMODE == true then
  1455. for i,v in pairs(findPlayer(args[1])) do
  1456. local TPbypass = {}
  1457. TPbypass.CFrame = v.Character.HumanoidRootPart.CFrame + Vector3.new(0, 5, 0)
  1458. local TPFunction = gsTween:Create(LP.Character.HumanoidRootPart, TweenInfo.new(1.5, Enum.EasingStyle.Sine, Enum.EasingDirection.In), TPbypass)
  1459. TPFunction:Play()
  1460. end
  1461. end
  1462. end
  1463. end
  1464.  
  1465. Commands.fecheck = function(args)
  1466. if gsWorkspace.FilteringEnabled == true then
  1467. Notification("warning", "FE is enabled!", 7)
  1468. else
  1469. Notification("warning", "FE is disabled. Consider using a different script.", 7)
  1470. end
  1471. end
  1472.  
  1473. Commands.lockws = function(args)
  1474. lockWS()
  1475. Notification("info", "Workspace locked.", 4)
  1476. end
  1477.  
  1478. Commands.unlockws = function(args)
  1479. unlockWS()
  1480. Notification("info", "Workspace unlocked.", 4)
  1481. end
  1482.  
  1483. Commands.noclip = function(args)
  1484. noclip = true
  1485. Notification("info", "Noclip enabled.", 4)
  1486. end
  1487.  
  1488. Commands.clip = function(args)
  1489. noclip = false
  1490. Notification("info", "Noclip disabled.", 4)
  1491. end
  1492.  
  1493. Commands.follow = function(args)
  1494. if args[1] then
  1495. for i,v in pairs(findPlayer(args[1])) do
  1496. flwplr = v
  1497. end
  1498. if args[2] then
  1499. flwnum = args[2]
  1500. else
  1501. flwnum = -5
  1502. end
  1503. following = true
  1504. else
  1505. Notification("warning", "No player selected to follow! Use: "..commandPrefix.."follow player", 4)
  1506. end
  1507. end
  1508.  
  1509. Commands.unfollow = function(args)
  1510. following = false
  1511. end
  1512.  
  1513. Commands.fling = function(args)
  1514. if args[1] then
  1515. for i,v in pairs(findSinglePlayer(args[1])) do
  1516. if v ~= LP then
  1517. view(v)
  1518. pcall(function()
  1519. LP.Character.HumanoidRootPart.Fling:Destroy()
  1520. end)
  1521. if not args[2] then
  1522. RocketPropulsion(800000,1000,400000,v,"Fling")
  1523. else
  1524. RocketPropulsion(args[2],1500,400000,v,"Fling")
  1525. end
  1526. if noclip ~= true then
  1527. flingnoclip = true
  1528. noclip = true
  1529. end
  1530. end
  1531. end
  1532. else
  1533. Notification("warning", "No player selected to fling! Use: "..commandPrefix.."fling player", 4)
  1534. end
  1535. end
  1536.  
  1537. Commands.unfling = function(args)
  1538. view(LP)
  1539. pcall(function()
  1540. if LP.Character.HumanoidRootPart.Fling then
  1541. for i,v in pairs(LP.Character:GetDescendants()) do
  1542. if v.Name == "Fling" and v:IsA("RocketPropulsion") then
  1543. v:Destroy()
  1544. end
  1545. end
  1546. end
  1547. end)
  1548. if flingnoclip == true then
  1549. noclip = false
  1550. flingnoclip = false
  1551. end
  1552. end
  1553.  
  1554. Commands.trail = function(args)
  1555. if args[1] then
  1556. for i,v in pairs(findPlayer(args[1])) do
  1557. trlplr = v
  1558. end
  1559. if args[2] then
  1560. trlnum = args[2]
  1561. else
  1562. trlnum = 5
  1563. end
  1564. trailing = true
  1565. else
  1566. Notification("warning", "No player selected to trail! Use: "..commandPrefix.."trail player", 4)
  1567. end
  1568. end
  1569.  
  1570. Commands.untrail = function(args)
  1571. trailing = false
  1572. end
  1573.  
  1574. Commands.annoy = function(args)
  1575. if args[1] then
  1576. for i,v in pairs(findPlayer(args[1])) do
  1577. annplr = v
  1578. end
  1579. annoying = true
  1580. else
  1581. Notification("warning", "No player selected to annoy! Use: "..commandPrefix.."annoy player", 4)
  1582. end
  1583. end
  1584.  
  1585. Commands.unannoy = function(args)
  1586. annoying = false
  1587. end
  1588.  
  1589. Commands.reset = function(args)
  1590. LP.Character:BreakJoints()
  1591. end
  1592.  
  1593. Commands.grespawn = function(args)
  1594. LP.Character.Humanoid.Health = 0
  1595. wait(1)
  1596. LP.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
  1597. LP.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
  1598. end
  1599.  
  1600. Commands.respawn = function(args)
  1601. local mod = Instance.new('Model', workspace) mod.Name = 'new '..LP.Name
  1602. local hum = Instance.new('Humanoid', mod)
  1603. local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
  1604. LP.Character = mod
  1605. end
  1606.  
  1607. Commands.speed = function(args)
  1608. if args[1] then
  1609. run(commandPrefix.."ws "..args[1])
  1610. end
  1611. end
  1612.  
  1613. bypassingwalkspeed = false
  1614. Commands.ws = function(args)
  1615. if args[1] then
  1616. if bypassMODE == false then
  1617. LP.Character.Humanoid.WalkSpeed = args[1]
  1618. elseif bypassMODE == true then
  1619. if game.GameId == 245662005 then
  1620. bypassingwalkspeed = true
  1621. bypassWalkspeed = args[1]
  1622. end
  1623. end
  1624. end
  1625. end
  1626.  
  1627. game:GetService("RunService").Heartbeat:Connect(function()
  1628. if bypassingwalkspeed then
  1629. LP.Character.Humanoid.WalkSpeed = bypassWalkspeed
  1630. end
  1631. end)
  1632.  
  1633. Commands.jumppower = function(args)
  1634. if args[1] then
  1635. LP.Character.Humanoid.JumpPower = args[1]
  1636. end
  1637. end
  1638.  
  1639. Commands.jp = function(args)
  1640. if args[1] then
  1641. LP.Character.Humanoid.JumpPower = args[1]
  1642. end
  1643. end
  1644.  
  1645. Commands.hipheight = function(args)
  1646. if args[1] then
  1647. LP.Character.Humanoid.HipHeight = args[1]
  1648. end
  1649. end
  1650.  
  1651. Commands.hh = function(args)
  1652. if args[1] then
  1653. LP.Character.Humanoid.HipHeight = args[1]
  1654. end
  1655. end
  1656.  
  1657. Commands.default = function(args)
  1658. LP.Character.Humanoid.WalkSpeed = CurrentWalkspeed
  1659. LP.Character.Humanoid.HipHeight = CurrentHipheight
  1660. LP.Character.Humanoid.JumpPower = CurrentJumppower
  1661. end
  1662.  
  1663. Commands.credits = function(args)
  1664. Notification("info", "Shattervast was made by illremember#3799 , "..commandPrefix.."fullcredits for all credits.", 8)
  1665. end
  1666.  
  1667. Commands.attach = function(args)
  1668. if hasTools() == false then
  1669. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  1670. else
  1671. FEGodmode()
  1672. for i,v in pairs(LP.Backpack:GetChildren())do
  1673. LP.Character.Humanoid:EquipTool(v)
  1674. end
  1675. if args[1] then
  1676. for i,v in pairs(findSinglePlayer(args[1])) do
  1677. if v ~= LP then
  1678. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  1679. wait(0.3)
  1680. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  1681. end
  1682. end
  1683. end
  1684. end
  1685. end
  1686.  
  1687. Commands.fly = function(args)
  1688. if bypassMODE == false then
  1689. local speedget = 1
  1690. repeat wait() until LP and LP.Character and LP.Character:FindFirstChild('HumanoidRootPart') and LP.Character:FindFirstChild('Humanoid')
  1691. repeat wait() until Mouse
  1692. if args[1] then
  1693. speedfly = args[1]
  1694. else
  1695. speedfly = 1
  1696. end
  1697.  
  1698. local T = LP.Character.HumanoidRootPart
  1699. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  1700. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  1701. local SPEED = speedget
  1702.  
  1703. local function fly()
  1704. flying = true
  1705. local BG = Instance.new('BodyGyro', T)
  1706. local BV = Instance.new('BodyVelocity', T)
  1707. BG.P = 9e4
  1708. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  1709. BG.cframe = T.CFrame
  1710. BV.velocity = Vector3.new(0, 0.1, 0)
  1711. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  1712. spawn(function()
  1713. repeat wait()
  1714. LP.Character.Humanoid.PlatformStand = true
  1715. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  1716. SPEED = 50
  1717. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  1718. SPEED = 0
  1719. end
  1720. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  1721. 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
  1722. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  1723. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  1724. 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
  1725. else
  1726. BV.velocity = Vector3.new(0, 0.1, 0)
  1727. end
  1728. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  1729. until not flying
  1730. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  1731. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  1732. SPEED = 0
  1733. BG:destroy()
  1734. BV:destroy()
  1735. LP.Character.Humanoid.PlatformStand = false
  1736. end)
  1737. end
  1738. Mouse.KeyDown:connect(function(KEY)
  1739. if KEY:lower() == 'w' then
  1740. CONTROL.F = speedfly
  1741. elseif KEY:lower() == 's' then
  1742. CONTROL.B = -speedfly
  1743. elseif KEY:lower() == 'a' then
  1744. CONTROL.L = -speedfly
  1745. elseif KEY:lower() == 'd' then
  1746. CONTROL.R = speedfly
  1747. end
  1748. end)
  1749. Mouse.KeyUp:connect(function(KEY)
  1750. if KEY:lower() == 'w' then
  1751. CONTROL.F = 0
  1752. elseif KEY:lower() == 's' then
  1753. CONTROL.B = 0
  1754. elseif KEY:lower() == 'a' then
  1755. CONTROL.L = 0
  1756. elseif KEY:lower() == 'd' then
  1757. CONTROL.R = 0
  1758. end
  1759. end)
  1760. fly()
  1761. elseif bypassMODE == true then
  1762. if not args[1] then
  1763. run(commandPrefix.."fc")
  1764. else
  1765. run(commandPrefix.."fc "..args[1])
  1766. end
  1767. LP.Character.Head.Anchored = false
  1768. looptpbypassfly = true
  1769. view(LP)
  1770. end
  1771. end
  1772.  
  1773. Commands.unfly = function(args)
  1774. if bypassMODE == false then
  1775. flying = false
  1776. LP.Character.Humanoid.PlatformStand = false
  1777. else
  1778. looptpbypassfly = false
  1779. run(commandPrefix.."unfreecam")
  1780. local goalTP = LP.Character.HumanoidRootPart.CFrame
  1781. if game.GameId == 245662005 then
  1782. for i = 1, 5 do wait(0.2)
  1783. LP.Character.HumanoidRootPart.CFrame = goalTP
  1784. end
  1785. else
  1786. LP.Character.HumanoidRootPart.CFrame = goalTP
  1787. end
  1788. LP.Character.Head.Anchored = false
  1789. end
  1790. end
  1791.  
  1792. Commands.kill = function(args)
  1793. if args[1] then
  1794. for i,v in pairs(findSinglePlayer(args[1])) do
  1795. if v == LP then
  1796. LP.Character:BreakJoints()
  1797. else
  1798. if hasTools() == false then
  1799. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  1800. else
  1801. FEGodmode()
  1802. for i,v in pairs(LP.Backpack:GetChildren())do
  1803. LP.Character.Humanoid:EquipTool(v)
  1804. end
  1805. local NOW = LP.Character.HumanoidRootPart.CFrame
  1806. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  1807. wait(0.3)
  1808. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  1809. local function tp(player,player2)
  1810. local char1,char2=player.Character,player2.Character
  1811. if char1 and char2 then
  1812. char1:MoveTo(char2.Head.Position)
  1813. end
  1814. end
  1815. wait(0.5)
  1816. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(100000,0,100000))
  1817. wait(0.5)
  1818. tp(LP,game:GetService("Players")[v.Name])
  1819. wait(0.7)
  1820. LP.Character.HumanoidRootPart.CFrame = NOW
  1821. view(LP)
  1822. end
  1823. end
  1824. end
  1825. end
  1826. end
  1827. Commands.bring = function(args)
  1828. if hasTools() == false then
  1829. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  1830. else
  1831. FEGodmode()
  1832. for i,v in pairs(LP.Backpack:GetChildren())do
  1833. LP.Character.Humanoid:EquipTool(v)
  1834. end
  1835. if args[1] then
  1836. for i,v in pairs(findSinglePlayer(args[1])) do
  1837. if v ~= LP then
  1838. local NOW = LP.Character.HumanoidRootPart.CFrame
  1839. local function tp(player,player2)
  1840. local char1,char2=player.Character,player2.Character
  1841. if char1 and char2 then
  1842. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  1843. end
  1844. end
  1845. local function getout(player,player2)
  1846. local char1,char2=player.Character,player2.Character
  1847. if char1 and char2 then
  1848. char1:MoveTo(char2.Head.Position)
  1849. end
  1850. end
  1851. tp(game:GetService("Players")[v.Name], LP)
  1852. wait(0.2)
  1853. tp(game:GetService("Players")[v.Name], LP)
  1854. wait(0.5)
  1855. LP.Character.HumanoidRootPart.CFrame = NOW
  1856. wait(0.5)
  1857. getout(LP, game:GetService("Players")[v.Name])
  1858. wait(0.3)
  1859. LP.Character.HumanoidRootPart.CFrame = NOW
  1860. end
  1861. end
  1862. end
  1863. end
  1864. end
  1865.  
  1866. Commands.naked = function(args)
  1867. for i,v in pairs(LP.Character:GetDescendants()) do
  1868. if v:IsA("Clothing") then
  1869. v:Destroy()
  1870. end
  1871. end
  1872. end
  1873.  
  1874. Commands.nolimbs = function(args)
  1875. LP.Character["Left Arm"]:Destroy()
  1876. LP.Character["Right Arm"]:Destroy()
  1877. LP.Character["Left Leg"]:Destroy()
  1878. LP.Character["Right Leg"]:Destroy()
  1879. end
  1880.  
  1881. Commands.noarms = function(args)
  1882. LP.Character["Left Arm"]:Destroy()
  1883. LP.Character["Right Arm"]:Destroy()
  1884. end
  1885.  
  1886. Commands.nolegs = function(args)
  1887. LP.Character["Left Leg"]:Destroy()
  1888. LP.Character["Right Leg"]:Destroy()
  1889. end
  1890.  
  1891. Commands.headless = function(args)
  1892. local l = LP.Character.Humanoid:Clone()
  1893. LP.Character.Humanoid:Destroy()
  1894. wait(0.2)
  1895. LP.Character.Head.CanCollide = false
  1896. for i,v in pairs(LP.Character:GetDescendants()) do
  1897. if string.sub(v.Name, 1, 4) == "Neck" then
  1898. v:Destroy()
  1899. end
  1900. end
  1901. wait(0.2)
  1902. l.Name = "Humanoid"
  1903. l.Parent = LP.Character
  1904. wait(0.1)
  1905. game:GetService("Workspace").CurrentCamera.CameraSubject = LP.Character
  1906. LP.Character.Animate:Destroy()
  1907. end
  1908.  
  1909. antiremotes = false
  1910. Commands.antikick = function(args)
  1911. if args[1] then
  1912. if args[1] == "on" then
  1913. antiremotes = true
  1914. wait(0.2)
  1915. for i,v in pairs(LP.Character:GetChildren()) do
  1916. if string.find(string.lower(v.Name), "exploit") and v:IsA("LocalScript") then
  1917. v.Disabled = true
  1918. end
  1919. end
  1920. Notification("warning", "This command disables all remotes incase they are kick remotes, may break game.", 8)
  1921. Notification("info", "Does not prevent serverside kicks, use "..commandPrefix.."antikick off to turn off.", 8)
  1922. elseif args[1] == "off" then
  1923. antiremotes = false
  1924. Notification("warning", "Remote anti-kick turned off.", 8)
  1925. end
  1926. end
  1927. end
  1928.  
  1929. blockedremotes = {}
  1930. Commands.blockremote = function(args)
  1931. local getService = ""
  1932. if args[1] then
  1933. local remoteName = string.lower(tostring(args[1]))
  1934. if args[2] then
  1935. local serviceRemote = string.lower(tostring(args[2]))
  1936. if serviceRemote == "workspace" then
  1937. getService = "Workspace"
  1938. elseif serviceRemote == "replicatedstorage" then
  1939. getService = "ReplicatedStorage"
  1940. elseif serviceRemote == "players" then
  1941. getService = "Players"
  1942. elseif serviceRemote == "lighting" then
  1943. getService = "Lighting"
  1944. elseif serviceRemote == "startergui" then
  1945. getService = "StarterGui"
  1946. elseif serviceRemote == "starterpack" then
  1947. getService = "StarterPack"
  1948. elseif serviceRemote == "starterplayer" then
  1949. getService = "StarterPlayer"
  1950. else
  1951. getService = "ReplicatedStorage"
  1952. end
  1953. else
  1954. getService = "ReplicatedStorage"
  1955. end
  1956. for i,getRemote in pairs(game:GetService(getService):GetDescendants()) do
  1957. if string.lower(getRemote.Name) == remoteName then
  1958. table.insert(blockedremotes, getRemote.Name)
  1959. end
  1960. end
  1961. end
  1962. Notification("warning", "If this command does not work, make sure you type remote name/service fully correct.", 8)
  1963. end
  1964.  
  1965. spyingremotes = false
  1966. Commands.remotespy = function(args)
  1967. if args[1] then
  1968. if args[1] == "on" then
  1969. spyingremotes = true
  1970. Notification("info", "Remotespy turned on.", 4)
  1971. elseif args[1] == "off" then
  1972. spyingremotes = false
  1973. Notification("info", "Remotespy turned off.", 4)
  1974. end
  1975. end
  1976. end
  1977.  
  1978. Commands.bang = function(args)
  1979. if args[1] then
  1980. for i,v in pairs(findSinglePlayer(args[1])) do
  1981. if v ~= nil then
  1982. following = true
  1983. flwplr = v
  1984. flwnum = -1
  1985. local bangAnimation = Instance.new("Animation")
  1986. bangAnimation.AnimationId = "rbxassetid://148840371"
  1987. bangTrack = LP.Character.Humanoid:LoadAnimation(bangAnimation)
  1988. if args[2] then
  1989. bangTrack:Play(.1, 1, args[2])
  1990. else
  1991. bangTrack:Play(.1, 1, 1)
  1992. end
  1993. end
  1994. end
  1995. else
  1996. Notification("warning", "No player selected to follow! Use: "..commandPrefix.."follow player", 4)
  1997. end
  1998. end
  1999.  
  2000. Commands.unbang = function(args)
  2001. following = false
  2002. bangTrack:Stop()
  2003. end
  2004.  
  2005. spamdelay = 1
  2006. spamtext = "Spam"
  2007. spamming = false
  2008. Commands.spam = function(args)
  2009. if args[1] then
  2010. spamtext = args[1]
  2011. spamming = true
  2012. end
  2013. end
  2014. Commands.spamdelay = function(args)
  2015. if args[1] then
  2016. spamdelay = args[1]
  2017. end
  2018. end
  2019. spawn(function()
  2020. while wait(spamdelay) do
  2021. if spamming then
  2022. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(spamtext, "All")
  2023. end
  2024. end
  2025. end)
  2026.  
  2027. Commands.unspam = function(args)
  2028. spamming = false
  2029. end
  2030.  
  2031. Commands.info = function(args)
  2032. if args[1] then
  2033. for i,v in pairs(findSinglePlayer(args[1])) do
  2034. createINFO(v)
  2035. end
  2036. end
  2037. end
  2038.  
  2039. Commands.age = function(args)
  2040. if args[1] then
  2041. for i,v in pairs(findPlayer(args[1])) do
  2042. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v.Name.." Account Age: "..v.AccountAge.." days!", "All")
  2043. end
  2044. end
  2045. end
  2046.  
  2047. Commands.invisible = function(args)
  2048. local Character = LP.Character
  2049. if LP.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  2050. local Clone = Character.HumanoidRootPart:Clone()
  2051. Character.HumanoidRootPart:Destroy()
  2052. Clone.Parent = Character
  2053. else
  2054. local Clone = Character.LowerTorso.Root:Clone()
  2055. Character.LowerTorso.Root:Destroy()
  2056. Clone.Parent = Character.LowerTorso
  2057. end
  2058. end
  2059.  
  2060. walkto = false
  2061. walkplr = ""
  2062. Commands.walk = function(args)
  2063. if args[1] then
  2064. for i,v in pairs(findSinglePlayer(args[1])) do
  2065. walkplr = v
  2066. walkto = true
  2067. noclip = true
  2068. end
  2069. end
  2070. end
  2071.  
  2072. Commands.unwalk = function(args)
  2073. walkto = false
  2074. noclip = false
  2075. LP.Character.Humanoid:MoveTo(LP.Character.HumanoidRootPart.Position)
  2076. end
  2077.  
  2078. Commands.glitch = function(args)
  2079. if hasTools() == false then
  2080. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  2081. else
  2082. FEGodmode()
  2083. for i,v in pairs(LP.Backpack:GetChildren())do
  2084. LP.Character.Humanoid:EquipTool(v)
  2085. end
  2086. if args[1] then
  2087. for i,v in pairs(findSinglePlayer(args[1])) do
  2088. local function tp(player,player2)
  2089. local char1,char2=player.Character,player2.Character
  2090. if char1 and char2 then
  2091. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  2092. end
  2093. end
  2094. tp(game:GetService("Players")[v.Name], LP)
  2095. wait(0.2)
  2096. tp(game:GetService("Players")[v.Name], LP)
  2097. wait(0.5)
  2098. local b = Instance.new("BodyForce")
  2099. b.Parent = LP.Character.HumanoidRootPart
  2100. b.Name = "Glitch"
  2101. if args[2] then
  2102. b.Force = Vector3.new(args[2],5000,0)
  2103. else
  2104. b.Force = Vector3.new(100000000,5000,0)
  2105. end
  2106. wait(6)
  2107. b:Destroy()
  2108. end
  2109. end
  2110. end
  2111. end
  2112.  
  2113. Commands.tp = function(args)
  2114. if args[1] then
  2115. for i,v in pairs(findSinglePlayer(args[1])) do
  2116. if v == LP then
  2117. if args[2] then
  2118. for i,a in pairs(findSinglePlayer(args[2])) do
  2119. v.Character.HumanoidRootPart.CFrame = a.Character.HumanoidRootPart.CFrame
  2120. end
  2121. end
  2122. else
  2123. if hasTools() == false then
  2124. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  2125. else
  2126. FEGodmode()
  2127. for i,v in pairs(LP.Backpack:GetChildren())do
  2128. LP.Character.Humanoid:EquipTool(v)
  2129. end
  2130. if args[1] then
  2131. for i,first in pairs(findSinglePlayer(args[1])) do
  2132. if args[2] then
  2133. for i,second in pairs(findSinglePlayer(args[2])) do
  2134. local function tp(player,player2)
  2135. local char1,char2=player.Character,player2.Character
  2136. if char1 and char2 then
  2137. char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
  2138. end
  2139. end
  2140. local function getout(player,player2)
  2141. local char1,char2=player.Character,player2.Character
  2142. if char1 and char2 then
  2143. char1:MoveTo(char2.Head.Position)
  2144. end
  2145. end
  2146. tp(LP, first)
  2147. wait(0.2)
  2148. tp(LP, first)
  2149. wait(0.5)
  2150. tp(LP, second)
  2151. wait(0.2)
  2152. tp(LP, second)
  2153. wait(0.2)
  2154. getout(LP, first)
  2155. end
  2156. end
  2157. end
  2158. end
  2159. end
  2160. end
  2161. end
  2162. end
  2163. end
  2164.  
  2165. Commands.givetool = function(args)
  2166. if args[1] then
  2167. if args[2] then
  2168. local selectedTool = ""
  2169. for i,allTools in pairs(LP.Character:GetDescendants()) do
  2170. if allTools:IsA("Tool") and string.lower(allTools.Name) == string.lower(args[2]) then
  2171. selectedTool = allTools
  2172. else
  2173. for i,otherTools in pairs(LP.Backpack:GetDescendants()) do
  2174. if otherTools:IsA("Tool") and string.lower(otherTools.Name) == string.lower(args[2]) then
  2175. selectedTool = otherTools
  2176. end
  2177. end
  2178. end
  2179. end
  2180. for i,v in pairs(findSinglePlayer(args[1])) do
  2181. if selectedTool ~= "" then
  2182. selectedTool.Parent = v.Character
  2183. end
  2184. end
  2185. else
  2186. for i,plr in pairs(findSinglePlayer(args[1])) do
  2187. for i,tool in pairs(LP.Character:GetDescendants()) do
  2188. if tool:IsA("Tool") then
  2189. tool.Parent = plr.Character
  2190. end
  2191. end
  2192. end
  2193. end
  2194. end
  2195. end
  2196.  
  2197. Commands.givealltools = function(args)
  2198. LP.Character.Humanoid:UnequipTools()
  2199. for i,plr in pairs(findSinglePlayer(args[1])) do
  2200. for i,v in pairs(LP.Character:GetDescendants()) do
  2201. if v:IsA("Tool") then
  2202. v.Parent = plr.Character
  2203. end
  2204. end
  2205. for i,a in pairs(LP.Backpack:GetDescendants()) do
  2206. if a:IsA("Tool") then
  2207. a.Parent = plr.Character
  2208. end
  2209. end
  2210. end
  2211. end
  2212.  
  2213. Commands.blockhats = function(args)
  2214. for i,v in pairs(LP.Character:GetDescendants()) do
  2215. if v:IsA("Accessory") or v:IsA("Hat") then
  2216. for i,mesh in pairs(v:GetDescendants()) do
  2217. if mesh.Name == "Mesh" then
  2218. mesh:Destroy()
  2219. end
  2220. end
  2221. end
  2222. end
  2223. end
  2224.  
  2225. Commands.blocktool = function(args)
  2226. for i,v in pairs(LP.Character:GetDescendants()) do
  2227. if v:IsA("Tool") then
  2228. for i,mesh in pairs(v:GetDescendants()) do
  2229. if mesh.Name == "Mesh" then
  2230. mesh:Destroy()
  2231. end
  2232. end
  2233. end
  2234. end
  2235. end
  2236.  
  2237. Commands.orbit = function(args)
  2238. if args[1] then
  2239. for i,v in pairs(findSinglePlayer(args[1])) do
  2240. view(v)
  2241. RocketPropulsion(5000,100,5000,v,"OrbitMove")
  2242. end
  2243. else
  2244. Notification("warning", "No player selected to orbit! Use: "..commandPrefix.."orbit player", 4)
  2245. end
  2246. end
  2247.  
  2248. Commands.unorbit = function(args)
  2249. for i,v in pairs(LP.Character:GetDescendants()) do
  2250. if v.Name == "OrbitMove" then
  2251. v:Destroy()
  2252. end
  2253. end
  2254. view(LP)
  2255. end
  2256.  
  2257. Commands.pos = function(args)
  2258. Notification("info", "Your current position is ".. tostring(LP.Character.HumanoidRootPart.Position), 9)
  2259. end
  2260.  
  2261. SavedPosition = ""
  2262. Commands.savepos = function(args)
  2263. SavedPosition = LP.Character.HumanoidRootPart.CFrame
  2264. end
  2265. Commands.loadpos = function(args)
  2266. if SavedPosition ~= "" then
  2267. LP.Character.HumanoidRootPart.CFrame = SavedPosition
  2268. end
  2269. end
  2270.  
  2271. Commands.tppos = function(args)
  2272. if args[1] and args[2] and args[3] then
  2273. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(args[1], args[2], args[3]))
  2274. end
  2275. end
  2276.  
  2277. Commands.pmspam = function(args)
  2278. if args[1] then
  2279. local gotPlayer = ""
  2280. for i,v in pairs(findPlayer(args[1])) do
  2281. gotPlayer = v
  2282. end
  2283. table.remove(args, 1)
  2284. local pmSpamMsg = table.concat(args," ")
  2285. spamtext = "/w "..gotPlayer.Name.." "..pmSpamMsg
  2286. spamming = true
  2287. end
  2288. end
  2289.  
  2290. Commands.unpmspam = function(args)
  2291. spamming = false
  2292. end
  2293.  
  2294. Commands.wsvis = function(args)
  2295. if args[1] then
  2296. for i,v in pairs(gsWorkspace:GetDescendants()) do
  2297. if v:IsA("Part") or v:IsA("Decal") then
  2298. if tonumber(args[1]) > 1 then
  2299. v.Transparency = 0.5
  2300. else
  2301. v.Transparency = args[1]
  2302. end
  2303. end
  2304. end
  2305. end
  2306. clientSided()
  2307. end
  2308.  
  2309. Commands.bringobj = function(args)
  2310. if args[1] then
  2311. local Object = ""
  2312. for i,v in pairs(gsWorkspace:GetDescendants()) do
  2313. if string.lower(v.Name) == string.lower(args[1]) then
  2314. Object = v
  2315. end
  2316. end
  2317. if Object == "" then
  2318. Notification("warning", "Object was not found in the workspace.", 6)
  2319. end
  2320. if args[2] then
  2321. Object.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * args[2]
  2322. else
  2323. Object.CFrame = LP.Character.HumanoidRootPart.CFrame + LP.Character.HumanoidRootPart.CFrame.lookVector * 3
  2324. end
  2325. clientSided()
  2326. end
  2327. end
  2328.  
  2329. CBRINGplr = ""
  2330. cbringing = false
  2331. cbringingall = false
  2332. Commands.cbring = function(args)
  2333. if args[1] then
  2334. if string.lower(tostring(args[1])) == "all" or string.lower(tostring(args[1])) == "others" then
  2335. cbringingall = true
  2336. else
  2337. for i,v in pairs(findPlayer(args[1])) do
  2338. CBRINGplr = v
  2339. cbringing = true
  2340. end
  2341. end
  2342. if args[2] then
  2343. CBRINGamount = args[2]
  2344. else
  2345. CBRINGamount = 3
  2346. end
  2347. clientSided()
  2348. end
  2349. end
  2350.  
  2351. Commands.uncbring = function(args)
  2352. cbringing = false
  2353. cbringingall = false
  2354. end
  2355.  
  2356. Commands.cfreeze = function(args)
  2357. if args[1] then
  2358. for i,v in pairs(findPlayer(args[1])) do
  2359. v.Character.HumanoidRootPart.Anchored = true
  2360. end
  2361. clientSided()
  2362. end
  2363. end
  2364.  
  2365. Commands.uncfreeze = function(args)
  2366. if args[1] then
  2367. for i,v in pairs(findPlayer(args[1])) do
  2368. v.Character.HumanoidRootPart.Anchored = false
  2369. end
  2370. else
  2371. for i,all in pairs(gsPlayers:GetPlayers()) do
  2372. all.Character.HumanoidRootPart.Anchored = false
  2373. end
  2374. end
  2375. end
  2376.  
  2377. Commands.unattach = function(args)
  2378. local function getout(player,player2)
  2379. local char1,char2=player.Character,player2.Character
  2380. if char1 and char2 then
  2381. char1:MoveTo(char2.Head.Position)
  2382. end
  2383. end
  2384. getout(LP, LP)
  2385. end
  2386.  
  2387. currentToolSize = ""
  2388. Commands.reach = function(args)
  2389. if args[1] then
  2390. for i,v in pairs(LP.Character:GetDescendants()) do
  2391. if v:IsA("Tool") then
  2392. if string.lower(tostring(args[1])) == "off" then
  2393. v.Handle.Size = currentToolSize
  2394. v.Handle.SelectionBoxCreated:Destroy()
  2395. LP.Character.Humanoid:UnequipTools()
  2396. elseif string.lower(tostring(args[1])) == "on" then
  2397. if args[2] then
  2398. currentToolSize = v.Handle.Size
  2399. local a = Instance.new("SelectionBox",v.Handle)
  2400. a.Name = "SelectionBoxCreated"
  2401. a.Adornee = v.Handle
  2402. v.Handle.Size = Vector3.new(0.5,0.5,args[2])
  2403. v.GripPos = Vector3.new(0,0,0)
  2404. LP.Character.Humanoid:UnequipTools()
  2405. else
  2406. currentToolSize = v.Handle.Size
  2407. local a = Instance.new("SelectionBox",v.Handle)
  2408. a.Name = "SelectionBoxCreated"
  2409. a.Adornee = v.Handle
  2410. v.Handle.Size = Vector3.new(0.5,0.5,60)
  2411. v.GripPos = Vector3.new(0,0,0)
  2412. LP.Character.Humanoid:UnequipTools()
  2413. end
  2414. end
  2415. end
  2416. end
  2417. end
  2418. end
  2419.  
  2420. Commands.droptool = function(args)
  2421. for i,v in pairs(LP.Character:GetDescendants()) do
  2422. if v:IsA("Tool") then
  2423. v.Parent = gsWorkspace
  2424. end
  2425. end
  2426. for i,a in pairs(LP.Backpack:GetDescendants()) do
  2427. if a:IsA("Tool") then
  2428. a.Parent = gsWorkspace
  2429. end
  2430. end
  2431. end
  2432.  
  2433. Commands.drophats = function(args)
  2434. for i,v in pairs(LP.Character:GetDescendants()) do
  2435. if v:IsA("Accessory") or v:IsA("Hat") then
  2436. v.Parent = gsWorkspace
  2437. end
  2438. end
  2439. end
  2440.  
  2441. Commands.hidecmdbar = function(args)
  2442. CMDBAR.Visible = false
  2443. end
  2444.  
  2445. Commands.showcmdbar = function(args)
  2446. CMDBAR.Visible = true
  2447. end
  2448.  
  2449. Commands.prefix = function(args)
  2450. if args[1] then
  2451. commandPrefix = string.sub(tostring(args[1]), 1, 1)
  2452. fullUpdate()
  2453. end
  2454. end
  2455.  
  2456. Commands.removeinvis = function(args)
  2457. for i,v in pairs(gsWorkspace:GetDescendants()) do
  2458. if v:IsA("Part") and v.Name ~= "HumanoidRootPart" then
  2459. if v.Transparency == 1 then
  2460. v:Destroy()
  2461. end
  2462. end
  2463. end
  2464. clientSided()
  2465. end
  2466.  
  2467. Commands.removefog = function(args)
  2468. gsLighting.FogStart = 0
  2469. gsLighting.FogEnd = 9999999999999
  2470. clientSided()
  2471. end
  2472.  
  2473. Commands.animation = function(args)
  2474. if args[1] then
  2475. if string.lower(tostring(args[1])) == "gui" then
  2476. loadstring(game:HttpGet(("https://pastebin.com/raw/mdbTSP4d"),true))()
  2477. else
  2478. local Anim = Instance.new("Animation")
  2479. Anim.AnimationId = "rbxassetid://".. tostring(args[1])
  2480. local track = LP.Character.Humanoid:LoadAnimation(Anim)
  2481. if args[2] then
  2482. track:Play(.1, 1, args[2])
  2483. else
  2484. track:Play(.1, 1, 1)
  2485. end
  2486. end
  2487. end
  2488. end
  2489.  
  2490. Commands.btools = function(args)
  2491. local Clone_T = Instance.new("HopperBin",LP.Backpack)
  2492. Clone_T.BinType = "Clone"
  2493. local Destruct = Instance.new("HopperBin",LP.Backpack)
  2494. Destruct.BinType = "Hammer"
  2495. local Hold_T = Instance.new("HopperBin",LP.Backpack)
  2496. Hold_T.BinType = "Grab"
  2497. clientSided()
  2498. end
  2499.  
  2500. Commands.esp = function(args)
  2501. if args[1] then
  2502. for i,v in pairs(findPlayer(args[1])) do
  2503. local espPlayer = v
  2504. for i,createESP in pairs(espPlayer.Character:GetDescendants()) do
  2505. if createESP:IsA("Part") or createESP:IsA("MeshPart") then
  2506. if createESP.Name ~= "HumanoidRootPart" and createESP.Name ~= "Handle" then
  2507. local current = true
  2508. local espBOX = Instance.new("BoxHandleAdornment")
  2509. espBOX.Parent = gsCoreGui
  2510. espBOX.Name = "rGET"..espPlayer.Name
  2511. espBOX.Adornee = createESP
  2512. espBOX.AlwaysOnTop = true
  2513. espBOX.ZIndex = 0
  2514. espBOX.Size = createESP.Size
  2515. espBOX.Transparency = 0.3
  2516. local AboveHead = Instance.new("BillboardGui")
  2517. AboveHead.Parent = gsCoreGui
  2518. AboveHead.Adornee = espPlayer.Character.Head
  2519. AboveHead.Name = "rGET"..espPlayer.Name
  2520. AboveHead.Size = UDim2.new(0, 100, 0, 100)
  2521. AboveHead.StudsOffset = Vector3.new(0, 1, 0)
  2522. AboveHead.AlwaysOnTop = true
  2523. local Info = Instance.new("TextLabel")
  2524. Info.Parent = AboveHead
  2525. Info.BackgroundTransparency = 1
  2526. Info.Position = UDim2.new(0, 0, 0, 0)
  2527. Info.Size = UDim2.new(1, 0, 0, 40)
  2528. Info.TextColor3 = Color3.fromRGB(200,200,200)
  2529. Info.TextStrokeTransparency = 0.5
  2530. Info.TextSize = 15
  2531. if espPlayer.TeamColor == LP.TeamColor then
  2532. espBOX.Color = BrickColor.new("Lime green")
  2533. Info.TextStrokeColor3 = Color3.fromRGB(10,100,10)
  2534. else
  2535. espBOX.Color = BrickColor.new("Really red")
  2536. Info.TextStrokeColor3 = Color3.fromRGB(100,10,10)
  2537. end
  2538. game:GetService('RunService').Stepped:connect(function()
  2539. if current and LP.Character.Humanoid and espPlayer.Character.HumanoidRootPart then
  2540. Info.Text = espPlayer.Name.." (".. math.floor((LP.Character.HumanoidRootPart.Position - espPlayer.Character.HumanoidRootPart.Position).magnitude)..")"
  2541. end
  2542. end)
  2543. espPlayer.Character.Humanoid.Died:Connect(function()
  2544. current = false
  2545. espBOX:Destroy()
  2546. AboveHead:Destroy()
  2547. end)
  2548. gsPlayers.PlayerRemoving:Connect(function(plr)
  2549. if plr == espPlayer then
  2550. current = false
  2551. espBOX:Destroy()
  2552. AboveHead:Destroy()
  2553. end
  2554. end)
  2555. end
  2556. end
  2557. end
  2558. end
  2559. clientSided()
  2560. end
  2561. end
  2562.  
  2563. Commands.unesp = function(args)
  2564. if not args[1] then
  2565. for i,v in pairs(gsCoreGui:GetDescendants()) do
  2566. if string.sub(v.Name, 1, 4) == "rGET" then
  2567. v:Destroy()
  2568. end
  2569. end
  2570. else
  2571. for i,v in pairs(gsCoreGui:GetDescendants()) do
  2572. if string.sub(v.Name, 1, 4) == "rGET" then
  2573. for i,a in pairs(findPlayer(args[1])) do
  2574. if string.sub(v.Name, 5) == a.Name then
  2575. v:Destroy()
  2576. end
  2577. end
  2578. end
  2579. end
  2580. end
  2581. end
  2582.  
  2583. Commands.dice = function(args)
  2584. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("You rolled a dice for ".. tostring(math.random(1, 6)), "All")
  2585. end
  2586.  
  2587. Commands.random = function(args)
  2588. if args[1] and args[2] then
  2589. 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")
  2590. end
  2591. end
  2592.  
  2593. Commands.closegame = function(args)
  2594. game:Shutdown()
  2595. end
  2596.  
  2597. Commands.savetool = function(args)
  2598. if args[1] then
  2599. for i,a in pairs(LP.Character:GetDescendants()) do
  2600. if a:IsA("Tool") and string.lower(a.Name) == string.lower(tostring(args[1])) then
  2601. a.Parent = LP
  2602. local oldName = a.Name
  2603. a.Name = "saved "..oldName
  2604. else
  2605. for i,n in pairs(LP.Backpack:GetDescendants()) do
  2606. if n:IsA("Tool") and string.lower(n.Name) == string.lower(tostring(args[1])) then
  2607. n.Parent = LP
  2608. local sOldName = n.Name
  2609. n.Name = "saved "..sOldName
  2610. end
  2611. end
  2612. end
  2613. end
  2614. else
  2615. for i,v in pairs(LP.Character:GetDescendants()) do
  2616. if v:IsA("Tool") then
  2617. v.Parent = LP
  2618. local oldName = v.Name
  2619. v.Name = "saved "..oldName
  2620. end
  2621. end
  2622. end
  2623. end
  2624.  
  2625. Commands.loadtool = function(args)
  2626. if args[1] then
  2627. for i,a in pairs(LP:GetChildren()) do
  2628. 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
  2629. a.Parent = LP.Backpack
  2630. local currentName = a.Name
  2631. a.Name = string.sub(currentName, 7)
  2632. end
  2633. end
  2634. else
  2635. for i,v in pairs(LP:GetChildren()) do
  2636. if string.sub(v.Name, 1, 5) == "saved" then
  2637. v.Parent = LP.Backpack
  2638. local currentName = v.Name
  2639. v.Name = string.sub(currentName, 7)
  2640. end
  2641. end
  2642. end
  2643. end
  2644.  
  2645. Commands.savealltool = function(args)
  2646. for i,v in pairs(LP.Character:GetDescendants()) do
  2647. if v:IsA("Tool") then
  2648. v.Parent = LP
  2649. local oldName = v.Name
  2650. v.Name = "saved "..oldName
  2651. end
  2652. end
  2653. for i,v in pairs(LP.Backpack:GetDescendants()) do
  2654. if v:IsA("Tool") then
  2655. v.Parent = LP
  2656. local oldName = v.Name
  2657. v.Name = "saved "..oldName
  2658. end
  2659. end
  2660. end
  2661.  
  2662. Commands.loadalltool = function(args)
  2663. for i,v in pairs(LP:GetChildren()) do
  2664. if v:IsA("Tool") and string.sub(v.Name, 1, 5) == "saved" then
  2665. v.Parent = LP.Backpack
  2666. local currentName = v.Name
  2667. v.Name = string.sub(currentName, 7)
  2668. end
  2669. end
  2670. end
  2671.  
  2672. Mouse.KeyDown:Connect(function(key)
  2673. if key == clicktpKEY and clicktpACTIVE == true then
  2674. if Mouse.Target then
  2675. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z)
  2676. end
  2677. end
  2678. if key == clickdelKEY and clickdelACTIVE == true then
  2679. if Mouse.Target then
  2680. Mouse.Target:Destroy()
  2681. end
  2682. end
  2683. end)
  2684. Mouse.Button1Down:Connect(function()
  2685. if clicktpACTIVE == true and clicktpCLICK == true then
  2686. if Mouse.Target then
  2687. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 5, Mouse.Hit.z)
  2688. end
  2689. end
  2690. if clickdelACTIVE == true and clickdelCLICK == true then
  2691. if Mouse.Target then
  2692. Mouse.Target:Destroy()
  2693. end
  2694. end
  2695. end)
  2696.  
  2697. clicktpKEY = ""
  2698. clickdelKEY = ""
  2699. clicktpACTIVE = false
  2700. clickdelACTIVE = false
  2701. clicktpCLICK = false
  2702. clickdelCLICK = false
  2703.  
  2704. Commands.clicktp = function(args)
  2705. if args[1] then
  2706. clicktpKEY = string.sub(tostring(args[1]), 1, 1)
  2707. clicktpACTIVE = true
  2708. clicktpCLICK = false
  2709. else
  2710. clicktpKEY = ""
  2711. clicktpACTIVE = true
  2712. clicktpCLICK = true
  2713. end
  2714. clientSided()
  2715. end
  2716.  
  2717. Commands.clickdel = function(args)
  2718. if args[1] then
  2719. clickdelKEY = string.sub(tostring(args[1]), 1, 1)
  2720. clickdelACTIVE = true
  2721. clickdelCLICK = false
  2722. else
  2723. clickdelKEY = ""
  2724. clickdelACTIVE = true
  2725. clickdelCLICK = true
  2726. end
  2727. clientSided()
  2728. end
  2729.  
  2730. Commands.unclicktp = function(args)
  2731. clicktpACTIVE = false
  2732. end
  2733.  
  2734. Commands.unclickdel = function(args)
  2735. clickdelACTIVE = false
  2736. end
  2737.  
  2738. Commands.oof = function(args)
  2739. spawn(function()
  2740. while wait() do
  2741. for i,v in pairs(game:GetService'Players':GetPlayers()) do
  2742. if v.Character ~= nil and v.Character:FindFirstChild'Head' then
  2743. for _,x in pairs(v.Character.Head:GetChildren()) do
  2744. 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
  2745. end
  2746. end
  2747. end
  2748. end
  2749. end)
  2750. end
  2751.  
  2752. Commands.chatlogs = function(args)
  2753. MainChatFrame.Position = UDim2.new(0, 760, 0, 261)
  2754. MainChatFrame.Visible = true
  2755. end
  2756.  
  2757. Commands.stopadmin = function(args)
  2758. commandPrefix = " "
  2759. following = false
  2760. trailing = false
  2761. annoying = false
  2762. CMDBAR.Visible = false
  2763. Match.Visible = false
  2764. flying = false
  2765. end
  2766.  
  2767. Commands.freecam = function(args)
  2768. for i,getFC in pairs(gsWorkspace:GetDescendants()) do
  2769. if getFC.Name == "rGETpartNUMBER2" then
  2770. getFC:Destroy()
  2771. end
  2772. end
  2773. local CameraPart = Instance.new("Part")
  2774. CameraPart.CanCollide = false
  2775. CameraPart.CFrame = LP.Character.Head.CFrame
  2776. CameraPart.Locked = true
  2777. CameraPart.Transparency = 1
  2778. CameraPart.Size = Vector3.new(1, 1, 1)
  2779. CameraPart.Parent = gsWorkspace
  2780. CameraPart.Name = "rGETpartNUMBER2"
  2781. if bypassMODE == true then
  2782. loopviewfc = true
  2783. elseif bypassMODE == false then
  2784. gsWorkspace.CurrentCamera.CameraSubject = CameraPart
  2785. end
  2786. local speedget = 1
  2787. local T = CameraPart
  2788. local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  2789. local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  2790. local SPEED = speedget
  2791. if args[1] then
  2792. speedfly = tonumber(args[1])
  2793. else
  2794. speedfly = 1
  2795. end
  2796. local function freecamfly()
  2797. LP.Character.Head.Anchored = true
  2798. doFREECAM = true
  2799. local BG = Instance.new('BodyGyro', T)
  2800. local BV = Instance.new('BodyVelocity', T)
  2801. BG.P = 9e4
  2802. BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  2803. BG.cframe = T.CFrame
  2804. BV.velocity = Vector3.new(0, 0.1, 0)
  2805. BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2806. spawn(function()
  2807. repeat wait()
  2808. if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  2809. SPEED = 50
  2810. elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  2811. SPEED = 0
  2812. end
  2813. if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  2814. 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
  2815. lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  2816. elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  2817. 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
  2818. else
  2819. BV.velocity = Vector3.new(0, 0.1, 0)
  2820. end
  2821. BG.cframe = workspace.CurrentCamera.CoordinateFrame
  2822. until not doFREECAM
  2823. CONTROL = {F = 0, B = 0, L = 0, R = 0}
  2824. lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  2825. SPEED = 0
  2826. BG:destroy()
  2827. BV:destroy()
  2828. end)
  2829. end
  2830. Mouse.KeyDown:connect(function(KEY)
  2831. if KEY:lower() == 'w' then
  2832. CONTROL.F = speedfly
  2833. elseif KEY:lower() == 's' then
  2834. CONTROL.B = -speedfly
  2835. elseif KEY:lower() == 'a' then
  2836. CONTROL.L = -speedfly
  2837. elseif KEY:lower() == 'd' then
  2838. CONTROL.R = speedfly
  2839. end
  2840. end)
  2841. Mouse.KeyUp:connect(function(KEY)
  2842. if KEY:lower() == 'w' then
  2843. CONTROL.F = 0
  2844. elseif KEY:lower() == 's' then
  2845. CONTROL.B = 0
  2846. elseif KEY:lower() == 'a' then
  2847. CONTROL.L = 0
  2848. elseif KEY:lower() == 'd' then
  2849. CONTROL.R = 0
  2850. end
  2851. end)
  2852. freecamfly()
  2853. end
  2854.  
  2855. Commands.fc = function(args)
  2856. if args[1] then
  2857. run(commandPrefix.."freecam "..args[1])
  2858. else
  2859. run(commandPrefix.."freecam")
  2860. end
  2861. end
  2862.  
  2863. Commands.unfreecam = function(args)
  2864. doFREECAM = false
  2865. LP.Character.Head.Anchored = false
  2866. view(LP)
  2867. if gsWorkspace.rGETpartNUMBER2 then
  2868. gsWorkspace.rGETpartNUMBER2:Destroy()
  2869. end
  2870. loopviewfc = false
  2871. end
  2872.  
  2873. Commands.unfc = function(args)
  2874. doFREECAM = false
  2875. LP.Character.Head.Anchored = false
  2876. view(LP)
  2877. if gsWorkspace.rGETpartNUMBER2 then
  2878. gsWorkspace.rGETpartNUMBER2:Destroy()
  2879. end
  2880. loopviewfc = false
  2881. end
  2882.  
  2883. Commands.gotofc = function(args)
  2884. doFREECAM = false
  2885. LP.Character.Head.Anchored = false
  2886. view(LP)
  2887. pcall(function()
  2888. LP.Character.HumanoidRootPart.CFrame = gsWorkspace.rGETpartNUMBER2.CFrame
  2889. gsWorkspace.rGETpartNUMBER2:Destroy()
  2890. end)
  2891. loopviewfc = false
  2892. end
  2893.  
  2894. Commands.fctp = function(args)
  2895. if args[1] then
  2896. for i,v in pairs(findPlayer(args[1])) do
  2897. pcall(function()
  2898. gsWorkspace.rGETpartNUMBER2.CFrame = v.Character.Head.CFrame
  2899. end)
  2900. end
  2901. end
  2902. end
  2903.  
  2904. Commands.cmds = function(args)
  2905. CMDSmain.Position = UDim2.new(0, 695, 0, 297)
  2906. CMDSmain.Visible = true
  2907. CMDSmain:TweenSize(UDim2.new(0, 440, 0, 367), "InOut", "Sine", 1)
  2908. end
  2909.  
  2910. Commands.fullcredits = function(args)
  2911. Notification("info", "Credit to Autumn, Josh and 3dsboy08 (Help with "..commandPrefix.."remotespy and anti client kick)", 1)
  2912. Notification("info", "Credit to Infinite Yield developers (Assisted in "..commandPrefix.."esp and "..commandPrefix.."fly commands)", 1)
  2913. Notification("info", "Credit to Timeless ("..commandPrefix.."invisible) and Harkinian ("..commandPrefix.."shutdown)", 1)
  2914. Notification("info", "Credit to DEX creators ("..commandPrefix.."explorer) and xFunnieuss ("..commandPrefix.."spinhats)", 1)
  2915. Notification("info", "Only creator is illremember", 2)
  2916. end
  2917.  
  2918. Commands.hotkey = function(args)
  2919. if args[1] then
  2920. local hotkeyKEY = string.sub(tostring(args[1]), 1, 3)
  2921. if args[2] then
  2922. table.remove(args, 1)
  2923. local hotkeyCMD = table.concat(args, " ")
  2924. table.insert(hotkeys, hotkeyCMD.."//"..hotkeyKEY)
  2925. fullUpdate()
  2926. Notification("info", "Hotkey added!", 1)
  2927. end
  2928. end
  2929. end
  2930.  
  2931. Mouse.KeyDown:Connect(function(key)
  2932. for i,v in pairs(hotkeys) do
  2933. local currentKey = string.match(v, "[%a%d]+$")
  2934. if string.len(currentKey) == 1 then
  2935. if key == string.sub(v, #v, #v) then
  2936. local commandtoRUN = string.match(v, "^[%w%s]+")
  2937. if string.sub(string.lower(tostring(commandtoRUN)), 1, 3) == "fly" then
  2938. if bypassMODE == true then
  2939. if doFREECAM == false then
  2940. run(commandPrefix..tostring(commandtoRUN))
  2941. else
  2942. run(commandPrefix.."unfly")
  2943. end
  2944. else
  2945. if flying == false then
  2946. run(commandPrefix..tostring(commandtoRUN))
  2947. else
  2948. run(commandPrefix.."unfly")
  2949. end
  2950. end
  2951. elseif tostring(commandtoRUN) == "noclip" then
  2952. if noclip == false then
  2953. run(commandPrefix..tostring(commandtoRUN))
  2954. else
  2955. run(commandPrefix.."clip")
  2956. end
  2957. elseif tostring(commandtoRUN) == "freecam" or tostring(commandtoRUN) == "fc" then
  2958. if doFREECAM == false then
  2959. run(commandPrefix..tostring(commandtoRUN))
  2960. else
  2961. if fchotkeymode == "goto" then
  2962. run(commandPrefix.."gotofc")
  2963. elseif fchotkeymode == "unfc" then
  2964. run(commandPrefix.."unfreecam")
  2965. end
  2966. end
  2967. else
  2968. run(commandPrefix..tostring(commandtoRUN))
  2969. end
  2970. end
  2971. else
  2972. if string.lower(string.sub(tostring(currentKey), 1, 1)) == "f" then
  2973. local commandtoRUN = string.match(v, "^[%w%s]+")
  2974. local hotkeyadjust = tonumber(string.sub(currentKey, 2, 3)) + 25
  2975. if string.byte(key) == hotkeyadjust then
  2976. if string.sub(string.lower(tostring(commandtoRUN)), 1, 3) == "fly" then
  2977. if bypassMODE == true then
  2978. if doFREECAM == false then
  2979. run(commandPrefix..tostring(commandtoRUN))
  2980. else
  2981. run(commandPrefix.."unfly")
  2982. end
  2983. else
  2984. if flying == false then
  2985. run(commandPrefix..tostring(commandtoRUN))
  2986. else
  2987. run(commandPrefix.."unfly")
  2988. end
  2989. end
  2990. elseif tostring(commandtoRUN) == "noclip" then
  2991. if noclip == false then
  2992. run(commandPrefix..tostring(commandtoRUN))
  2993. else
  2994. run(commandPrefix.."clip")
  2995. end
  2996. elseif tostring(commandtoRUN) == "freecam" or tostring(commandtoRUN) == "fc" then
  2997. if doFREECAM == false then
  2998. run(commandPrefix..tostring(commandtoRUN))
  2999. else
  3000. if fchotkeymode == "goto" then
  3001. run(commandPrefix.."gotofc")
  3002. elseif fchotkeymode == "unfc" then
  3003. run(commandPrefix.."unfreecam")
  3004. end
  3005. end
  3006. else
  3007. run(commandPrefix..tostring(commandtoRUN))
  3008. end
  3009. end
  3010. end
  3011. end
  3012. end
  3013. end)
  3014.  
  3015. Commands.removeallhotkey = function(args)
  3016. hotkeys = {}
  3017. fullUpdate()
  3018. Notification("warning", "All hotkeys reset/removed", 6)
  3019. end
  3020.  
  3021. Commands.removehotkey = function(args)
  3022. if args[1] then
  3023. for i,v in pairs(hotkeys) do
  3024. local currentKey = string.match(v, "[%a%d]+$")
  3025. if currentKey == string.lower(tostring(args[1])) then
  3026. table.remove(hotkeys, i)
  3027. fullUpdate()
  3028. end
  3029. end
  3030. end
  3031. end
  3032.  
  3033. Commands.printhotkeys = function(args)
  3034. for i,v in pairs(hotkeys) do
  3035. warn("HOTKEYS:")
  3036. print(v)
  3037. end
  3038. end
  3039.  
  3040. Commands.os = function(args)
  3041. if args[1] then
  3042. for i,v in pairs(findPlayer(args[1])) do
  3043. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v.Name.." is on "..v.OsPlatform, "All")
  3044. end
  3045. end
  3046. end
  3047.  
  3048. spinning = false
  3049. Commands.spin = function(args)
  3050. if args[1] then
  3051. for i,v in pairs(findSinglePlayer(args[1])) do
  3052. run(commandPrefix.."attach "..v.Name)
  3053. annplr = v
  3054. annoying = true
  3055. spinning = true
  3056. end
  3057. end
  3058. end
  3059.  
  3060. Commands.unspin = function(args)
  3061. if spinning then
  3062. annoying = false
  3063. spinning = false
  3064. end
  3065. run(""..commandPrefix.."unattach")
  3066. end
  3067.  
  3068. Commands.explorer = function(args)
  3069. loadstring(game:GetObjects("rbxassetid://418957341")[1].Source)()
  3070. Notification("info", "Loaded DEX explorer!", 5)
  3071. end
  3072.  
  3073. Commands.maxzoom = function(args)
  3074. if args[1] then
  3075. LP.CameraMaxZoomDistance = args[1]
  3076. end
  3077. end
  3078.  
  3079. Commands.stare = function(args)
  3080. if args[1] then
  3081. for i,v in pairs(findSinglePlayer(args[1])) do
  3082. stareplr = v
  3083. staring = true
  3084. end
  3085. end
  3086. end
  3087.  
  3088. Commands.unstare = function(args)
  3089. staring = false
  3090. end
  3091.  
  3092. Commands.tempgod = function(args)
  3093. local hu = LP.Character.Humanoid
  3094. local l = Instance.new("Humanoid")
  3095. l.Parent = LP.Character
  3096. l.Name = "Humanoid"
  3097. wait(0.1)
  3098. hu.Parent = LP
  3099. gsWorkspace.CurrentCamera.CameraSubject = LP.Character
  3100. LP.Character.Animate.Disabled = true
  3101. wait(0.1)
  3102. LP.Character.Animate.Disabled = false
  3103. Notification("info", "Enabled Temp FE Godmode", 4)
  3104. end
  3105.  
  3106. Commands.void = function(args)
  3107. if hasTools() == false then
  3108. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  3109. else
  3110. FEGodmode()
  3111. for i,v in pairs(LP.Backpack:GetChildren())do
  3112. LP.Character.Humanoid:EquipTool(v)
  3113. end
  3114. if args[1] then
  3115. for i,v in pairs(findSinglePlayer(args[1])) do
  3116. local NOW = LP.Character.HumanoidRootPart.CFrame
  3117. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  3118. wait(0.3)
  3119. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  3120. local function tp(player,player2)
  3121. local char1,char2=player.Character,player2.Character
  3122. if char1 and char2 then
  3123. char1:MoveTo(char2.Head.Position)
  3124. end
  3125. end
  3126. wait(0.5)
  3127. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(999999999999999,0,999999999999999))
  3128. end
  3129. end
  3130. end
  3131. end
  3132.  
  3133. Commands.freefall = function(args)
  3134. if hasTools() == false then
  3135. Notification("warning", "You need a tool in your backpack/inventory to use this command.", 8)
  3136. else
  3137. FEGodmode()
  3138. for i,v in pairs(LP.Backpack:GetChildren())do
  3139. LP.Character.Humanoid:EquipTool(v)
  3140. end
  3141. if args[1] then
  3142. for i,v in pairs(findSinglePlayer(args[1])) do
  3143. local NOW = LP.Character.HumanoidRootPart.CFrame
  3144. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  3145. wait(0.3)
  3146. LP.Character.HumanoidRootPart.CFrame = v.Character["Left Arm"].CFrame
  3147. wait(0.5)
  3148. LP.Character.HumanoidRootPart.CFrame = NOW
  3149. wait(0.5)
  3150. LP.Character.HumanoidRootPart.CFrame = NOW
  3151. wait(0.6)
  3152. LP.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
  3153. end
  3154. end
  3155. end
  3156. end
  3157.  
  3158. Commands.version = function(args)
  3159. Notification("info", "Current Shattervast Version: V2.8", 7)
  3160. end
  3161.  
  3162. Commands.shiftlockon = function(args)
  3163. LP.DevEnableMouseLock = true
  3164. Notification("info", "Shift lock enabled!", 5)
  3165. end
  3166.  
  3167. for i,needChat in pairs(gsPlayers:GetPlayers()) do
  3168. needChat.Chatted:Connect(function(msg)
  3169. if copychatall then
  3170. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All")
  3171. end
  3172. end)
  3173. end
  3174. gsPlayers.PlayerAdded:Connect(function(plr)
  3175. plr.Chatted:Connect(function(msg)
  3176. if copychatall then
  3177. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All")
  3178. end
  3179. end)
  3180. end)
  3181.  
  3182. copychatplayer = nil
  3183. copychatall = false
  3184. copychatACTIVE = false
  3185. Commands.copychat = function(args)
  3186. if args[1] then
  3187. if string.lower(args[1]) == "all" or string.lower(args[1]) == "others" then
  3188. copychatall = true
  3189. else
  3190. for i,v in pairs(findPlayer(args[1])) do
  3191. if v ~= LP then
  3192. copychatplayer = v
  3193. copychatACTIVE = true
  3194. end
  3195. end
  3196. end
  3197. end
  3198. end
  3199.  
  3200. Commands.uncopychat = function(args)
  3201. copychatall = false
  3202. copychatACTIVE = false
  3203. end
  3204.  
  3205. Commands.newkill = function(args)
  3206. if hasTools() == false then
  3207. Notification("warning", "You need TWO tools in your backpack/inventory to use this command.", 8)
  3208. else
  3209. if args[1] then
  3210. for i,plr in pairs(findSinglePlayer(args[1])) do
  3211. for i,v in pairs(LP.Backpack:GetChildren())do
  3212. LP.Character.Humanoid:EquipTool(v)
  3213. end
  3214. for i,v in pairs(LP.Backpack:GetDescendants()) do
  3215. if v:IsA("Tool") then
  3216. v.Parent = LP.Character
  3217. wait()
  3218. v.Parent = plr.Character
  3219. end
  3220. end
  3221. wait(0.4)
  3222. LP.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(4000000, -10, 200000))
  3223. end
  3224. end
  3225. end
  3226. end
  3227.  
  3228. Commands.newattach = function(args)
  3229. if hasTools() == false then
  3230. Notification("warning", "You need TWO tools in your backpack/inventory to use this command.", 8)
  3231. else
  3232. if args[1] then
  3233. for i,plr in pairs(findSinglePlayer(args[1])) do
  3234. for i,v in pairs(LP.Backpack:GetChildren())do
  3235. LP.Character.Humanoid:EquipTool(v)
  3236. end
  3237. for i,v in pairs(LP.Backpack:GetDescendants()) do
  3238. if v:IsA("Tool") then
  3239. v.Parent = LP.Character
  3240. wait()
  3241. v.Parent = plr.Character
  3242. end
  3243. end
  3244. end
  3245. end
  3246. end
  3247. end
  3248.  
  3249. Commands.newbring = function(args)
  3250. if hasTools() == false then
  3251. Notification("warning", "You need TWO tools in your backpack/inventory to use this command.", 8)
  3252. else
  3253. if args[1] then
  3254. for i,plr in pairs(findSinglePlayer(args[1])) do
  3255. local NOW = LP.Character.HumanoidRootPart.CFrame
  3256. for i,v in pairs(LP.Backpack:GetChildren())do
  3257. LP.Character.Humanoid:EquipTool(v)
  3258. end
  3259. for i,v in pairs(LP.Backpack:GetDescendants()) do
  3260. if v:IsA("Tool") then
  3261. v.Parent = LP.Character
  3262. wait()
  3263. v.Parent = plr.Character
  3264. end
  3265. end
  3266. wait(0.4)
  3267. LP.Character.HumanoidRootPart.CFrame = NOW
  3268. wait(0.4)
  3269. LP.Character.HumanoidRootPart.CFrame = NOW
  3270. end
  3271. end
  3272. end
  3273. end
  3274.  
  3275. Commands.spawn = function(args)
  3276. if args[1] then
  3277. if string.lower(tostring(args[1])) == "ws" then
  3278. spawnWS = args[2] or CurrentWalkspeed
  3279. LP.Character.Humanoid.WalkSpeed = args[2] or CurrentWalkspeed
  3280. elseif string.lower(tostring(args[1])) == "jp" then
  3281. spawnJP = args[2] or CurrentJumppower
  3282. LP.Character.Humanoid.JumpPower = args[2] or CurrentJumppower
  3283. elseif string.lower(tostring(args[1])) == "hh" then
  3284. spawnHH = args[2] or CurrentHipheight
  3285. LP.Character.Humanoid.HipHeight = args[2] or CurrentHipheight
  3286. elseif string.lower(tostring(args[1])) == "god" then
  3287. spawningfegod = true
  3288. FEGodmode()
  3289. end
  3290. end
  3291. end
  3292.  
  3293. Commands.unspawn = function(args)
  3294. spawnWS = CurrentWalkspeed
  3295. spawnJP = CurrentJumppower
  3296. spawnHH = CurrentHipheight
  3297. spawningfegod = false
  3298. Notification("info", "Reset spawning stats", 5)
  3299. end
  3300.  
  3301. savingtoolsloop = false
  3302. Commands.autosavetool = function(args)
  3303. if args[1] then
  3304. if string.lower(tostring(args[1])) == "on" then
  3305. savingtoolsloop = true
  3306. elseif string.lower(tostring(args[1])) == "off" then
  3307. savingtoolsloop = false
  3308. end
  3309. end
  3310. end
  3311.  
  3312. modeFling = false
  3313. modeCompliment = false
  3314. modeMove = false
  3315. modeInfo = false
  3316. Commands.beginbot = function(args)
  3317. if not args[1] then
  3318. print("fling // compliment // move // info")
  3319. Notification("info", ""..commandPrefix.."beginbot Modes printed", 5)
  3320. else
  3321. if string.lower(tostring(args[1])) == "fling" then
  3322. modeFling = true
  3323. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Hello! I am Fling-Bot 5000! Say !fling [Player] to fling that player!", "All")
  3324. elseif string.lower(tostring(args[1])) == "compliment" then
  3325. modeCompliment = true
  3326. complimentReady = true
  3327. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Good day, I am Compliment-Bot. Say !c [Player] to give them a compliment.", "All")
  3328. elseif string.lower(tostring(args[1])) == "move" then
  3329. modeMove = true
  3330. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Hi, I am movement bot. Commands you can use: !walk [Player], !bringbot, !follow [Player].", "All")
  3331. elseif string.lower(tostring(args[1])) == "info" then
  3332. modeInfo = true
  3333. infoReady = true
  3334. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Hey, I'm Info-Bot. Commands you can use: !age [Player], !id [Player].", "All")
  3335. end
  3336. end
  3337. end
  3338.  
  3339. Commands.endbot = function(args)
  3340. if not args[1] then
  3341. modeFling = false
  3342. modeCompliment = false
  3343. modeMove = false
  3344. modeInfo = false
  3345. else
  3346. if string.lower(tostring(args[1])) == "fling" then
  3347. modeFling = false
  3348. elseif string.lower(tostring(args[1])) == "compliment" then
  3349. modeCompliment = false
  3350. elseif string.lower(tostring(args[1])) == "move" then
  3351. modeMove = false
  3352. elseif string.lower(tostring(args[1])) == "info" then
  3353. modeInfo = false
  3354. end
  3355. end
  3356. end
  3357.  
  3358. Commands.stopsit = function(args)
  3359. stopsitting = true
  3360. end
  3361.  
  3362. Commands.gosit = function(args)
  3363. stopsitting = false
  3364. end
  3365.  
  3366. chattingerror = true
  3367. Commands.chaterror = function(args)
  3368. if chattingerror then
  3369. chattingerror = false
  3370. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(" ", "All")
  3371. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(" ", "All")
  3372. wait(4)
  3373. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(" ", "All")
  3374. wait(3)
  3375. chattingerror = true
  3376. end
  3377. end
  3378.  
  3379. spawnpos = nil
  3380. spawningpos = true
  3381. Commands.spawnpoint = function(args)
  3382. spawnpos = LP.Character.HumanoidRootPart.CFrame
  3383. spawningpos = true
  3384. Notification("info", "Spawn point has been set! Use "..commandPrefix.."nospawn to remove.", 6)
  3385. end
  3386.  
  3387. Commands.nospawn = function(args)
  3388. spawningpos = false
  3389. Notification("info", "Spawn point has been removed. Use "..commandPrefix.."spawnpoint to enable.", 6)
  3390. end
  3391.  
  3392. Commands.bypass = function(args)
  3393. if args[1] then
  3394. if string.lower(tostring(args[1])) == "on" then
  3395. bypassMODE = true
  3396. Notification("warning", "Bypass mode turned on, this changes functions of "..commandPrefix.."fly and other commands to bypass most anti-exploits.", 7)
  3397. elseif string.lower(tostring(args[1])) == "off" then
  3398. bypassMODE = false
  3399. Notification("warning", "Bypass mode has been turned off.", 7)
  3400. end
  3401. end
  3402. end
  3403.  
  3404. Commands.fixcam = function(args)
  3405. gsWorkspace.CurrentCamera:Destroy()
  3406. wait(0.1)
  3407. game:GetService("Workspace").CurrentCamera.CameraSubject = LP.Character.Humanoid
  3408. game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
  3409. LP.CameraMinZoomDistance = 0.5
  3410. LP.CameraMaxZoomDistance = 400
  3411. LP.CameraMode = "Classic"
  3412. LP.DevCameraOcclusionMode = CurrentNormal
  3413. end
  3414.  
  3415. Commands.gotoobj = function(args)
  3416. if args[1] then
  3417. for i,v in pairs(gsWorkspace:GetDescendants()) do
  3418. if string.lower(v.Name) == string.lower(tostring(args[1])) then
  3419. LP.Character.HumanoidRootPart.CFrame = v.CFrame + Vector3.new(0, 3, 0)
  3420. end
  3421. end
  3422. end
  3423. end
  3424.  
  3425. Commands.breakcam = function(args)
  3426. gsWorkspace.CurrentCamera.CameraSubject = LP.Character.Head
  3427. end
  3428.  
  3429. Commands.inviscam = function(args)
  3430. LP.DevCameraOcclusionMode = "Invisicam"
  3431. end
  3432.  
  3433. printobjKEY = ""
  3434. printobjCLICKING = false
  3435. printobjACTIVE = false
  3436.  
  3437. Commands.printobj = function(args)
  3438. if args[1] then
  3439. printobjKEY = string.sub(tostring(args[1]), 1, 1)
  3440. printobjACTIVE = true
  3441. printobjCLICKING = false
  3442. else
  3443. printobjKEY = ""
  3444. printobjACTIVE = true
  3445. printobjCLICKING = true
  3446. end
  3447. end
  3448.  
  3449. Mouse.KeyDown:Connect(function(key)
  3450. if key == printobjKEY and printobjACTIVE == true then
  3451. if Mouse.Target then
  3452. local path = Mouse.Target:GetFullName()
  3453. local getPath = "game:GetService(\"Workspace\")"
  3454. local getSpaces = ""
  3455. local separate = {}
  3456. local a = nil
  3457. for v in string.gmatch(string.sub(path, 10), "[^.]+") do
  3458. if string.match(v, " ") then
  3459. a = "["..v.."]"
  3460. table.insert(separate, a)
  3461. else
  3462. a = "."..v
  3463. table.insert(separate, a)
  3464. end
  3465. getSpaces = table.concat(separate, "")
  3466. end
  3467. local fullPath = getPath..getSpaces
  3468. print(fullPath)
  3469. end
  3470. end
  3471. end)
  3472. Mouse.Button1Down:Connect(function()
  3473. if printobjCLICKING == true and printobjACTIVE == true then
  3474. if Mouse.Target then
  3475. local path = Mouse.Target:GetFullName()
  3476. local getPath = "game:GetService(\"Workspace\")"
  3477. local getSpaces = ""
  3478. local separate = {}
  3479. local a = nil
  3480. for v in string.gmatch(string.sub(path, 10), "[^.]+") do
  3481. if string.match(v, " ") then
  3482. a = "["..v.."]"
  3483. table.insert(separate, a)
  3484. else
  3485. a = "."..v
  3486. table.insert(separate, a)
  3487. end
  3488. getSpaces = table.concat(separate, "")
  3489. end
  3490. local fullPath = getPath..getSpaces
  3491. print(fullPath)
  3492. end
  3493. end
  3494. end)
  3495.  
  3496. Commands.unprintobj = function(args)
  3497. printobjACTIVE = false
  3498. printobjCLICKING = false
  3499. end
  3500.  
  3501. Commands.hotkeyfc = function(args)
  3502. if args[1] then
  3503. if string.lower(tostring(args[1])) == "goto" then
  3504. fchotkeymode = "goto"
  3505. elseif string.lower(tostring(args[1])) == "unfc" then
  3506. fchotkeymode = "unfc"
  3507. end
  3508. fullUpdate()
  3509. end
  3510. end
  3511.  
  3512. Commands.carpet = function(args)
  3513. if args[1] then
  3514. for i,v in pairs(findSinglePlayer(args[1])) do
  3515. if v ~= nil then
  3516. annoying = true
  3517. annplr = v
  3518. local carpetAnimation = Instance.new("Animation")
  3519. carpetAnimation.AnimationId = "rbxassetid://282574440"
  3520. carpetTrack = LP.Character.Humanoid:LoadAnimation(carpetAnimation)
  3521. carpetTrack:Play(.1, 1, 1)
  3522. end
  3523. end
  3524. end
  3525. end
  3526.  
  3527. Commands.uncarpet = function(args)
  3528. annoying = false
  3529. carpetTrack:Stop()
  3530. end
  3531.  
  3532. Commands.brickcreate = function(args)
  3533. if args[1] then
  3534. local createPosition = LP.Character.HumanoidRootPart.CFrame
  3535. if args[2] and args[3] and args[4] then
  3536. createPosition = CFrame.new(Vector3.new(args[2], args[3], args[4]))
  3537. else
  3538. createPosition = LP.Character.HumanoidRootPart.CFrame
  3539. end
  3540. for i = 1, args[1] do
  3541. LP.Character.HumanoidRootPart.CFrame = createPosition
  3542. run(commandPrefix.."blockhats")
  3543. wait(0.2)
  3544. run(commandPrefix.."drophats")
  3545. wait(0.2)
  3546. run(commandPrefix.."reset")
  3547. wait(6)
  3548. end
  3549. end
  3550. end
  3551.  
  3552. Commands.forward = function(args)
  3553. if args[1] then
  3554. forwardSpeed = args[1]
  3555. else
  3556. forwardSpeed = 1
  3557. end
  3558. cmdForward = true
  3559. end
  3560.  
  3561. Commands.unforward = function(args)
  3562. cmdForward = false
  3563. end
  3564.  
  3565. Commands.id = function(args)
  3566. if args[1] then
  3567. for i,v in pairs(findPlayer(args[1])) do
  3568. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v.Name.." Account ID: "..v.UserId.."!", "All")
  3569. end
  3570. end
  3571. end
  3572.  
  3573. Commands.spinhats = function(args) -- Credit to xFunnieuss
  3574. for i,v in pairs(LP.Character:GetDescendants()) do
  3575. if v:IsA("Accessory") or v:IsA("Hat") then
  3576. local keep = Instance.new("BodyPosition") keep.Parent = v.Handle keep.Name = "no"
  3577. local spin = Instance.new("BodyAngularVelocity") spin.Parent = v.Handle spin.Name = "ha"
  3578. if v.Handle.AccessoryWeld then
  3579. v.Handle.AccessoryWeld:Destroy()
  3580. end
  3581. if args[1] then
  3582. spin.AngularVelocity = Vector3.new(0, args[1], 0)
  3583. spin.MaxTorque = Vector3.new(0, args[1] * 2, 0)
  3584. else
  3585. spin.AngularVelocity = Vector3.new(0, 100, 0)
  3586. spin.MaxTorque = Vector3.new(0, 200, 0)
  3587. end
  3588. keep.P = 30000
  3589. keep.D = 50
  3590. spinObj = keep
  3591. spinTOhead = true
  3592. end
  3593. end
  3594. end
  3595.  
  3596. Commands.unspinhats = function(args)
  3597. for i,v in pairs(LP.Character:GetDescendants()) do
  3598. if v:IsA("Accessory") or v:IsA("Hat") then
  3599. pcall(function()
  3600. run(commandPrefix.."drophats")
  3601. wait(2)
  3602. v.Handle.spin:Destroy()
  3603. v.Handle.keep:Destroy()
  3604. end)
  3605. end
  3606. end
  3607. end
  3608.  
  3609. savedmap = {}
  3610. Commands.savemap = function(args)
  3611. for i,v in pairs(gsWorkspace:GetChildren()) do
  3612. v.Archivable = true
  3613. if not v:IsA("Terrain") and not v:IsA("Camera") then
  3614. if not gsPlayers:FindFirstChild(v.Name) then
  3615. table.insert(savedmap, v:Clone())
  3616. end
  3617. end
  3618. end
  3619. clientSided()
  3620. end
  3621.  
  3622. Commands.loadmap = function(args)
  3623. for i,v in pairs(gsWorkspace:GetChildren()) do
  3624. if not v:IsA("Terrain") and not v:IsA("Camera") then
  3625. if not gsPlayers:FindFirstChild(v.Name) then
  3626. pcall(function()
  3627. v:Destroy()
  3628. end)
  3629. end
  3630. end
  3631. end
  3632. for i,a in ipairs(savedmap) do
  3633. a:Clone().Parent = gsWorkspace
  3634. end
  3635. clientSided()
  3636. end
  3637.  
  3638. Commands.creatorid = function(args)
  3639. LP.UserId = game.CreatorId
  3640. end
  3641.  
  3642. Commands.gameid = function(args)
  3643. Notification("info", "Current game's ID = "..game.GameId, 8)
  3644. end
  3645.  
  3646. Commands.delobj = function(args)
  3647. if args[1] then
  3648. for i,v in pairs(gsWorkspace:GetDescendants()) do
  3649. if string.lower(v.Name) == string.lower(tostring(args[1])) then
  3650. v:Destroy()
  3651. clientSided()
  3652. end
  3653. end
  3654. end
  3655. end
  3656.  
  3657. Commands.glide = function(args)
  3658. if args[1] then
  3659. for i,v in pairs(findSinglePlayer(args[1])) do
  3660. local goal = {}
  3661. goal.CFrame = v.Character.HumanoidRootPart.CFrame
  3662. local defaultSpeed = 3
  3663. if args[2] then
  3664. if tonumber(args[2]) < 10 then
  3665. defaultSpeed = tonumber(args[2])
  3666. else
  3667. defaultSpeed = 5
  3668. end
  3669. else
  3670. defaultSpeed = 3
  3671. end
  3672. local goalFunction = gsTween:Create(LP.Character.HumanoidRootPart, TweenInfo.new(defaultSpeed, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut), goal)
  3673. goalFunction:Play()
  3674. end
  3675. end
  3676. end
  3677.  
  3678. stutterON = false
  3679. Commands.stutter = function(args)
  3680. if args[1] then
  3681. if string.lower(tostring(args[1])) == "on" then
  3682. stutterON = true
  3683. elseif string.lower(tostring(args[1])) == "off" then
  3684. stutterON = false
  3685. wait(0.4)
  3686. LP.Character.HumanoidRootPart.Anchored = false
  3687. end
  3688. end
  3689. end
  3690.  
  3691. spawn(function()
  3692. while wait(0.1) do
  3693. if stutterON == true then
  3694. LP.Character.HumanoidRootPart.Anchored = false
  3695. wait(0.1)
  3696. LP.Character.HumanoidRootPart.Anchored = true
  3697. end
  3698. end
  3699. end)
  3700.  
  3701. Commands.platform = function(args)
  3702. local a = Instance.new("Part")
  3703. a.Parent = gsWorkspace
  3704. a.Size = Vector3.new(10, 1, 10)
  3705. a.Anchored = true
  3706. a.CFrame = LP.Character.HumanoidRootPart.CFrame + Vector3.new(0, 5, 0)
  3707. LP.Character.HumanoidRootPart.CFrame = a.CFrame + Vector3.new(0, 2, 0)
  3708. clientSided()
  3709. wait(20)
  3710. a:Destroy()
  3711. end
  3712.  
  3713. Commands.servertime = function(args)
  3714. Notification("info", "Server time is "..math.ceil(tonumber(gsWorkspace.DistributedGameTime)).." seconds.", 8)
  3715. end
  3716.  
  3717. Commands.ride = function(args)
  3718. if args[1] then
  3719. for i,v in pairs(findSinglePlayer(args[1])) do
  3720. local Anim = Instance.new("Animation")
  3721. Anim.AnimationId = "rbxassetid://179224234"
  3722. RIDEtrack = LP.Character.Humanoid:LoadAnimation(Anim)
  3723. rideACTIVE = true
  3724. ridePLAYER = v
  3725. RIDEtrack:Play()
  3726. end
  3727. end
  3728. end
  3729.  
  3730. Commands.unride = function(args)
  3731. RIDEtrack:Stop()
  3732. rideACTIVE = false
  3733. end
  3734.  
  3735. Commands.cmute = function(args)
  3736. if args[1] then
  3737. for i,v in pairs(findSinglePlayer(args[1])) do
  3738. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/mute "..v.Name, "All")
  3739. clientSided()
  3740. end
  3741. end
  3742. end
  3743.  
  3744. Commands.uncmute = function(args)
  3745. if args[1] then
  3746. for i,v in pairs(findSinglePlayer(args[1])) do
  3747. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/unmute "..v.Name, "All")
  3748. end
  3749. end
  3750. end
  3751.  
  3752. Commands.hat = function(args)
  3753. if args[1] then
  3754. for i,v in pairs(findSinglePlayer(args[1])) do
  3755. local Anim = Instance.new("Animation")
  3756. Anim.AnimationId = "rbxassetid://282574440"
  3757. HATtrack = LP.Character.Humanoid:LoadAnimation(Anim)
  3758. rideACTIVE = true
  3759. ridePLAYER = v
  3760. HATtrack:Play()
  3761. view(v)
  3762. end
  3763. end
  3764. end
  3765.  
  3766. Commands.unhat = function(args)
  3767. HATtrack:Stop()
  3768. rideACTIVE = false
  3769. view(LP)
  3770. end
  3771.  
  3772. --[[Commands.spawnreset = function(args)
  3773. if args[1] then
  3774. if string.lower(tostring(args[1])) == "on" then
  3775. spawningatreset = true
  3776. elseif string.lower(tostring(args[1])) == "off" then
  3777. spawningatreset = false
  3778. end
  3779. end
  3780. end]]
  3781.  
  3782. Commands.chat = function(args)
  3783. if args[1] then
  3784. local Chatmsg = table.concat(args, " ")
  3785. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(Chatmsg, "All")
  3786. end
  3787. end
  3788.  
  3789. -- findPlayer function (ALL, OTHERS, ME, NOOBS, VETERANS, OLDVETERANS, FRIENDS, NOFRIENDS, DEFAULT, RANDOM, SAMETEAM, NOTEAM, OTHERTEAM, TEAMname)
  3790. function findPlayer(plr)
  3791. local players = {}
  3792. local find = plr:lower()
  3793. local getAllNames = getmultipleplayers(find)
  3794. for i,mplr in pairs(getAllNames) do
  3795. if mplr == "all" then
  3796. for i,v in pairs(gsPlayers:GetPlayers()) do
  3797. table.insert(players,v)
  3798. end
  3799. elseif mplr == "others" then
  3800. for i,v in pairs(gsPlayers:GetPlayers()) do
  3801. if v.Name ~= LP.Name then
  3802. table.insert(players,v)
  3803. end
  3804. end
  3805. elseif mplr == "me" then
  3806. table.insert(players,LP)
  3807. elseif mplr == "noobs" then
  3808. for i,v in pairs(gsPlayers:GetPlayers()) do
  3809. if v.AccountAge <= 3 then
  3810. table.insert(players,v)
  3811. end
  3812. end
  3813. elseif mplr == "veterans" then
  3814. for i,v in pairs(gsPlayers:GetPlayers()) do
  3815. if v.AccountAge >= 365 then
  3816. table.insert(players,v)
  3817. end
  3818. end
  3819. elseif mplr == "oldveterans" then
  3820. for i,v in pairs(gsPlayers:GetPlayers()) do
  3821. if v.AccountAge >= 1500 then
  3822. table.insert(players,v)
  3823. end
  3824. end
  3825. elseif mplr == "friends" then
  3826. for i,v in pairs(gsPlayers:GetPlayers()) do
  3827. if v:IsFriendsWith(LP.UserId) and v.Name ~= LP.Name then
  3828. table.insert(players,v)
  3829. end
  3830. end
  3831. elseif mplr == "nofriends" then
  3832. for i,v in pairs(gsPlayers:GetPlayers()) do
  3833. if not v:IsFriendsWith(LP.UserId) and v.Name ~= LP.Name then
  3834. table.insert(players,v)
  3835. end
  3836. end
  3837. elseif mplr == "default" then
  3838. for i,v in pairs(gsPlayers:GetPlayers()) do
  3839. if v.Character:FindFirstChild("Pal Hair") or v.Character:FindFirstChild("Kate Hair") then
  3840. table.insert(players,v)
  3841. end
  3842. end
  3843. elseif mplr == "random" then
  3844. for i,v in pairs(gsPlayers:GetPlayers()) do
  3845. table.insert(players,v[math.random(1, #v)])
  3846. end
  3847. elseif mplr == "sameteam" then
  3848. for i,v in pairs(gsPlayers:GetPlayers()) do
  3849. if v.Team == LP.Team then
  3850. table.insert(players,v)
  3851. end
  3852. end
  3853. elseif mplr == "noteam" then
  3854. for i,v in pairs(gsPlayers:GetPlayers()) do
  3855. if v.Team == nil then
  3856. table.insert(players,v)
  3857. end
  3858. end
  3859. elseif mplr == "otherteam" then
  3860. for i,v in pairs(gsPlayers:GetPlayers()) do
  3861. if v.Team ~= LP.Team then
  3862. table.insert(players,v)
  3863. end
  3864. end
  3865. elseif string.sub(mplr, 1, 4) == "team" then
  3866. for i,v in pairs(gsPlayers:GetPlayers()) do
  3867. local spaceTEAM = {}
  3868. for teamValues in (string.gmatch(string.sub(mplr, 5), "[^_]+")) do
  3869. spaceTEAM[#spaceTEAM + 1] = teamValues
  3870. end
  3871. local gottrueteam = table.concat(spaceTEAM, " ")
  3872. if string.lower(tostring(v.Team)) == string.lower(gottrueteam) then
  3873. table.insert(players,v)
  3874. end
  3875. end
  3876. else
  3877. for i,v in pairs(gsPlayers:GetPlayers()) do
  3878. if string.lower(v.Name):sub(1, #mplr) == string.lower(mplr) then
  3879. table.insert(players,v)
  3880. end
  3881. end
  3882. end
  3883. end
  3884.  
  3885. return players
  3886. end
  3887. function getmultipleplayers(plr)
  3888. local plrsgotten = {}
  3889. for i in string.gmatch(plr,"[^,]+") do
  3890. table.insert(plrsgotten,i)
  3891. end
  3892. return plrsgotten
  3893. end
  3894. function findSinglePlayer(plr)
  3895. local players = {}
  3896. local find = plr:lower()
  3897. if find == "me" then
  3898. table.insert(players,LP)
  3899. else
  3900. for i,v in pairs(gsPlayers:GetPlayers()) do
  3901. if string.lower(v.Name):sub(1, #find) == string.lower(find) then
  3902. table.insert(players,v)
  3903. end
  3904. end
  3905. end
  3906. local oneplayer = {}
  3907. pcall(function()
  3908. table.insert(oneplayer, players[math.random(1, #players)])
  3909. end)
  3910. return oneplayer
  3911. end
  3912.  
  3913. -- Anti Kick
  3914.  
  3915. if getrawmetatable then
  3916. function formatargs(getArgs,v)
  3917. if #getArgs == 0 then
  3918. return ""
  3919. end
  3920.  
  3921. local collectArgs = {}
  3922. for k,v in next,getArgs do
  3923. local argument = ""
  3924. if type(v) == "string" then
  3925. argument = "\""..v.."\""
  3926. elseif type(v) == "table" then
  3927. argument = "{" .. formatargs(v,true) .. "}"
  3928. else
  3929. argument = tostring(v)
  3930. end
  3931. if v and type(k) ~= "number" then
  3932. table.insert(collectArgs,k.."="..argument)
  3933. else
  3934. table.insert(collectArgs,argument)
  3935. end
  3936. end
  3937. return table.concat(collectArgs, ", ")
  3938. end
  3939.  
  3940. kicknum = 0
  3941. local game_meta = getrawmetatable(game)
  3942. local game_namecall = game_meta.__namecall
  3943. local game_index = game_meta.__index
  3944. local w = (setreadonly or fullaccess or make_writeable)
  3945. pcall(w, game_meta, false)
  3946. game_meta.__namecall = function(out, ...)
  3947. local args = {...}
  3948. local Method = args[#args]
  3949. args[#args] = nil
  3950.  
  3951. if Method == "Kick" and out == LP then
  3952. kicknum = kicknum + 1
  3953. warn("Blocked client-kick attempt "..kicknum)
  3954. return
  3955. end
  3956.  
  3957. if antiremotes then
  3958. if Method == "FireServer" or Method == "InvokeServer" then
  3959. 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
  3960. warn("Blocked remote: "..out.Name.." // Method: "..Method)
  3961. return
  3962. end
  3963. end
  3964. else
  3965. if Method == "FireServer" or Method == "InvokeServer" then
  3966. for i,noremote in pairs(blockedremotes) do
  3967. if out.Name == noremote and out.Name ~= "SayMessageRequest" then
  3968. warn("Blocked remote: "..out.Name.." // Method: "..Method)
  3969. return
  3970. end
  3971. end
  3972. end
  3973. end
  3974.  
  3975. if spyingremotes then
  3976. if Method == "FireServer" or Method == "InvokeServer" then
  3977. if out.Name ~= "CharacterSoundEvent" and out.Name ~= "AddCharacterLoadedEvent" and out.Name ~= "RemoveCharacterEvent" and out.Name ~= "DefaultServerSoundEvent" and out.Name ~= "SayMessageRequest" then
  3978. local arguments = {}
  3979. for i = 1,#args do
  3980. arguments[i] = args[i]
  3981. end
  3982. local getScript = getfenv(2).script
  3983. if getScript == nil then
  3984. getScript = "??? (Not Found) ???"
  3985. end
  3986. warn("<> <> <> A "..out.ClassName.." has been fired! How to fire:\ngame."..out:GetFullName()..":"..Method.."("..formatargs(arguments)..")\n\nFired from script: ".. tostring(getScript:GetFullName()))
  3987. end
  3988. end
  3989. end
  3990.  
  3991. return game_namecall(out, ...)
  3992. end
  3993. end
  3994.  
  3995. -- FE Check
  3996. function FEcheckDefault()
  3997. if gsWorkspace.FilteringEnabled == true then
  3998. createIntro("warning", "FE is enabled! Press "..commandPrefix.." to bring Command Bar.", 7)
  3999. else
  4000. createIntro("warning", "FE is disabled. Consider using a different script.", 7)
  4001. end
  4002. end
  4003. FEcheckDefault()
  4004. end)
  4005.  
  4006. Arosia.Name = "Arosia"
  4007. Arosia.Parent = GUI
  4008. Arosia.BackgroundColor3 = Color3.new(0, 0, 1)
  4009. Arosia.Position = UDim2.new(0.383096665, 0, 0.173076928, 0)
  4010. Arosia.Size = UDim2.new(0, 137, 0, 50)
  4011. Arosia.Font = Enum.Font.SourceSans
  4012. Arosia.Text = "Arosia"
  4013. Arosia.TextColor3 = Color3.new(1, 1, 1)
  4014. Arosia.TextSize = 30
  4015. Arosia.MouseButton1Down:connect(function()
  4016. -- Thank you for using Arosia, enjoy!
  4017.  
  4018. -- Objects
  4019.  
  4020. local Arosia = Instance.new("ScreenGui")
  4021. local SideTabsBrick = Instance.new("Frame")
  4022. local icon = Instance.new("ImageLabel")
  4023. local MainFrame = Instance.new("Frame")
  4024. local TopRow = Instance.new("Frame")
  4025. local Title = Instance.new("TextLabel")
  4026. local CloseGUI = Instance.new("TextButton")
  4027. local FE_Check = Instance.new("TextLabel")
  4028. local SideTabs = Instance.new("Frame")
  4029. local TAB_LocalPlayer = Instance.new("TextButton")
  4030. local TAB_Others = Instance.new("TextButton")
  4031. local TAB_Scripts = Instance.new("TextButton")
  4032. local TAB_Credit = Instance.new("TextButton")
  4033. local TAB_Games = Instance.new("TextButton")
  4034. local Others = Instance.new("Frame")
  4035. local PlayerUserEnter = Instance.new("TextBox")
  4036. local Guidance = Instance.new("TextLabel")
  4037. local Annoy = Instance.new("TextButton")
  4038. local Teleport = Instance.new("TextButton")
  4039. local View = Instance.new("TextButton")
  4040. local Kill = Instance.new("TextButton")
  4041. local Attach = Instance.new("TextButton")
  4042. local Bring = Instance.new("TextButton")
  4043. local Guidance2 = Instance.new("TextLabel")
  4044. local NoneSelected = Instance.new("Frame")
  4045. local NoneSelectedText1 = Instance.new("TextLabel")
  4046. local NoneSelectedText2 = Instance.new("TextLabel")
  4047. local NoneSelectedText3 = Instance.new("TextLabel")
  4048. local LocalPlayer = Instance.new("Frame")
  4049. local GodMode = Instance.new("TextButton")
  4050. local Fly = Instance.new("TextButton")
  4051. local Speed = Instance.new("TextButton")
  4052. local Speed_TXTBOX = Instance.new("TextBox")
  4053. local JumpHeight = Instance.new("TextButton")
  4054. local JumpHeight_TXTBOX = Instance.new("TextBox")
  4055. local Chat = Instance.new("TextButton")
  4056. local Chat_TXTBOX = Instance.new("TextBox")
  4057. local Respawn = Instance.new("TextButton")
  4058. local HipHeight = Instance.new("TextButton")
  4059. local HipHeight_TXTBOX = Instance.new("TextBox")
  4060. local Noclip = Instance.new("TextButton")
  4061. local Sit = Instance.new("TextButton")
  4062. local Jump = Instance.new("TextButton")
  4063. local HideName = Instance.new("TextButton")
  4064. local Spam = Instance.new("TextButton")
  4065. local Freeze = Instance.new("TextButton")
  4066. local Btools = Instance.new("TextButton")
  4067. local Spin = Instance.new("TextButton")
  4068. local NoLimbs = Instance.new("TextButton")
  4069. local Seizure = Instance.new("TextButton")
  4070. local Games = Instance.new("Frame")
  4071. local Scripts = Instance.new("Frame")
  4072. local SideFrame = Instance.new("Frame")
  4073. local SIDE_Title = Instance.new("TextLabel")
  4074. local OpenGUI = Instance.new("TextButton")
  4075. local SIDE_FE_Check = Instance.new("TextLabel")
  4076. local getimage = game:GetService('ContentProvider')
  4077. local ResetDefault = Instance.new("TextButton")
  4078. local Push = Instance.new("TextButton")
  4079. local ClientFreeze = Instance.new("TextButton")
  4080. local Orbit = Instance.new("TextButton")
  4081. local BringAll = Instance.new("TextButton")
  4082. local AttachAll = Instance.new("TextButton")
  4083. local Flatten = Instance.new("TextButton")
  4084. local Guidance3 = Instance.new("TextLabel")
  4085. local KillAll = Instance.new("TextButton")
  4086. local Energize = Instance.new("TextButton")
  4087. local GlitchMax = Instance.new("TextButton")
  4088. local Energize_TXT = Instance.new("TextLabel")
  4089. local GlitchMax_TXT = Instance.new("TextLabel")
  4090. local Verspin = Instance.new("TextButton")
  4091. local Verspin_TXT = Instance.new("TextLabel")
  4092. local Temp = Instance.new("TextLabel")
  4093. local Experimental = Instance.new("TextButton")
  4094. local CHAOS = Instance.new("TextButton")
  4095.  
  4096. -- Properties
  4097.  
  4098. Arosia.Name = "Arosia"
  4099. Arosia.Parent = game.CoreGui
  4100.  
  4101. MainFrame.Name = "MainFrame"
  4102. MainFrame.Parent = Arosia
  4103. MainFrame.Active = true
  4104. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  4105. MainFrame.BackgroundTransparency = 1
  4106. MainFrame.Draggable = true
  4107. MainFrame.Position = UDim2.new(0.309, 0, -1, 0)
  4108. MainFrame.Size = UDim2.new(0, 448, 0, 334)
  4109.  
  4110. TopRow.Name = "TopRow"
  4111. TopRow.Parent = MainFrame
  4112. TopRow.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4113. TopRow.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4114. TopRow.BorderSizePixel = 2
  4115. TopRow.Size = UDim2.new(0, 448, 0, 24)
  4116. TopRow.ZIndex = 7
  4117.  
  4118. Title.Name = "Title"
  4119. Title.Parent = TopRow
  4120. Title.Active = true
  4121. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  4122. Title.BackgroundTransparency = 1
  4123. Title.Size = UDim2.new(0, 90, 0, 24)
  4124. Title.Font = Enum.Font.ArialBold
  4125. Title.FontSize = Enum.FontSize.Size24
  4126. Title.Text = "Arosia "
  4127. Title.TextColor3 = Color3.new(0.368627, 0.976471, 0.262745)
  4128. Title.TextScaled = true
  4129. Title.TextSize = 19
  4130. Title.TextWrapped = true
  4131. Title.ZIndex = 8
  4132.  
  4133. CloseGUI.Name = "CloseGUI"
  4134. CloseGUI.Parent = TopRow
  4135. CloseGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  4136. CloseGUI.BackgroundTransparency = 1
  4137. CloseGUI.Position = UDim2.new(0.560000002, 166, 0.100000001, 0)
  4138. CloseGUI.Size = UDim2.new(0, 38, 0, 24)
  4139. CloseGUI.Font = Enum.Font.ArialBold
  4140. CloseGUI.FontSize = Enum.FontSize.Size32
  4141. CloseGUI.Text = "X"
  4142. CloseGUI.TextColor3 = Color3.new(0.615686, 0, 0)
  4143. CloseGUI.TextSize = 30
  4144. CloseGUI.ZIndex = 8
  4145.  
  4146. FE_Check.Name = "FE_Check"
  4147. FE_Check.Parent = TopRow
  4148. FE_Check.BackgroundColor3 = Color3.new(1, 1, 1)
  4149. FE_Check.BackgroundTransparency = 1
  4150. FE_Check.Position = UDim2.new(0.291458786, 0, 0, 0)
  4151. FE_Check.Size = UDim2.new(0, 223, 0, 24)
  4152. FE_Check.Font = Enum.Font.Highway
  4153. FE_Check.FontSize = Enum.FontSize.Size14
  4154. FE_Check.Text = "Error loading FE Checker"
  4155. FE_Check.TextColor3 = Color3.new(1, 1, 1)
  4156. FE_Check.TextScaled = true
  4157. FE_Check.TextSize = 14
  4158. FE_Check.TextWrapped = true
  4159. FE_Check.ZIndex = 8
  4160.  
  4161. SideTabs.Name = "SideTabs"
  4162. SideTabs.Parent = MainFrame
  4163. SideTabs.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4164. SideTabs.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4165. SideTabs.BorderSizePixel = 2
  4166. SideTabs.Position = UDim2.new(0, 0, 0.0799999982, 0)
  4167. SideTabs.Size = UDim2.new(0, 120, 0, 307)
  4168. SideTabs.ZIndex = 5
  4169.  
  4170. TAB_LocalPlayer.Name = "TAB_LocalPlayer"
  4171. TAB_LocalPlayer.Parent = SideTabs
  4172. TAB_LocalPlayer.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  4173. TAB_LocalPlayer.BorderSizePixel = 0
  4174. TAB_LocalPlayer.Size = UDim2.new(0, 120, 0, 35)
  4175. TAB_LocalPlayer.Font = Enum.Font.SourceSansBold
  4176. TAB_LocalPlayer.FontSize = Enum.FontSize.Size24
  4177. TAB_LocalPlayer.Text = "Local Player"
  4178. TAB_LocalPlayer.TextColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  4179. TAB_LocalPlayer.TextSize = 23
  4180. TAB_LocalPlayer.TextWrapped = true
  4181. TAB_LocalPlayer.ZIndex = 6
  4182.  
  4183. TAB_Others.Name = "TAB_Others"
  4184. TAB_Others.Parent = SideTabs
  4185. TAB_Others.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  4186. TAB_Others.BorderSizePixel = 0
  4187. TAB_Others.Position = UDim2.new(0, 0, 0.130510315, 0)
  4188. TAB_Others.Size = UDim2.new(0, 120, 0, 35)
  4189. TAB_Others.Font = Enum.Font.SourceSansBold
  4190. TAB_Others.FontSize = Enum.FontSize.Size28
  4191. TAB_Others.Text = "Others"
  4192. TAB_Others.TextColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  4193. TAB_Others.TextSize = 27
  4194. TAB_Others.TextWrapped = true
  4195. TAB_Others.ZIndex = 6
  4196.  
  4197. TAB_Scripts.Name = "TAB_Scripts"
  4198. TAB_Scripts.Parent = SideTabs
  4199. TAB_Scripts.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  4200. TAB_Scripts.BorderSizePixel = 0
  4201. TAB_Scripts.Position = UDim2.new(0, 0, 0.261020631, 0)
  4202. TAB_Scripts.Size = UDim2.new(0, 120, 0, 35)
  4203. TAB_Scripts.Font = Enum.Font.SourceSansBold
  4204. TAB_Scripts.FontSize = Enum.FontSize.Size28
  4205. TAB_Scripts.Text = "Scripts"
  4206. TAB_Scripts.TextColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  4207. TAB_Scripts.TextSize = 27
  4208. TAB_Scripts.TextWrapped = true
  4209. TAB_Scripts.ZIndex = 6
  4210.  
  4211. TAB_Credit.Name = "TAB_Credit"
  4212. TAB_Credit.Parent = SideTabs
  4213. TAB_Credit.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4214. TAB_Credit.BorderSizePixel = 0
  4215. TAB_Credit.Position = UDim2.new(0, 0, 0.880944669, 0)
  4216. TAB_Credit.Size = UDim2.new(0, 120, 0, 37)
  4217. TAB_Credit.Font = Enum.Font.SourceSansBold
  4218. TAB_Credit.FontSize = Enum.FontSize.Size28
  4219. TAB_Credit.Text = "illremember"
  4220. TAB_Credit.TextColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  4221. TAB_Credit.TextSize = 25
  4222. TAB_Credit.TextStrokeColor3 = Color3.new(1, 0, 0)
  4223. TAB_Credit.TextStrokeTransparency = 0.80000001192093
  4224. TAB_Credit.TextWrapped = true
  4225. TAB_Credit.ZIndex = 6
  4226.  
  4227. TAB_Games.Name = "TAB_Games"
  4228. TAB_Games.Parent = SideTabs
  4229. TAB_Games.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  4230. TAB_Games.BorderSizePixel = 0
  4231. TAB_Games.Position = UDim2.new(0, 0, 0.391530931, 0)
  4232. TAB_Games.Size = UDim2.new(0, 120, 0, 35)
  4233. TAB_Games.Font = Enum.Font.SourceSansBold
  4234. TAB_Games.FontSize = Enum.FontSize.Size28
  4235. TAB_Games.Text = "Games"
  4236. TAB_Games.TextColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  4237. TAB_Games.TextSize = 27
  4238. TAB_Games.TextWrapped = true
  4239. TAB_Games.ZIndex = 6
  4240.  
  4241. Others.Name = "Others"
  4242. Others.Parent = MainFrame
  4243. Others.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8)
  4244. Others.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4245. Others.BorderSizePixel = 2
  4246. Others.Position = UDim2.new(0.31400001, -21, 0.180000007, -33)
  4247. Others.Size = UDim2.new(0, 328, 0, 307)
  4248. Others.Visible = false
  4249.  
  4250. PlayerUserEnter.Name = "PlayerUserEnter"
  4251. PlayerUserEnter.Parent = Others
  4252. PlayerUserEnter.BackgroundColor3 = Color3.new(0.65098, 0.65098, 0.65098)
  4253. PlayerUserEnter.BorderSizePixel = 0
  4254. PlayerUserEnter.Position = UDim2.new(0.0612446219, 0, 0.0978827327, 0)
  4255. PlayerUserEnter.Size = UDim2.new(0, 286, 0, 26)
  4256. PlayerUserEnter.Font = Enum.Font.SourceSans
  4257. PlayerUserEnter.FontSize = Enum.FontSize.Size14
  4258. PlayerUserEnter.Text = ""
  4259. PlayerUserEnter.TextScaled = true
  4260. PlayerUserEnter.TextSize = 14
  4261. PlayerUserEnter.TextWrapped = true
  4262.  
  4263. Guidance.Name = "Guidance"
  4264. Guidance.Parent = Others
  4265. Guidance.BackgroundColor3 = Color3.new(1, 1, 1)
  4266. Guidance.BackgroundTransparency = 1
  4267. Guidance.Position = UDim2.new(0.183733866, 0, 0, 0)
  4268. Guidance.Size = UDim2.new(0, 209, 0, 24)
  4269. Guidance.Font = Enum.Font.ArialBold
  4270. Guidance.FontSize = Enum.FontSize.Size14
  4271. Guidance.Text = "Enter Player Username"
  4272. Guidance.TextColor3 = Color3.new(0.258824, 0.690196, 0.211765)
  4273. Guidance.TextScaled = true
  4274. Guidance.TextSize = 14
  4275. Guidance.TextWrapped = true
  4276.  
  4277. Annoy.Name = "Annoy"
  4278. Annoy.Parent = Others
  4279. Annoy.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4280. Annoy.BorderSizePixel = 0
  4281. Annoy.Position = UDim2.new(0.0612553172, 0, 0.228393063, 0)
  4282. Annoy.Size = UDim2.new(0, 78, 0, 26)
  4283. Annoy.Font = Enum.Font.Arial
  4284. Annoy.FontSize = Enum.FontSize.Size18
  4285. Annoy.Text = "Annoy"
  4286. Annoy.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4287. Annoy.TextSize = 18
  4288. Annoy.TextWrapped = true
  4289.  
  4290. Teleport.Name = "Teleport"
  4291. Teleport.Parent = Others
  4292. Teleport.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4293. Teleport.BorderSizePixel = 0
  4294. Teleport.Position = UDim2.new(0.367531896, 0, 0.228393063, 0)
  4295. Teleport.Size = UDim2.new(0, 78, 0, 26)
  4296. Teleport.Font = Enum.Font.Arial
  4297. Teleport.FontSize = Enum.FontSize.Size18
  4298. Teleport.Text = "Teleport"
  4299. Teleport.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4300. Teleport.TextSize = 18
  4301. Teleport.TextWrapped = true
  4302.  
  4303. View.Name = "View"
  4304. View.Parent = Others
  4305. View.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4306. View.BorderSizePixel = 0
  4307. View.Position = UDim2.new(0.673808455, 0, 0.228393063, 0)
  4308. View.Size = UDim2.new(0, 78, 0, 26)
  4309. View.Font = Enum.Font.Arial
  4310. View.FontSize = Enum.FontSize.Size18
  4311. View.Text = "View"
  4312. View.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4313. View.TextSize = 18
  4314. View.TextWrapped = true
  4315.  
  4316. KillAll.Name = "KillAll"
  4317. KillAll.Parent = Others
  4318. KillAll.BackgroundColor3 = Color3.new(0.423529, 0.0862745, 0.0627451)
  4319. KillAll.BorderSizePixel = 0
  4320. KillAll.Position = UDim2.new(0.0612446219, 0, 0.880944669, 0)
  4321. KillAll.Size = UDim2.new(0, 78, 0, 26)
  4322. KillAll.Font = Enum.Font.Arial
  4323. KillAll.FontSize = Enum.FontSize.Size18
  4324. KillAll.Text = "Kill All"
  4325. KillAll.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4326. KillAll.TextSize = 18
  4327. KillAll.TextWrapped = true
  4328.  
  4329. Attach.Name = "Attach"
  4330. Attach.Parent = Others
  4331. Attach.BackgroundColor3 = Color3.new(0.415686, 0.423529, 0.0666667)
  4332. Attach.BorderSizePixel = 0
  4333. Attach.Position = UDim2.new(0.673808455, 0, 0.652551532, 0)
  4334. Attach.Size = UDim2.new(0, 78, 0, 26)
  4335. Attach.Font = Enum.Font.Arial
  4336. Attach.FontSize = Enum.FontSize.Size18
  4337. Attach.Text = "Attach"
  4338. Attach.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4339. Attach.TextSize = 18
  4340. Attach.TextWrapped = true
  4341.  
  4342. Bring.Name = "Bring"
  4343. Bring.Parent = Others
  4344. Bring.BackgroundColor3 = Color3.new(0.415686, 0.423529, 0.0666667)
  4345. Bring.BorderSizePixel = 0
  4346. Bring.Position = UDim2.new(0.367531896, 0, 0.652551532, 0)
  4347. Bring.Size = UDim2.new(0, 78, 0, 26)
  4348. Bring.Font = Enum.Font.Arial
  4349. Bring.FontSize = Enum.FontSize.Size18
  4350. Bring.Text = "Bring"
  4351. Bring.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4352. Bring.TextSize = 18
  4353. Bring.TextWrapped = true
  4354.  
  4355. Guidance2.Name = "Guidance2"
  4356. Guidance2.Parent = Others
  4357. Guidance2.BackgroundColor3 = Color3.new(1, 1, 1)
  4358. Guidance2.BackgroundTransparency = 1
  4359. Guidance2.Position = UDim2.new(0.153138295, 0, 0.522041261, 0)
  4360. Guidance2.Size = UDim2.new(0, 227, 0, 40)
  4361. Guidance2.Font = Enum.Font.ArialBold
  4362. Guidance2.FontSize = Enum.FontSize.Size14
  4363. Guidance2.Text = "Golden buttons require tools in your backpack before using"
  4364. Guidance2.TextColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  4365. Guidance2.TextScaled = true
  4366. Guidance2.TextSize = 14
  4367. Guidance2.TextStrokeColor3 = Color3.new(1, 0.870588, 0.223529)
  4368. Guidance2.TextStrokeTransparency = 0.80000001192093
  4369. Guidance2.TextWrapped = true
  4370.  
  4371. Kill.Name = "Kill"
  4372. Kill.Parent = Others
  4373. Kill.BackgroundColor3 = Color3.new(0.415686, 0.423529, 0.0666667)
  4374. Kill.BorderSizePixel = 0
  4375. Kill.Position = UDim2.new(0.0612553172, 0, 0.652551532, 0)
  4376. Kill.Size = UDim2.new(0, 78, 0, 26)
  4377. Kill.Font = Enum.Font.Arial
  4378. Kill.FontSize = Enum.FontSize.Size18
  4379. Kill.Text = "Kill"
  4380. Kill.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4381. Kill.TextSize = 18
  4382. Kill.TextWrapped = true
  4383.  
  4384. BringAll.Name = "Bring"
  4385. BringAll.Parent = Others
  4386. BringAll.BackgroundColor3 = Color3.new(0.423529, 0.0862745, 0.0627451)
  4387. BringAll.BorderSizePixel = 0
  4388. BringAll.Position = UDim2.new(0.367467731, 0, 0.880944669, 0)
  4389. BringAll.Size = UDim2.new(0, 78, 0, 26)
  4390. BringAll.Font = Enum.Font.Arial
  4391. BringAll.FontSize = Enum.FontSize.Size18
  4392. BringAll.Text = "Bring All"
  4393. BringAll.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4394. BringAll.TextSize = 18
  4395. BringAll.TextWrapped = true
  4396.  
  4397. AttachAll.Name = "Attach"
  4398. AttachAll.Parent = Others
  4399. AttachAll.BackgroundColor3 = Color3.new(0.423529, 0.0862745, 0.0627451)
  4400. AttachAll.BorderSizePixel = 0
  4401. AttachAll.Position = UDim2.new(0.673690796, 0, 0.880944669, 0)
  4402. AttachAll.Size = UDim2.new(0, 78, 0, 26)
  4403. AttachAll.Font = Enum.Font.Arial
  4404. AttachAll.FontSize = Enum.FontSize.Size18
  4405. AttachAll.Text = "Attach All"
  4406. AttachAll.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4407. AttachAll.TextSize = 18
  4408. AttachAll.TextWrapped = true
  4409.  
  4410. Flatten.Name = "Flatten"
  4411. Flatten.Parent = Others
  4412. Flatten.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4413. Flatten.BorderSizePixel = 0
  4414. Flatten.Position = UDim2.new(0.367531896, 0, 0.424158514, 0)
  4415. Flatten.Size = UDim2.new(0, 78, 0, 26)
  4416. Flatten.Font = Enum.Font.Arial
  4417. Flatten.FontSize = Enum.FontSize.Size18
  4418. Flatten.Text = "Flatten"
  4419. Flatten.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4420. Flatten.TextSize = 18
  4421. Flatten.TextWrapped = true
  4422.  
  4423. Guidance3.Name = "Guidance3"
  4424. Guidance3.Parent = Others
  4425. Guidance3.BackgroundColor3 = Color3.new(1, 1, 1)
  4426. Guidance3.BackgroundTransparency = 1
  4427. Guidance3.Position = UDim2.new(0.153138295, 0, 0.750434279, 0)
  4428. Guidance3.Size = UDim2.new(0, 227, 0, 40)
  4429. Guidance3.Font = Enum.Font.ArialBold
  4430. Guidance3.FontSize = Enum.FontSize.Size14
  4431. Guidance3.Text = "Red buttons require many tools in your backpack before using"
  4432. Guidance3.TextColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  4433. Guidance3.TextScaled = true
  4434. Guidance3.TextSize = 14
  4435. Guidance3.TextStrokeColor3 = Color3.new(1, 0.266667, 0.137255)
  4436. Guidance3.TextStrokeTransparency = 0.80000001192093
  4437. Guidance3.TextWrapped = true
  4438.  
  4439. NoneSelected.Name = "NoneSelected"
  4440. NoneSelected.Parent = MainFrame
  4441. NoneSelected.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8)
  4442. NoneSelected.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4443. NoneSelected.BorderSizePixel = 2
  4444. NoneSelected.Position = UDim2.new(0.31400001, -21, 0.180000007, -33)
  4445. NoneSelected.Size = UDim2.new(0, 328, 0, 307)
  4446.  
  4447. NoneSelectedText1.Name = "NoneSelectedText1"
  4448. NoneSelectedText1.Parent = NoneSelected
  4449. NoneSelectedText1.BackgroundColor3 = Color3.new(1, 1, 1)
  4450. NoneSelectedText1.BackgroundTransparency = 1
  4451. NoneSelectedText1.Position = UDim2.new(0.184861064, 0, 0.0326275788, 0)
  4452. NoneSelectedText1.Size = UDim2.new(0, 200, 0, 50)
  4453. NoneSelectedText1.Font = Enum.Font.ArialBold
  4454. NoneSelectedText1.FontSize = Enum.FontSize.Size14
  4455. NoneSelectedText1.Text = "Arosia"
  4456. NoneSelectedText1.TextColor3 = Color3.new(0.337255, 0.85098, 0.258824)
  4457. NoneSelectedText1.TextScaled = true
  4458. NoneSelectedText1.TextSize = 14
  4459. NoneSelectedText1.TextWrapped = true
  4460.  
  4461. NoneSelectedText2.Name = "NoneSelectedText2"
  4462. NoneSelectedText2.Parent = NoneSelected
  4463. NoneSelectedText2.BackgroundColor3 = Color3.new(1, 1, 1)
  4464. NoneSelectedText2.BackgroundTransparency = 1
  4465. NoneSelectedText2.Position = UDim2.new(0.184861064, -31, 0.195765465, 0)
  4466. NoneSelectedText2.Size = UDim2.new(0, 272, 0, 72)
  4467. NoneSelectedText2.Font = Enum.Font.ArialBold
  4468. NoneSelectedText2.FontSize = Enum.FontSize.Size14
  4469. NoneSelectedText2.Text = "Dedicated to bringing power into FE games"
  4470. NoneSelectedText2.TextColor3 = Color3.new(0.458824, 0.458824, 0.458824)
  4471. NoneSelectedText2.TextScaled = true
  4472. NoneSelectedText2.TextSize = 14
  4473. NoneSelectedText2.TextWrapped = true
  4474.  
  4475. NoneSelectedText3.Name = "NoneSelectedText3"
  4476. NoneSelectedText3.Parent = NoneSelected
  4477. NoneSelectedText3.BackgroundColor3 = Color3.new(1, 1, 1)
  4478. NoneSelectedText3.BackgroundTransparency = 1
  4479. NoneSelectedText3.Position = UDim2.new(0.0918669328, 0, 0.652551532, 0)
  4480. NoneSelectedText3.Size = UDim2.new(0, 272, 0, 72)
  4481. NoneSelectedText3.Font = Enum.Font.ArialBold
  4482. NoneSelectedText3.FontSize = Enum.FontSize.Size14
  4483. NoneSelectedText3.Text = "By illremember"
  4484. NoneSelectedText3.TextColor3 = Color3.new(0.458824, 0.458824, 0.458824)
  4485. NoneSelectedText3.TextScaled = true
  4486. NoneSelectedText3.TextSize = 14
  4487. NoneSelectedText3.TextStrokeColor3 = Color3.new(1, 0.027451, 0.027451)
  4488. NoneSelectedText3.TextStrokeTransparency = 0.89999997615814
  4489. NoneSelectedText3.TextWrapped = true
  4490.  
  4491. LocalPlayer.Name = "LocalPlayer"
  4492. LocalPlayer.Parent = MainFrame
  4493. LocalPlayer.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8)
  4494. LocalPlayer.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4495. LocalPlayer.BorderSizePixel = 2
  4496. LocalPlayer.Position = UDim2.new(0.31400001, -21, 0.180000007, -33)
  4497. LocalPlayer.Size = UDim2.new(0, 328, 0, 307)
  4498. LocalPlayer.Visible = false
  4499.  
  4500. GodMode.Name = "GodMode"
  4501. GodMode.Parent = LocalPlayer
  4502. GodMode.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4503. GodMode.BorderSizePixel = 0
  4504. GodMode.Position = UDim2.new(0.0306223109, 0, 0.0326275788, 0)
  4505. GodMode.Size = UDim2.new(0, 80, 0, 26)
  4506. GodMode.Font = Enum.Font.Arial
  4507. GodMode.FontSize = Enum.FontSize.Size18
  4508. GodMode.Text = "GodMode"
  4509. GodMode.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4510. GodMode.TextSize = 18
  4511. GodMode.TextWrapped = true
  4512.  
  4513. Fly.Name = "Fly"
  4514. Fly.Parent = LocalPlayer
  4515. Fly.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4516. Fly.BorderSizePixel = 0
  4517. Fly.Position = UDim2.new(0.398090035, 0, 0.0326275788, 0)
  4518. Fly.Size = UDim2.new(0, 80, 0, 26)
  4519. Fly.Font = Enum.Font.Arial
  4520. Fly.FontSize = Enum.FontSize.Size18
  4521. Fly.Text = "Fly"
  4522. Fly.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4523. Fly.TextSize = 18
  4524. Fly.TextWrapped = true
  4525.  
  4526. Speed.Name = "Speed"
  4527. Speed.Parent = LocalPlayer
  4528. Speed.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4529. Speed.BorderSizePixel = 0
  4530. Speed.Position = UDim2.new(0.0306223109, 0, 0.261020631, 0)
  4531. Speed.Size = UDim2.new(0, 80, 0, 26)
  4532. Speed.Font = Enum.Font.Arial
  4533. Speed.FontSize = Enum.FontSize.Size18
  4534. Speed.Text = "Speed"
  4535. Speed.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4536. Speed.TextSize = 18
  4537. Speed.TextWrapped = true
  4538.  
  4539. Speed_TXTBOX.Name = "Speed_TXTBOX"
  4540. Speed_TXTBOX.Parent = LocalPlayer
  4541. Speed_TXTBOX.BackgroundColor3 = Color3.new(0.65098, 0.65098, 0.65098)
  4542. Speed_TXTBOX.BorderSizePixel = 0
  4543. Speed_TXTBOX.Position = UDim2.new(0.275600791, 0, 0.261020631, 0)
  4544. Speed_TXTBOX.Size = UDim2.new(0, 40, 0, 26)
  4545. Speed_TXTBOX.Font = Enum.Font.SourceSans
  4546. Speed_TXTBOX.FontSize = Enum.FontSize.Size14
  4547. Speed_TXTBOX.Text = ""
  4548. Speed_TXTBOX.TextScaled = true
  4549. Speed_TXTBOX.TextSize = 14
  4550. Speed_TXTBOX.TextWrapped = true
  4551.  
  4552. JumpHeight.Name = "JumpHeight"
  4553. JumpHeight.Parent = LocalPlayer
  4554. JumpHeight.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4555. JumpHeight.BorderSizePixel = 0
  4556. JumpHeight.Position = UDim2.new(0.459334642, 0, 0.261020631, 0)
  4557. JumpHeight.Size = UDim2.new(0, 80, 0, 26)
  4558. JumpHeight.Font = Enum.Font.Arial
  4559. JumpHeight.FontSize = Enum.FontSize.Size18
  4560. JumpHeight.Text = "JumpHeight"
  4561. JumpHeight.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4562. JumpHeight.TextSize = 15
  4563. JumpHeight.TextWrapped = true
  4564.  
  4565. JumpHeight_TXTBOX.Name = "JumpHeight_TXTBOX"
  4566. JumpHeight_TXTBOX.Parent = LocalPlayer
  4567. JumpHeight_TXTBOX.BackgroundColor3 = Color3.new(0.65098, 0.65098, 0.65098)
  4568. JumpHeight_TXTBOX.BorderSizePixel = 0
  4569. JumpHeight_TXTBOX.Position = UDim2.new(0.704313159, 0, 0.261020631, 0)
  4570. JumpHeight_TXTBOX.Size = UDim2.new(0, 40, 0, 26)
  4571. JumpHeight_TXTBOX.Font = Enum.Font.SourceSans
  4572. JumpHeight_TXTBOX.FontSize = Enum.FontSize.Size14
  4573. JumpHeight_TXTBOX.Text = ""
  4574. JumpHeight_TXTBOX.TextScaled = true
  4575. JumpHeight_TXTBOX.TextSize = 14
  4576. JumpHeight_TXTBOX.TextWrapped = true
  4577.  
  4578. Chat.Name = "Chat"
  4579. Chat.Parent = LocalPlayer
  4580. Chat.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4581. Chat.BorderSizePixel = 0
  4582. Chat.Position = UDim2.new(0.0306223109, 0, 0.456786126, 0)
  4583. Chat.Size = UDim2.new(0, 80, 0, 26)
  4584. Chat.Font = Enum.Font.Arial
  4585. Chat.FontSize = Enum.FontSize.Size18
  4586. Chat.Text = "Chat"
  4587. Chat.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4588. Chat.TextSize = 18
  4589. Chat.TextWrapped = true
  4590.  
  4591. Chat_TXTBOX.Name = "Chat_TXTBOX"
  4592. Chat_TXTBOX.Parent = LocalPlayer
  4593. Chat_TXTBOX.BackgroundColor3 = Color3.new(0.65098, 0.65098, 0.65098)
  4594. Chat_TXTBOX.BorderSizePixel = 0
  4595. Chat_TXTBOX.Position = UDim2.new(0.275600791, 0, 0.456786126, 0)
  4596. Chat_TXTBOX.Size = UDim2.new(0, 222, 0, 26)
  4597. Chat_TXTBOX.Font = Enum.Font.SourceSans
  4598. Chat_TXTBOX.FontSize = Enum.FontSize.Size14
  4599. Chat_TXTBOX.Text = ""
  4600. Chat_TXTBOX.TextScaled = true
  4601. Chat_TXTBOX.TextSize = 14
  4602. Chat_TXTBOX.TextWrapped = true
  4603.  
  4604. Respawn.Name = "Respawn"
  4605. Respawn.Parent = LocalPlayer
  4606. Respawn.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4607. Respawn.BorderSizePixel = 0
  4608. Respawn.Position = UDim2.new(0.734935462, 0, 0.0326275788, 0)
  4609. Respawn.Size = UDim2.new(0, 80, 0, 26)
  4610. Respawn.Font = Enum.Font.Arial
  4611. Respawn.FontSize = Enum.FontSize.Size18
  4612. Respawn.Text = "Respawn"
  4613. Respawn.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4614. Respawn.TextSize = 18
  4615. Respawn.TextWrapped = true
  4616.  
  4617. HipHeight.Name = "HipHeight"
  4618. HipHeight.Parent = LocalPlayer
  4619. HipHeight.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4620. HipHeight.BorderSizePixel = 0
  4621. HipHeight.Position = UDim2.new(0.0306223109, 0, 0.358903378, 0)
  4622. HipHeight.Size = UDim2.new(0, 80, 0, 26)
  4623. HipHeight.Font = Enum.Font.Arial
  4624. HipHeight.FontSize = Enum.FontSize.Size18
  4625. HipHeight.Text = "HipHeight"
  4626. HipHeight.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4627. HipHeight.TextSize = 18
  4628. HipHeight.TextWrapped = true
  4629.  
  4630. HipHeight_TXTBOX.Name = "HipHeight_TXTBOX"
  4631. HipHeight_TXTBOX.Parent = LocalPlayer
  4632. HipHeight_TXTBOX.BackgroundColor3 = Color3.new(0.65098, 0.65098, 0.65098)
  4633. HipHeight_TXTBOX.BorderSizePixel = 0
  4634. HipHeight_TXTBOX.Position = UDim2.new(0.275600791, 0, 0.358903378, 0)
  4635. HipHeight_TXTBOX.Size = UDim2.new(0, 40, 0, 26)
  4636. HipHeight_TXTBOX.Font = Enum.Font.SourceSans
  4637. HipHeight_TXTBOX.FontSize = Enum.FontSize.Size14
  4638. HipHeight_TXTBOX.Text = ""
  4639. HipHeight_TXTBOX.TextScaled = true
  4640. HipHeight_TXTBOX.TextSize = 14
  4641. HipHeight_TXTBOX.TextWrapped = true
  4642.  
  4643. Noclip.Name = "Noclip"
  4644. Noclip.Parent = LocalPlayer
  4645. Noclip.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4646. Noclip.BorderSizePixel = 0
  4647. Noclip.Position = UDim2.new(0.0306223109, 0, 0.130510315, 0)
  4648. Noclip.Size = UDim2.new(0, 80, 0, 26)
  4649. Noclip.Font = Enum.Font.Arial
  4650. Noclip.FontSize = Enum.FontSize.Size18
  4651. Noclip.Text = "Noclip"
  4652. Noclip.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4653. Noclip.TextSize = 18
  4654. Noclip.TextWrapped = true
  4655.  
  4656. Sit.Name = "Sit"
  4657. Sit.Parent = LocalPlayer
  4658. Sit.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4659. Sit.BorderSizePixel = 0
  4660. Sit.Position = UDim2.new(0.398090035, 0, 0.130510315, 0)
  4661. Sit.Size = UDim2.new(0, 80, 0, 26)
  4662. Sit.Font = Enum.Font.Arial
  4663. Sit.FontSize = Enum.FontSize.Size18
  4664. Sit.Text = "Sit"
  4665. Sit.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4666. Sit.TextSize = 18
  4667. Sit.TextWrapped = true
  4668.  
  4669. Jump.Name = "Jump"
  4670. Jump.Parent = LocalPlayer
  4671. Jump.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4672. Jump.BorderSizePixel = 0
  4673. Jump.Position = UDim2.new(0.734935462, 0, 0.130510315, 0)
  4674. Jump.Size = UDim2.new(0, 80, 0, 26)
  4675. Jump.Font = Enum.Font.Arial
  4676. Jump.FontSize = Enum.FontSize.Size18
  4677. Jump.Text = "Jump"
  4678. Jump.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4679. Jump.TextSize = 18
  4680. Jump.TextWrapped = true
  4681.  
  4682. HideName.Name = "HideName"
  4683. HideName.Parent = LocalPlayer
  4684. HideName.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4685. HideName.BorderSizePixel = 0
  4686. HideName.Position = UDim2.new(0.0306223109, 0, 0.880944669, 0)
  4687. HideName.Size = UDim2.new(0, 80, 0, 26)
  4688. HideName.Font = Enum.Font.Arial
  4689. HideName.FontSize = Enum.FontSize.Size18
  4690. HideName.Text = "HideName"
  4691. HideName.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4692. HideName.TextSize = 18
  4693. HideName.TextWrapped = true
  4694.  
  4695. Spam.Name = "Spam"
  4696. Spam.Parent = LocalPlayer
  4697. Spam.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4698. Spam.BorderSizePixel = 0
  4699. Spam.Position = UDim2.new(0.0306223109, 0, 0.554668844, 0)
  4700. Spam.Size = UDim2.new(0, 80, 0, 26)
  4701. Spam.Font = Enum.Font.Arial
  4702. Spam.FontSize = Enum.FontSize.Size18
  4703. Spam.Text = "Spam"
  4704. Spam.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4705. Spam.TextSize = 18
  4706. Spam.TextWrapped = true
  4707.  
  4708. Freeze.Name = "Freeze"
  4709. Freeze.Parent = LocalPlayer
  4710. Freeze.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4711. Freeze.BorderSizePixel = 0
  4712. Freeze.Position = UDim2.new(0.398090035, 0, 0.880944669, 0)
  4713. Freeze.Size = UDim2.new(0, 80, 0, 26)
  4714. Freeze.Font = Enum.Font.Arial
  4715. Freeze.FontSize = Enum.FontSize.Size18
  4716. Freeze.Text = "Freeze"
  4717. Freeze.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4718. Freeze.TextSize = 18
  4719. Freeze.TextWrapped = true
  4720.  
  4721. Btools.Name = "Btools"
  4722. Btools.Parent = LocalPlayer
  4723. Btools.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4724. Btools.BorderSizePixel = 0
  4725. Btools.Position = UDim2.new(0.0306223109, 0, 0.783061862, 0)
  4726. Btools.Size = UDim2.new(0, 80, 0, 26)
  4727. Btools.Font = Enum.Font.Arial
  4728. Btools.FontSize = Enum.FontSize.Size18
  4729. Btools.Text = "Btools"
  4730. Btools.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4731. Btools.TextSize = 18
  4732. Btools.TextWrapped = true
  4733.  
  4734. Spin.Name = "Spin"
  4735. Spin.Parent = LocalPlayer
  4736. Spin.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4737. Spin.BorderSizePixel = 0
  4738. Spin.Position = UDim2.new(0.398090035, 0, 0.783061862, 0)
  4739. Spin.Size = UDim2.new(0, 80, 0, 26)
  4740. Spin.Font = Enum.Font.Arial
  4741. Spin.FontSize = Enum.FontSize.Size18
  4742. Spin.Text = "Spin"
  4743. Spin.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4744. Spin.TextSize = 18
  4745. Spin.TextWrapped = true
  4746.  
  4747. NoLimbs.Name = "NoLimbs"
  4748. NoLimbs.Parent = LocalPlayer
  4749. NoLimbs.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4750. NoLimbs.BorderSizePixel = 0
  4751. NoLimbs.Position = UDim2.new(0.734935462, 0, 0.880944669, 0)
  4752. NoLimbs.Size = UDim2.new(0, 80, 0, 26)
  4753. NoLimbs.Font = Enum.Font.Arial
  4754. NoLimbs.FontSize = Enum.FontSize.Size18
  4755. NoLimbs.Text = "NoLimbs"
  4756. NoLimbs.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4757. NoLimbs.TextSize = 18
  4758. NoLimbs.TextWrapped = true
  4759.  
  4760. Seizure.Name = "Seizure"
  4761. Seizure.Parent = LocalPlayer
  4762. Seizure.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4763. Seizure.BorderSizePixel = 0
  4764. Seizure.Position = UDim2.new(0.734935462, 0, 0.783061862, 0)
  4765. Seizure.Size = UDim2.new(0, 80, 0, 26)
  4766. Seizure.Font = Enum.Font.Arial
  4767. Seizure.FontSize = Enum.FontSize.Size18
  4768. Seizure.Text = "Seizure"
  4769. Seizure.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4770. Seizure.TextSize = 18
  4771. Seizure.TextWrapped = true
  4772.  
  4773. Games.Name = "Games"
  4774. Games.Parent = MainFrame
  4775. Games.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8)
  4776. Games.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4777. Games.BorderSizePixel = 2
  4778. Games.Position = UDim2.new(0.31400001, -21, 0.180000007, -33)
  4779. Games.Size = UDim2.new(0, 328, 0, 307)
  4780. Games.Visible = false
  4781.  
  4782. Scripts.Name = "Scripts"
  4783. Scripts.Parent = MainFrame
  4784. Scripts.BackgroundColor3 = Color3.new(0.8, 0.8, 0.8)
  4785. Scripts.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4786. Scripts.BorderSizePixel = 2
  4787. Scripts.Position = UDim2.new(0.31400001, -21, 0.180000007, -33)
  4788. Scripts.Size = UDim2.new(0, 328, 0, 307)
  4789. Scripts.Visible = false
  4790.  
  4791. Energize.Name = "Energize"
  4792. Energize.Parent = Scripts
  4793. Energize.BackgroundColor3 = Color3.new(0.960784, 0.419608, 0.145098)
  4794. Energize.BorderColor3 = Color3.new(0.960784, 0.419608, 0.145098)
  4795. Energize.BorderSizePixel = 3
  4796. Energize.Position = UDim2.new(0.183430299, 0, 0.0326275788, 0)
  4797. Energize.Size = UDim2.new(0, 200, 0, 30)
  4798. Energize.Font = Enum.Font.ArialBold
  4799. Energize.FontSize = Enum.FontSize.Size18
  4800. Energize.Text = "Animation GUI for R6/R15"
  4801. Energize.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4802. Energize.TextScaled = true
  4803. Energize.TextSize = 18
  4804. Energize.TextWrapped = true
  4805.  
  4806. GlitchMax.Name = "GlitchMax"
  4807. GlitchMax.Parent = Scripts
  4808. GlitchMax.BackgroundColor3 = Color3.new(0.298039, 0.509804, 0.901961)
  4809. GlitchMax.BorderColor3 = Color3.new(0.298039, 0.509804, 0.901961)
  4810. GlitchMax.BorderSizePixel = 3
  4811. GlitchMax.Position = UDim2.new(0.183430299, 0, 0.358903378, 0)
  4812. GlitchMax.Size = UDim2.new(0, 200, 0, 30)
  4813. GlitchMax.Font = Enum.Font.ArialBold
  4814. GlitchMax.FontSize = Enum.FontSize.Size28
  4815. GlitchMax.Text = "GlitchMax GUI"
  4816. GlitchMax.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4817. GlitchMax.TextSize = 25
  4818. GlitchMax.TextWrapped = true
  4819.  
  4820. Energize_TXT.Name = "Energize_TXT"
  4821. Energize_TXT.Parent = Scripts
  4822. Energize_TXT.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  4823. Energize_TXT.BorderColor3 = Color3.new(0.960784, 0.419608, 0.145098)
  4824. Energize_TXT.BorderSizePixel = 3
  4825. Energize_TXT.Position = UDim2.new(0.183430299, 0, 0.130510315, 0)
  4826. Energize_TXT.Size = UDim2.new(0, 200, 0, 50)
  4827. Energize_TXT.Font = Enum.Font.SourceSansSemibold
  4828. Energize_TXT.FontSize = Enum.FontSize.Size14
  4829. Energize_TXT.Text = "Use cool animations on yourself!"
  4830. Energize_TXT.TextScaled = true
  4831. Energize_TXT.TextSize = 14
  4832. Energize_TXT.TextStrokeColor3 = Color3.new(1, 0.533333, 0.152941)
  4833. Energize_TXT.TextStrokeTransparency = 0.89999997615814
  4834. Energize_TXT.TextWrapped = true
  4835.  
  4836. GlitchMax_TXT.Name = "GlitchMax_TXT"
  4837. GlitchMax_TXT.Parent = Scripts
  4838. GlitchMax_TXT.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  4839. GlitchMax_TXT.BorderColor3 = Color3.new(0.298039, 0.509804, 0.901961)
  4840. GlitchMax_TXT.BorderSizePixel = 3
  4841. GlitchMax_TXT.Position = UDim2.new(0.183430299, 0, 0.456786126, 0)
  4842. GlitchMax_TXT.Size = UDim2.new(0, 200, 0, 50)
  4843. GlitchMax_TXT.Font = Enum.Font.SourceSansSemibold
  4844. GlitchMax_TXT.FontSize = Enum.FontSize.Size14
  4845. GlitchMax_TXT.Text = "Annoy/glitch people in the server!"
  4846. GlitchMax_TXT.TextScaled = true
  4847. GlitchMax_TXT.TextSize = 14
  4848. GlitchMax_TXT.TextStrokeColor3 = Color3.new(0, 0.819608, 1)
  4849. GlitchMax_TXT.TextStrokeTransparency = 0.89999997615814
  4850. GlitchMax_TXT.TextWrapped = true
  4851.  
  4852. Verspin.Name = "Verspin"
  4853. Verspin.Parent = Scripts
  4854. Verspin.BackgroundColor3 = Color3.new(0.278431, 0.827451, 0.109804)
  4855. Verspin.BorderColor3 = Color3.new(0.278431, 0.827451, 0.109804)
  4856. Verspin.BorderSizePixel = 3
  4857. Verspin.Position = UDim2.new(0.183430299, 0, 0.685179174, 0)
  4858. Verspin.Size = UDim2.new(0, 200, 0, 30)
  4859. Verspin.Font = Enum.Font.ArialBold
  4860. Verspin.FontSize = Enum.FontSize.Size28
  4861. Verspin.Text = "Verspin GUI"
  4862. Verspin.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4863. Verspin.TextSize = 25
  4864. Verspin.TextWrapped = true
  4865.  
  4866. Verspin_TXT.Name = "Verspin_TXT"
  4867. Verspin_TXT.Parent = Scripts
  4868. Verspin_TXT.BackgroundColor3 = Color3.new(0.639216, 0.639216, 0.639216)
  4869. Verspin_TXT.BorderColor3 = Color3.new(0.278431, 0.827451, 0.109804)
  4870. Verspin_TXT.BorderSizePixel = 3
  4871. Verspin_TXT.Position = UDim2.new(0.183430299, 0, 0.783061862, 0)
  4872. Verspin_TXT.Size = UDim2.new(0, 200, 0, 50)
  4873. Verspin_TXT.Font = Enum.Font.SourceSansSemibold
  4874. Verspin_TXT.FontSize = Enum.FontSize.Size14
  4875. Verspin_TXT.Text = "Kill/Bring/Attach players with tools!"
  4876. Verspin_TXT.TextScaled = true
  4877. Verspin_TXT.TextSize = 14
  4878. Verspin_TXT.TextStrokeColor3 = Color3.new(1, 0.533333, 0.152941)
  4879. Verspin_TXT.TextStrokeTransparency = 0.89999997615814
  4880. Verspin_TXT.TextWrapped = true
  4881.  
  4882. SideFrame.Name = "SideFrame"
  4883. SideFrame.Parent = Arosia
  4884. SideFrame.Active = true
  4885. SideFrame.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4886. SideFrame.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4887. SideFrame.BorderSizePixel = 2
  4888. SideFrame.Draggable = true
  4889. SideFrame.Position = UDim2.new(0.308999985, 0, 0.182999998, 0)
  4890. SideFrame.Size = UDim2.new(0, 448, 0, 334)
  4891. SideFrame.Visible = false
  4892. SideFrame.ZIndex = 9
  4893.  
  4894. SIDE_Title.Name = "SIDE_Title"
  4895. SIDE_Title.Parent = SideFrame
  4896. SIDE_Title.Active = true
  4897. SIDE_Title.BackgroundColor3 = Color3.new(1, 1, 1)
  4898. SIDE_Title.BackgroundTransparency = 1
  4899. SIDE_Title.Size = UDim2.new(0, 90, 0, 24)
  4900. SIDE_Title.Font = Enum.Font.ArialBold
  4901. SIDE_Title.FontSize = Enum.FontSize.Size24
  4902. SIDE_Title.Text = "Arosia "
  4903. SIDE_Title.TextColor3 = Color3.new(0.368627, 0.976471, 0.262745)
  4904. SIDE_Title.TextScaled = true
  4905. SIDE_Title.TextSize = 19
  4906. SIDE_Title.TextWrapped = true
  4907. SIDE_Title.ZIndex = 10
  4908.  
  4909. OpenGUI.Name = "OpenGUI"
  4910. OpenGUI.Parent = SideFrame
  4911. OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  4912. OpenGUI.BackgroundTransparency = 1
  4913. OpenGUI.Position = UDim2.new(0.560000002, 166, 0.100000001, 0)
  4914. OpenGUI.Size = UDim2.new(0, 38, 0, 24)
  4915. OpenGUI.Font = Enum.Font.ArialBold
  4916. OpenGUI.FontSize = Enum.FontSize.Size32
  4917. OpenGUI.Text = "X"
  4918. OpenGUI.TextColor3 = Color3.new(0.615686, 0, 0)
  4919. OpenGUI.TextSize = 30
  4920. OpenGUI.ZIndex = 10
  4921.  
  4922. SIDE_FE_Check.Name = "SIDE_FE_Check"
  4923. SIDE_FE_Check.Parent = SideFrame
  4924. SIDE_FE_Check.BackgroundColor3 = Color3.new(1, 1, 1)
  4925. SIDE_FE_Check.BackgroundTransparency = 1
  4926. SIDE_FE_Check.Position = UDim2.new(0.291458786, 0, 0, 0)
  4927. SIDE_FE_Check.Size = UDim2.new(0, 223, 0, 24)
  4928. SIDE_FE_Check.Font = Enum.Font.Highway
  4929. SIDE_FE_Check.FontSize = Enum.FontSize.Size14
  4930. SIDE_FE_Check.Text = "Error loading FE Checker"
  4931. SIDE_FE_Check.TextColor3 = Color3.new(1, 1, 1)
  4932. SIDE_FE_Check.TextScaled = true
  4933. SIDE_FE_Check.TextSize = 14
  4934. SIDE_FE_Check.TextWrapped = true
  4935. SIDE_FE_Check.ZIndex = 10
  4936.  
  4937. icon.Name = "icon"
  4938. icon.Parent = SideTabs
  4939. icon.BackgroundColor3 = Color3.new(1, 1, 1)
  4940. icon.BackgroundTransparency = 1
  4941. icon.Position = UDim2.new(0, 0, 0.51, 0)
  4942. icon.Size = UDim2.new(0, 120, 0, 110)
  4943. icon.Image = "http://www.roblox.com/asset/?id=1227728863"
  4944. icon.ZIndex = 6
  4945.  
  4946. SideTabsBrick.Name = "SideTabsBrick"
  4947. SideTabsBrick.Parent = MainFrame
  4948. SideTabsBrick.BackgroundColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4949. SideTabsBrick.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  4950. SideTabsBrick.BorderSizePixel = 0
  4951. SideTabsBrick.Position = UDim2.new(0.270000011, 0, 0.0799999982, 0)
  4952. SideTabsBrick.Size = UDim2.new(0, 0, 0, 307)
  4953.  
  4954. ResetDefault.Name = "ResetDefault"
  4955. ResetDefault.Parent = LocalPlayer
  4956. ResetDefault.BackgroundColor3 = Color3.new(0.6, 0.192157, 0.192157)
  4957. ResetDefault.BorderSizePixel = 0
  4958. ResetDefault.Position = UDim2.new(0.30627659, 0, 0.554668844, 0)
  4959. ResetDefault.Size = UDim2.new(0, 107, 0, 26)
  4960. ResetDefault.Font = Enum.Font.Arial
  4961. ResetDefault.FontSize = Enum.FontSize.Size18
  4962. ResetDefault.Text = "ResetDefault"
  4963. ResetDefault.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4964. ResetDefault.TextSize = 18
  4965. ResetDefault.TextWrapped = true
  4966.  
  4967. Push.Name = "Push"
  4968. Push.Parent = Others
  4969. Push.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4970. Push.BorderSizePixel = 0
  4971. Push.Position = UDim2.new(0.0612553172, 0, 0.326499889, 0)
  4972. Push.Size = UDim2.new(0, 78, 0, 26)
  4973. Push.Font = Enum.Font.Arial
  4974. Push.FontSize = Enum.FontSize.Size18
  4975. Push.Text = "Push"
  4976. Push.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4977. Push.TextSize = 18
  4978. Push.TextWrapped = true
  4979.  
  4980. ClientFreeze.Name = "ClientFreeze"
  4981. ClientFreeze.Parent = Others
  4982. ClientFreeze.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4983. ClientFreeze.BorderSizePixel = 0
  4984. ClientFreeze.Position = UDim2.new(0.367531896, 0, 0.326499889, 0)
  4985. ClientFreeze.Size = UDim2.new(0, 78, 0, 26)
  4986. ClientFreeze.Font = Enum.Font.Arial
  4987. ClientFreeze.FontSize = Enum.FontSize.Size14
  4988. ClientFreeze.Text = "ClientFreeze"
  4989. ClientFreeze.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  4990. ClientFreeze.TextSize = 14
  4991. ClientFreeze.TextWrapped = true
  4992.  
  4993. Orbit.Name = "Orbit"
  4994. Orbit.Parent = Others
  4995. Orbit.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  4996. Orbit.BorderSizePixel = 0
  4997. Orbit.Position = UDim2.new(0.673808455, 0, 0.326499889, 0)
  4998. Orbit.Size = UDim2.new(0, 78, 0, 26)
  4999. Orbit.Font = Enum.Font.Arial
  5000. Orbit.FontSize = Enum.FontSize.Size18
  5001. Orbit.Text = "Orbit"
  5002. Orbit.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5003. Orbit.TextSize = 18
  5004. Orbit.TextWrapped = true
  5005.  
  5006. KillAll.Name = "KillAll"
  5007. KillAll.Parent = Others
  5008. KillAll.BackgroundColor3 = Color3.new(0.423529, 0.0862745, 0.0627451)
  5009. KillAll.BorderSizePixel = 0
  5010. KillAll.Position = UDim2.new(0.0612446219, 0, 0.880944669, 0)
  5011. KillAll.Size = UDim2.new(0, 78, 0, 26)
  5012. KillAll.Font = Enum.Font.Arial
  5013. KillAll.FontSize = Enum.FontSize.Size18
  5014. KillAll.Text = "Kill All"
  5015. KillAll.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5016. KillAll.TextSize = 18
  5017. KillAll.TextWrapped = true
  5018.  
  5019. Temp.Name = "Temp"
  5020. Temp.Parent = Games
  5021. Temp.BackgroundColor3 = Color3.new(1, 1, 1)
  5022. Temp.BackgroundTransparency = 1
  5023. Temp.Position = UDim2.new(0.183430299, -60, 0.456786126, -17)
  5024. Temp.Rotation = -30
  5025. Temp.Size = UDim2.new(0, 328, 0, 60)
  5026. Temp.Font = Enum.Font.Highway
  5027. Temp.FontSize = Enum.FontSize.Size14
  5028. Temp.Text = "Coming soon!"
  5029. Temp.TextScaled = true
  5030. Temp.TextSize = 14
  5031. Temp.TextStrokeColor3 = Color3.new(0.192157, 1, 0.733333)
  5032. Temp.TextStrokeTransparency = 0
  5033. Temp.TextWrapped = true
  5034.  
  5035. Experimental.Name = "Experimental"
  5036. Experimental.Parent = Others
  5037. Experimental.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  5038. Experimental.BorderSizePixel = 0
  5039. Experimental.Position = UDim2.new(0.0611434318, 0, 0.424158514, 0)
  5040. Experimental.Size = UDim2.new(0, 78, 0, 26)
  5041. Experimental.Font = Enum.Font.Arial
  5042. Experimental.FontSize = Enum.FontSize.Size14
  5043. Experimental.Text = "Experimental"
  5044. Experimental.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5045. Experimental.TextSize = 14
  5046. Experimental.TextWrapped = true
  5047.  
  5048. CHAOS.Name = "CHAOS"
  5049. CHAOS.Parent = Others
  5050. CHAOS.BackgroundColor3 = Color3.new(0.0431373, 0.231373, 0.0862745)
  5051. CHAOS.BorderSizePixel = 0
  5052. CHAOS.Position = UDim2.new(0.672577739, 0, 0.424158514, 0)
  5053. CHAOS.Size = UDim2.new(0, 78, 0, 26)
  5054. CHAOS.Font = Enum.Font.Arial
  5055. CHAOS.FontSize = Enum.FontSize.Size18
  5056. CHAOS.Text = "CHAOS"
  5057. CHAOS.TextColor3 = Color3.new(0.866667, 0.866667, 0.866667)
  5058. CHAOS.TextSize = 18
  5059. CHAOS.TextWrapped = true
  5060.  
  5061. -- Buttons
  5062. if game.Workspace.FilteringEnabled == false then
  5063. FE_Check.Text = "FE is disabled"
  5064. FE_Check.TextColor3 = Color3.fromRGB(200,10,10)
  5065. SIDE_FE_Check.Text = "FE is disabled"
  5066. SIDE_FE_Check.TextColor3 = Color3.fromRGB(200,10,10)
  5067. else
  5068. FE_Check.Text = "FE is enabled"
  5069. FE_Check.TextColor3 = Color3.fromRGB(10,200,10)
  5070. SIDE_FE_Check.Text = "FE is enabled"
  5071. SIDE_FE_Check.TextColor3 = Color3.fromRGB(10,200,10)
  5072. end
  5073. col = Color3.new(0.231373, 0.231373, 0.231373)
  5074. loc = Color3.new(0.331373, 0.531373, 0.331373)
  5075.  
  5076. wait(0.4)
  5077. MainFrame:TweenPosition(UDim2.new(0.309, 0, 0.183, 0), "Out", "Bounce", 3)
  5078.  
  5079. CloseGUI.MouseButton1Click:connect(function()
  5080. CloseGUI.Visible = false
  5081. TopRow:TweenSize(UDim2.new(0, 448, 0, 334), "Out", "Sine", 1)
  5082. wait(1)
  5083. MainFrame.Visible = false
  5084. SideFrame.Position = MainFrame.Position
  5085. SideFrame.Visible = true
  5086. SideFrame:TweenSize(UDim2.new(0, 448, 0, 24), "Out", "Sine", 1)
  5087. OpenGUI.Visible = false
  5088. wait(1)
  5089. OpenGUI.Visible = true
  5090. end)
  5091.  
  5092. OpenGUI.MouseButton1Click:connect(function()
  5093. OpenGUI.Visible = false
  5094. SideFrame:TweenSize(UDim2.new(0, 448, 0, 334), "Out", "Sine", 1)
  5095. wait(1)
  5096. SideFrame.Visible = false
  5097. MainFrame.Position = SideFrame.Position
  5098. MainFrame.Visible = true
  5099. TopRow:TweenSize(UDim2.new(0, 448, 0, 24), "Out", "Sine", 1)
  5100. CloseGUI.Visible = false
  5101. wait(1)
  5102. CloseGUI.Visible = true
  5103. end)
  5104.  
  5105. TAB_Credit.MouseButton1Click:connect(function()
  5106. SideTabsBrick:TweenSize(UDim2.new(0, 328, 0, 307), "Out", "Sine", 0.5)
  5107. wait(0.5)
  5108. Games.Visible = false
  5109. LocalPlayer.Visible = false
  5110. Others.Visible = false
  5111. Scripts.Visible = false
  5112. NoneSelected.Visible = true
  5113. SideTabsBrick:TweenSize(UDim2.new(0, 0, 0, 307), "Out", "Sine", 0.5)
  5114. end)
  5115.  
  5116. TAB_Games.MouseButton1Click:connect(function()
  5117. SideTabsBrick:TweenSize(UDim2.new(0, 328, 0, 307), "Out", "Sine", 0.5)
  5118. wait(0.5)
  5119. Games.Visible = true
  5120. LocalPlayer.Visible = false
  5121. Others.Visible = false
  5122. Scripts.Visible = false
  5123. NoneSelected.Visible = false
  5124. SideTabsBrick:TweenSize(UDim2.new(0, 0, 0, 307), "Out", "Sine", 0.5)
  5125. end)
  5126.  
  5127. TAB_Scripts.MouseButton1Click:connect(function()
  5128. SideTabsBrick:TweenSize(UDim2.new(0, 328, 0, 307), "Out", "Sine", 0.5)
  5129. wait(0.5)
  5130. Games.Visible = false
  5131. LocalPlayer.Visible = false
  5132. Others.Visible = false
  5133. Scripts.Visible = true
  5134. NoneSelected.Visible = false
  5135. SideTabsBrick:TweenSize(UDim2.new(0, 0, 0, 307), "Out", "Sine", 0.5)
  5136. end)
  5137.  
  5138. TAB_LocalPlayer.MouseButton1Click:connect(function()
  5139. SideTabsBrick:TweenSize(UDim2.new(0, 328, 0, 307), "Out", "Sine", 0.5)
  5140. wait(0.5)
  5141. Games.Visible = false
  5142. LocalPlayer.Visible = true
  5143. Others.Visible = false
  5144. Scripts.Visible = false
  5145. NoneSelected.Visible = false
  5146. SideTabsBrick:TweenSize(UDim2.new(0, 0, 0, 307), "Out", "Sine", 0.5)
  5147. end)
  5148.  
  5149. TAB_Others.MouseButton1Click:connect(function()
  5150. SideTabsBrick:TweenSize(UDim2.new(0, 328, 0, 307), "Out", "Sine", 0.5)
  5151. wait(0.5)
  5152. Games.Visible = false
  5153. LocalPlayer.Visible = false
  5154. Others.Visible = true
  5155. Scripts.Visible = false
  5156. NoneSelected.Visible = false
  5157. SideTabsBrick:TweenSize(UDim2.new(0, 0, 0, 307), "Out", "Sine", 0.5)
  5158. end)
  5159.  
  5160. -- LOCAL PLAYER ---------------------------------
  5161. -- LOCAL PLAYER ---------------------------------
  5162.  
  5163. HipHeight.MouseButton1Click:connect(function()
  5164. game.Players.LocalPlayer.Character.Humanoid.HipHeight = HipHeight_TXTBOX.Text
  5165. end)
  5166. JumpHeight.MouseButton1Click:connect(function()
  5167. game.Players.LocalPlayer.Character.Humanoid.JumpPower = JumpHeight_TXTBOX.Text
  5168. end)
  5169. Speed.MouseButton1Click:connect(function()
  5170. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Speed_TXTBOX.Text
  5171. end)
  5172. Sit.MouseButton1Click:connect(function()
  5173. game.Players.LocalPlayer.Character.Humanoid.Sit = true
  5174. end)
  5175. Jump.MouseButton1Click:connect(function()
  5176. game.Players.LocalPlayer.Character.Humanoid.Jump = true
  5177. end)
  5178. frost = false
  5179. Freeze.MouseButton1Click:connect(function()
  5180. frost = not frost
  5181. if frost then
  5182. game.Players.LocalPlayer.Character.Torso.Anchored = true
  5183. game.Players.LocalPlayer.Character.Head.Anchored = true
  5184. game.Players.LocalPlayer.Character["Left Leg"].Anchored = true
  5185. game.Players.LocalPlayer.Character["Left Arm"].Anchored = true
  5186. game.Players.LocalPlayer.Character["Right Leg"].Anchored = true
  5187. game.Players.LocalPlayer.Character["Right Arm"].Anchored = true
  5188. Freeze.BackgroundColor3 = loc
  5189. else
  5190. game.Players.LocalPlayer.Character.Torso.Anchored = false
  5191. game.Players.LocalPlayer.Character.Head.Anchored = false
  5192. game.Players.LocalPlayer.Character["Left Leg"].Anchored = false
  5193. game.Players.LocalPlayer.Character["Left Arm"].Anchored = false
  5194. game.Players.LocalPlayer.Character["Right Leg"].Anchored = false
  5195. game.Players.LocalPlayer.Character["Right Arm"].Anchored = false
  5196. Freeze.BackgroundColor3 = col
  5197. end
  5198. end)
  5199. Chat.MouseButton1Click:connect(function()
  5200. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(Chat_TXTBOX.Text, "All")
  5201. end)
  5202. keepspam = false
  5203. Spam.MouseButton1Click:connect(function()
  5204. keepspam = not keepspam
  5205. if keepspam then
  5206. Spam.BackgroundColor3 = loc
  5207. else
  5208. Spam.BackgroundColor3 = col
  5209. end
  5210. while wait(0.5) do
  5211. if keepspam then
  5212. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(Chat_TXTBOX.Text, "All")
  5213. end
  5214. end
  5215. end)
  5216. gmd = false
  5217. GodMode.MouseButton1Click:connect(function()
  5218. gmd = not gmd
  5219. if gmd then
  5220. game.Players.LocalPlayer.Character.Humanoid.Name = "no"
  5221. local turn1 = game.Players.LocalPlayer.Character["no"]:Clone()
  5222. turn1.Parent = game.Players.LocalPlayer.Character
  5223. turn1.Name = "Humanoid"
  5224. wait(0.1)
  5225. game.Players.LocalPlayer.Character["no"]:Destroy()
  5226. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  5227. game.Players.LocalPlayer.Character.Animate.Disabled = true
  5228. wait(0.1)
  5229. game.Players.LocalPlayer.Character.Animate.Disabled = false
  5230. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  5231. GodMode.BackgroundColor3 = loc
  5232. else
  5233. GodMode.BackgroundColor3 = col
  5234. end
  5235. end)
  5236. NoLimbs.MouseButton1Click:connect(function()
  5237. game.Players.LocalPlayer.Character["Left Arm"]:Destroy()
  5238. game.Players.LocalPlayer.Character["Right Arm"]:Destroy()
  5239. game.Players.LocalPlayer.Character["Right Leg"]:Destroy()
  5240. game.Players.LocalPlayer.Character["Left Leg"]:Destroy()
  5241. end)
  5242. Respawn.MouseButton1Click:connect(function()
  5243. game.Players.LocalPlayer:LoadCharacter()
  5244. end)
  5245.  
  5246. local Anim = Instance.new("Animation")
  5247. Anim.AnimationId = "rbxassetid://188632011"
  5248. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  5249. local SpinACTIVE = false
  5250. Spin.MouseButton1Click:connect(function()
  5251. SpinACTIVE = not SpinACTIVE
  5252. if SpinACTIVE then
  5253. while wait() do
  5254. if track.IsPlaying == false then
  5255. if SpinACTIVE then
  5256. track:Play(.1, 1, 2)
  5257. Spin.BackgroundColor3 = loc
  5258. else
  5259. Spin.BackgroundColor3 = col
  5260. end
  5261. end
  5262. end
  5263. else
  5264. track:Stop()
  5265. end
  5266. end)
  5267. Hidden = false
  5268. HideName.MouseButton1Click:connect(function()
  5269. Hidden = not Hidden
  5270. if Hidden then
  5271. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  5272. HideName.BackgroundColor3 = loc
  5273. else
  5274. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "Viewer"
  5275. HideName.BackgroundColor3 = col
  5276. end
  5277. end)
  5278. clip = true
  5279. Noclip.MouseButton1Click:connect(function()
  5280. clip = not clip
  5281. if not clip then
  5282. Noclip.BackgroundColor3 = loc
  5283. else
  5284. Noclip.BackgroundColor3 = col
  5285. end
  5286. game:GetService('RunService').Stepped:connect(function()
  5287. if not clip then
  5288. game.Players.LocalPlayer.Character.Head.CanCollide = false
  5289. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  5290. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  5291. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  5292. end
  5293. end)
  5294. end)
  5295. shake = false
  5296. Seizure.MouseButton1Click:connect(function()
  5297. shake = not shake
  5298. if shake then
  5299. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = true
  5300. while wait() do
  5301. if shake then
  5302. game.Players.LocalPlayer.Character.Torso.Velocity = Vector3.new(math.random(-20,20),-10,math.random(-20,20))
  5303. game.Players.LocalPlayer.Character.Torso.RotVelocity = Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))
  5304. Seizure.BackgroundColor3 = loc
  5305. else
  5306. Seizure.BackgroundColor3 = col
  5307. end
  5308. end
  5309. else
  5310. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  5311. end
  5312. end)
  5313.  
  5314. local flying = false
  5315. Fly.MouseButton1Click:connect(function()
  5316. flying = not flying
  5317. repeat wait()
  5318. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  5319. local mouse = game.Players.LocalPlayer:GetMouse()
  5320. repeat wait() until mouse
  5321. local plr = game.Players.LocalPlayer
  5322. local torso = plr.Character.Torso
  5323. local deb = true
  5324. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  5325. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  5326. local maxspeed = 60
  5327. local speed = 0
  5328. if flying then
  5329. Fly.BackgroundColor3 = loc
  5330. else
  5331. Fly.BackgroundColor3 = col
  5332. end
  5333.  
  5334. function FlyFunction()
  5335. local bg = Instance.new("BodyGyro", torso)
  5336. bg.P = 9e4
  5337. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  5338. bg.cframe = torso.CFrame
  5339. local bv = Instance.new("BodyVelocity", torso)
  5340. bv.velocity = Vector3.new(0,0.1,0)
  5341. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  5342. repeat wait()
  5343. plr.Character.Humanoid.PlatformStand = true
  5344. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  5345. speed = speed+.5+(speed/maxspeed)
  5346. if speed > maxspeed then
  5347. speed = maxspeed
  5348. end
  5349. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  5350. speed = speed-1
  5351. if speed < 0 then
  5352. speed = 0
  5353. end
  5354. end
  5355. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  5356. 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
  5357. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  5358. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  5359. 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
  5360. else
  5361. bv.velocity = Vector3.new(0,0.1,0)
  5362. end
  5363. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  5364. until not flying
  5365. ctrl = {f = 0, b = 0, l = 0, r = 0}
  5366. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  5367. speed = 0
  5368. bg:Destroy()
  5369. bv:Destroy()
  5370. plr.Character.Humanoid.PlatformStand = false
  5371. end
  5372. mouse.KeyDown:connect(function(key)
  5373. if key:lower() == "w" then
  5374. ctrl.f = 1
  5375. elseif key:lower() == "s" then
  5376. ctrl.b = -1
  5377. elseif key:lower() == "a" then
  5378. ctrl.l = -1
  5379. elseif key:lower() == "d" then
  5380. ctrl.r = 1
  5381. end
  5382. end)
  5383. mouse.KeyUp:connect(function(key)
  5384. if key:lower() == "w" then
  5385. ctrl.f = 0
  5386. elseif key:lower() == "s" then
  5387. ctrl.b = 0
  5388. elseif key:lower() == "a" then
  5389. ctrl.l = 0
  5390. elseif key:lower() == "d" then
  5391. ctrl.r = 0
  5392. end
  5393. end)
  5394. FlyFunction()
  5395. end)
  5396.  
  5397. Btools.MouseButton1Click:connect(function()
  5398. local Clone_T = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  5399. Clone_T.BinType = "Clone"
  5400. local Destruct = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  5401. Destruct.BinType = "Hammer"
  5402. local Hold_T = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  5403. Hold_T.BinType = "Grab"
  5404. local a = game.Workspace:getChildren()
  5405. for i = 1, #a do
  5406. if a[i].className == "Part" then
  5407. a[i].Locked = false
  5408. elseif a[i].className == "Model" then
  5409. local r = a[i]:getChildren()
  5410. for i = 1, #r do
  5411. if r[i].className == "Part" then
  5412. r[i].Locked = false
  5413. end
  5414. end
  5415. end
  5416. end
  5417. end)
  5418.  
  5419. ResetDefault.MouseButton1Click:connect(function()
  5420. flying = false
  5421. game.Players.LocalPlayer.Character.Torso.Anchored = false
  5422. game.Players.LocalPlayer.Character.Head.Anchored = false
  5423. game.Players.LocalPlayer.Character["Left Leg"].Anchored = false
  5424. game.Players.LocalPlayer.Character["Left Arm"].Anchored = false
  5425. game.Players.LocalPlayer.Character["Right Leg"].Anchored = false
  5426. game.Players.LocalPlayer.Character["Right Arm"].Anchored = false
  5427. game.Players.LocalPlayer.Character.Humanoid.HipHeight = 0
  5428. game.Players.LocalPlayer.Character.Humanoid.Sit = false
  5429. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  5430. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  5431. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "Viewer"
  5432. game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
  5433. end)
  5434.  
  5435. -- OTHERS ---------------------------------
  5436. -- OTHERS ---------------------------------
  5437.  
  5438. function GetPlayer(String) --thank you/credit to Timeless/xFunnieuss
  5439. local Found = {}
  5440. local strl = String:lower()
  5441. if strl == "all" then
  5442. for i,v in pairs(game.Players:GetPlayers()) do
  5443. table.insert(Found,v)
  5444. end
  5445. elseif strl == "others" then
  5446. for i,v in pairs(game.Players:GetPlayers()) do
  5447. if v.Name ~= game.Players.LocalPlayer.Name then
  5448. table.insert(Found,v)
  5449. end
  5450. end
  5451. else
  5452. for i,v in pairs(game.Players:GetPlayers()) do
  5453. if v.Name:lower():sub(1, #String) == String:lower() then
  5454. table.insert(Found,v)
  5455. end
  5456. end
  5457. end
  5458. return Found
  5459. end
  5460.  
  5461. Teleport.MouseButton1Click:connect(function()
  5462. for i,v in pairs(GetPlayer(PlayerUserEnter.Text))do
  5463. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  5464. end
  5465. end)
  5466. currentview = false
  5467. View.MouseButton1Click:connect(function()
  5468. currentview = not currentview
  5469. for i,v in pairs(GetPlayer(PlayerUserEnter.Text))do
  5470. if currentview then
  5471. game.Workspace.CurrentCamera.CameraSubject = game.Players[v.Name].Character.Head
  5472. View.BackgroundColor3 = loc
  5473. else
  5474. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Head
  5475. View.BackgroundColor3 = col
  5476. end
  5477. end
  5478. end)
  5479. annoying = false
  5480. Annoy.MouseButton1Click:connect(function()
  5481. annoying = not annoying
  5482. for i,v in pairs(GetPlayer(PlayerUserEnter.Text))do
  5483. while wait() do
  5484. if annoying then
  5485. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  5486. Annoy.BackgroundColor3 = loc
  5487. else
  5488. Annoy.BackgroundColor3 = col
  5489. end
  5490. end
  5491. end
  5492. end)
  5493. cfreeze = false
  5494. ClientFreeze.MouseButton1Click:connect(function()
  5495. cfreeze = not cfreeze
  5496. for i,v in pairs(GetPlayer(PlayerUserEnter.Text))do
  5497. if cfreeze then
  5498. game.Players[v.Name].Character.Torso.Anchored = true
  5499. game.Players[v.Name].Character.Head.Anchored = true
  5500. game.Players[v.Name].Character["Left Leg"].Anchored = true
  5501. game.Players[v.Name].Character["Left Arm"].Anchored = true
  5502. game.Players[v.Name].Character["Right Leg"].Anchored = true
  5503. game.Players[v.Name].Character["Right Arm"].Anchored = true
  5504. else
  5505. game.Players[v.Name].Character.Torso.Anchored = false
  5506. game.Players[v.Name].Character.Head.Anchored = false
  5507. game.Players[v.Name].Character["Left Leg"].Anchored = false
  5508. game.Players[v.Name].Character["Left Arm"].Anchored = false
  5509. game.Players[v.Name].Character["Right Leg"].Anchored = false
  5510. game.Players[v.Name].Character["Right Arm"].Anchored = false
  5511. end
  5512. end
  5513. end)
  5514. orbital = false
  5515. Orbit.MouseButton1Click:connect(function()
  5516. orbital = not orbital
  5517. if orbital then
  5518. Orbit.BackgroundColor3 = loc
  5519. local o = Instance.new("RocketPropulsion")
  5520. o.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  5521. o.Name = "Orbit"
  5522. for i,v in pairs(GetPlayer(PlayerUserEnter.Text))do
  5523. o.Target = game.Players[v.Name].Character.HumanoidRootPart
  5524. o:Fire()
  5525. game:GetService('RunService').Stepped:connect(function()
  5526. if orbital then
  5527. game.Players.LocalPlayer.Character.Head.CanCollide = false
  5528. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  5529. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  5530. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  5531. end
  5532. end)
  5533. end
  5534. else
  5535. game.Players.LocalPlayer.Character.HumanoidRootPart.Orbit:Destroy()
  5536. Orbit.BackgroundColor3 = col
  5537. end
  5538. end)
  5539. pushing = false
  5540. Push.MouseButton1Click:connect(function()
  5541. pushing = not pushing
  5542. if pushing then
  5543. Push.BackgroundColor3 = loc
  5544. local o = Instance.new("RocketPropulsion")
  5545. o.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  5546. o.Name = "Push"
  5547. o.TurnP = 2500
  5548. o.MaxThrust = 50000
  5549. o.MaxSpeed = 1000
  5550. o.ThrustP = 50000
  5551. o.CartoonFactor = 1
  5552. for i,v in pairs(GetPlayer(PlayerUserEnter.Text))do
  5553. o.Target = game.Players[v.Name].Character.HumanoidRootPart
  5554. o:Fire()
  5555. game:GetService('RunService').Stepped:connect(function()
  5556. if pushing then
  5557. game.Players.LocalPlayer.Character.Head.CanCollide = false
  5558. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  5559. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  5560. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  5561. end
  5562. end)
  5563. end
  5564. else
  5565. game.Players.LocalPlayer.Character.HumanoidRootPart.Push:Destroy()
  5566. Push.BackgroundColor3 = col
  5567. end
  5568. end)
  5569. local Anim = Instance.new("Animation")
  5570. Anim.AnimationId = "rbxassetid://282574440"
  5571. local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  5572. flattening = false
  5573. Flatten.MouseButton1Click:connect(function()
  5574. flattening = not flattening
  5575. if flattening then
  5576. Flatten.BackgroundColor3 = loc
  5577. local o = Instance.new("RocketPropulsion")
  5578. o.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  5579. o.Name = "Flatten"
  5580. o.MaxThrust = 50000
  5581. o.MaxSpeed = 1000
  5582. o.ThrustP = 50000
  5583. o.CartoonFactor = 1
  5584. for i,v in pairs(GetPlayer(PlayerUserEnter.Text))do
  5585. o.Target = game.Players[v.Name].Character["Left Leg"]
  5586. o:Fire()
  5587. track:Play(.1, 1, 1)
  5588. game:GetService('RunService').Stepped:connect(function()
  5589. if flattening then
  5590. game.Players.LocalPlayer.Character.Head.CanCollide = false
  5591. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  5592. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  5593. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  5594. end
  5595. end)
  5596. while wait(0.3) do
  5597. if flattening then
  5598. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame + Vector3.new(0,2,0)
  5599. end
  5600. end
  5601. end
  5602. else
  5603. game.Players.LocalPlayer.Character.HumanoidRootPart.Flatten:Destroy()
  5604. Flatten.BackgroundColor3 = col
  5605. track:Stop()
  5606. end
  5607. end)
  5608. Verspin.MouseButton1Click:connect(function()
  5609. game:GetObjects("rbxassetid://1249942219")[1].Parent = game.Players.LocalPlayer.PlayerGui
  5610. end)
  5611. Energize.MouseButton1Click:connect(function()
  5612. game:GetObjects("rbxassetid://1202558084")[1].Parent = game.Players.LocalPlayer.PlayerGui
  5613. end)
  5614. GlitchMax.MouseButton1Click:connect(function()
  5615. game:GetObjects("rbxassetid://1249943137")[1].Parent = game.Players.LocalPlayer.PlayerGui
  5616. end)
  5617. Experimental.MouseButton1Click:connect(function()
  5618.  
  5619. end)
  5620. end)
  5621.  
  5622. Jailbreaker.Name = "Jailbreaker"
  5623. Jailbreaker.Parent = GUI
  5624. Jailbreaker.BackgroundColor3 = Color3.new(0, 0, 1)
  5625. Jailbreaker.Position = UDim2.new(0, 0, 0.419871807, 0)
  5626. Jailbreaker.Size = UDim2.new(0, 137, 0, 50)
  5627. Jailbreaker.Font = Enum.Font.SourceSans
  5628. Jailbreaker.Text = "Jailbreaker 4.2"
  5629. Jailbreaker.TextColor3 = Color3.new(1, 1, 1)
  5630. Jailbreaker.TextSize = 25
  5631. Jailbreaker.MouseButton1Down:connect(function()
  5632. -- Jailbreaker V4.2
  5633. local plr = game:GetService("Players").LocalPlayer
  5634.  
  5635.  
  5636. local TpMethod = 2
  5637.  
  5638.  
  5639.  
  5640. function JailbreakTp(...)
  5641. getfenv()["TpMethod" .. TpMethod](...)
  5642. end
  5643.  
  5644. function TpMethod1(...)
  5645. local char = plr.Character
  5646. local root = char.HumanoidRootPart
  5647. local args = {...}
  5648. for i=0,1,0.05 do
  5649. wait()
  5650. root.CFrame = root.CFrame:lerp(CFrame.new(unpack(args,1,3)), i)
  5651. end
  5652. end
  5653.  
  5654. function TpMethod2(...)
  5655. local args = {...}
  5656. local char = plr.Character
  5657. local target = Vector3.new(unpack(args,1,3))
  5658. local dist = (char:WaitForChild"HumanoidRootPart".Position - target).magnitude
  5659. dist = math.floor(dist / 100) + 1
  5660. for i=0,dist * 4 do
  5661. wait()
  5662. char:MoveTo(Vector3.new(...))
  5663. end
  5664. if args[#args] == true then
  5665. wait()
  5666. char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(unpack(args,1,#args - 1))
  5667. end
  5668. end
  5669.  
  5670. function Tween(obj, t, properties)
  5671. local TweenService = game:GetService("TweenService")
  5672. local tweenInfo = TweenInfo.new(t,Enum.EasingStyle.Linear,Enum.EasingDirection.In,0,false,0)
  5673. local tween = TweenService:Create(obj,tweenInfo,properties)
  5674. tween:Play()
  5675. return tween
  5676. end
  5677. -- Instances:
  5678. local JailbreakerV42 = Instance.new("ScreenGui")
  5679. local Main = Instance.new("Frame")
  5680. local Teleports = Instance.new("TextButton")
  5681. local AutoRob = Instance.new("TextButton")
  5682. local TPS = Instance.new("Frame")
  5683. local BankFront = Instance.new("TextButton")
  5684. local BankVault = Instance.new("TextButton")
  5685. local JewIn = Instance.new("TextButton")
  5686. local JewOut = Instance.new("TextButton")
  5687. local donut = Instance.new("TextButton")
  5688. local gas = Instance.new("TextButton")
  5689. local CrimBase1 = Instance.new("TextButton")
  5690. local Crimbase2 = Instance.new("TextButton")
  5691. local TrainSpawn = Instance.new("TextButton")
  5692. local PoliceBase = Instance.new("TextButton")
  5693. local Museum = Instance.new("TextButton")
  5694. local MuseumRoof = Instance.new("TextButton")
  5695. local AK47 = Instance.new("TextButton")
  5696. local AutoArrest = Instance.new("TextButton")
  5697. local Btools = Instance.new("TextButton")
  5698. local Gravity = Instance.new("TextButton")
  5699. local Infinitenitro = Instance.new("TextButton")
  5700. local M4A4 = Instance.new("TextButton")
  5701. local NoClipB = Instance.new("TextButton")
  5702. local Pistol = Instance.new("TextButton")
  5703. local RemoveBuildings = Instance.new("TextButton")
  5704. local Removeall = Instance.new("TextButton")
  5705. local SHOTGUN = Instance.new("TextButton")
  5706. local WalkSpeed = Instance.new("TextButton")
  5707. local AutoROB = Instance.new("Frame")
  5708. local BankAutoRobBtn = Instance.new("TextButton")
  5709. local JewelryStatus = Instance.new("TextLabel")
  5710. local BankStatus = Instance.new("TextLabel")
  5711. local Lol = Instance.new("TextLabel")
  5712. local Close = Instance.new("TextButton")
  5713. local PLTP = Instance.new("Frame")
  5714. local PlayerTP_Input = Instance.new("TextBox")
  5715. local PlayerTP_Teleport = Instance.new("TextButton")
  5716. local PlayerTeleport = Instance.new("TextButton")
  5717. local Open = Instance.new("TextButton")
  5718. --Properties:
  5719. JailbreakerV42.Name = "Jailbreaker V4.2"
  5720. JailbreakerV42.Parent = game.CoreGui
  5721.  
  5722. Main.Name = "Main"
  5723. Main.Parent = JailbreakerV42
  5724. Main.Active = true
  5725. Main.BackgroundColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  5726. Main.Position = UDim2.new(0.300000012, 0, 0.300000012, 0)
  5727. Main.Size = UDim2.new(0, 550, 0, 300)
  5728. Main.Draggable = true
  5729.  
  5730. Teleports.Name = "Teleports"
  5731. Teleports.Parent = Main
  5732. Teleports.BackgroundColor3 = Color3.new(1, 0, 0)
  5733. Teleports.Position = UDim2.new(0, 0, 0.0500000007, 0)
  5734. Teleports.Size = UDim2.new(0, 120, 0, 30)
  5735. Teleports.Font = Enum.Font.Cartoon
  5736. Teleports.Text = "Teleports"
  5737. Teleports.TextColor3 = Color3.new(0, 0, 0)
  5738. Teleports.TextScaled = true
  5739. Teleports.TextSize = 14
  5740. Teleports.TextWrapped = true
  5741. Teleports.MouseButton1Down:connect(function()
  5742. TPS.Visible = true
  5743. PLTP.Visible = false
  5744. AutoROB.Visible = false
  5745. end)
  5746. AutoRob.Name = "Auto Rob"
  5747. AutoRob.Parent = Main
  5748. AutoRob.BackgroundColor3 = Color3.new(1, 0, 0)
  5749. AutoRob.Position = UDim2.new(0.75, 0, 0.0500000007, 0)
  5750. AutoRob.Size = UDim2.new(0, 120, 0, 30)
  5751. AutoRob.Font = Enum.Font.Cartoon
  5752. AutoRob.Text = "Auto Rob"
  5753. AutoRob.TextColor3 = Color3.new(0, 0, 0)
  5754. AutoRob.TextScaled = true
  5755. AutoRob.TextSize = 14
  5756. AutoRob.TextWrapped = true
  5757. AutoRob.MouseButton1Down:connect(function()
  5758. TPS.Visible = false
  5759. PLTP.Visible = false
  5760. AutoROB.Visible = true
  5761. end)
  5762. TPS.Name = "TPS"
  5763. TPS.Parent = Main
  5764. TPS.BackgroundColor3 = Color3.new(1, 1, 1)
  5765. TPS.BackgroundTransparency = 1
  5766. TPS.Position = UDim2.new(0, 0, 0.170000002, 0)
  5767. TPS.Size = UDim2.new(0, 500, 0, 249)
  5768. TPS.Visible = true
  5769.  
  5770. BankFront.Name = "BankFront"
  5771. BankFront.Parent = TPS
  5772. BankFront.BackgroundColor3 = Color3.new(1, 0, 0)
  5773. BankFront.Position = UDim2.new(0.00999999978, 0, 0.0450000018, 0)
  5774. BankFront.Size = UDim2.new(0, 120, 0, 30)
  5775. BankFront.Font = Enum.Font.Cartoon
  5776. BankFront.Text = "BankFront"
  5777. BankFront.TextScaled = true
  5778. BankFront.TextSize = 14
  5779. BankFront.TextWrapped = true
  5780. BankFront.MouseButton1Down:connect(function()
  5781. for i = 1,45 do
  5782. wait(.08)
  5783. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147)
  5784. end
  5785. end)
  5786. BankVault.Name = "BankVault"
  5787. BankVault.Parent = TPS
  5788. BankVault.BackgroundColor3 = Color3.new(1, 0, 0)
  5789. BankVault.Position = UDim2.new(0.280000001, 0, 0.0450000018, 0)
  5790. BankVault.Size = UDim2.new(0, 120, 0, 30)
  5791. BankVault.Font = Enum.Font.Cartoon
  5792. BankVault.Text = "BankVault"
  5793. BankVault.TextScaled = true
  5794. BankVault.TextSize = 14
  5795. BankVault.TextWrapped = true
  5796. BankVault.MouseButton1Down:connect(function()
  5797. for i = 1,45 do
  5798. wait(.08)
  5799. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(18.3854294, 0.765628457, 815.506348)
  5800. end
  5801. end)
  5802. JewIn.Name = "JewIn"
  5803. JewIn.Parent = TPS
  5804. JewIn.BackgroundColor3 = Color3.new(1, 0, 0)
  5805. JewIn.Position = UDim2.new(0.00999999978, 0, 0.200000003, 0)
  5806. JewIn.Size = UDim2.new(0, 120, 0, 30)
  5807. JewIn.Font = Enum.Font.Cartoon
  5808. JewIn.Text = "Jewelry Inside"
  5809. JewIn.TextScaled = true
  5810. JewIn.TextSize = 14
  5811. JewIn.TextWrapped = true
  5812. JewIn.MouseButton1Down:connect(function()
  5813. for i = 1,45 do
  5814. wait(.08)
  5815. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(133.300705, 17.9375954, 1316.42407)
  5816. end
  5817. end)
  5818. JewOut.Name = "JewOut"
  5819. JewOut.Parent = TPS
  5820. JewOut.BackgroundColor3 = Color3.new(1, 0, 0)
  5821. JewOut.Position = UDim2.new(0.280000001, 0, 0.200000003, 0)
  5822. JewOut.Size = UDim2.new(0, 120, 0, 30)
  5823. JewOut.Font = Enum.Font.Cartoon
  5824. JewOut.Text = "Jewelry Top"
  5825. JewOut.TextScaled = true
  5826. JewOut.TextSize = 14
  5827. JewOut.TextWrapped = true
  5828. JewOut.MouseButton1Down:connect(function()
  5829. for i = 1,45 do
  5830. wait(.08)
  5831. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175)
  5832. end
  5833. end)
  5834. donut.Name = "donut"
  5835. donut.Parent = TPS
  5836. donut.BackgroundColor3 = Color3.new(1, 0, 0)
  5837. donut.Position = UDim2.new(0.280000001, 0, 0.349999994, 0)
  5838. donut.Size = UDim2.new(0, 120, 0, 30)
  5839. donut.Font = Enum.Font.Cartoon
  5840. donut.Text = "Donut Shop"
  5841. donut.TextScaled = true
  5842. donut.TextSize = 14
  5843. donut.TextWrapped = true
  5844. donut.MouseButton1Down:connect(function()
  5845. for i = 1,45 do
  5846. wait(.08)
  5847. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(257.191101, 17.81828869, -1753.11206)
  5848. end
  5849. end)
  5850. gas.Name = "gas"
  5851. gas.Parent = TPS
  5852. gas.BackgroundColor3 = Color3.new(1, 0, 0)
  5853. gas.Position = UDim2.new(0.00999999978, 0, 0.349999994, 0)
  5854. gas.Size = UDim2.new(0, 120, 0, 30)
  5855. gas.Font = Enum.Font.Cartoon
  5856. gas.Text = "Gas Station"
  5857. gas.TextScaled = true
  5858. gas.TextSize = 14
  5859. gas.TextWrapped = true
  5860. gas.MouseButton1Down:connect(function()
  5861. for i = 1,45 do
  5862. wait(.08)
  5863. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1586.41101, 17.8481865, 709.37262)
  5864. end
  5865. end)
  5866. CrimBase1.Name = "CrimBase1"
  5867. CrimBase1.Parent = TPS
  5868. CrimBase1.BackgroundColor3 = Color3.new(1, 0, 0)
  5869. CrimBase1.Position = UDim2.new(0.00999999978, 0, 0.5, 0)
  5870. CrimBase1.Size = UDim2.new(0, 120, 0, 30)
  5871. CrimBase1.Font = Enum.Font.Cartoon
  5872. CrimBase1.Text = "CrimBase1"
  5873. CrimBase1.TextScaled = true
  5874. CrimBase1.TextSize = 14
  5875. CrimBase1.TextWrapped = true
  5876. CrimBase1.MouseButton1Down:connect(function()
  5877. for i = 1,45 do
  5878. wait(.08)
  5879. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-221.723099, 17.8924026, 1578.80261)
  5880. end
  5881. end)
  5882. Crimbase2.Name = "Crimbase2"
  5883. Crimbase2.Parent = TPS
  5884. Crimbase2.BackgroundColor3 = Color3.new(1, 0, 0)
  5885. Crimbase2.Position = UDim2.new(0.280000001, 0, 0.5, 0)
  5886. Crimbase2.Size = UDim2.new(0, 120, 0, 30)
  5887. Crimbase2.Font = Enum.Font.Cartoon
  5888. Crimbase2.Text = "CrimBase2"
  5889. Crimbase2.TextScaled = true
  5890. Crimbase2.TextSize = 14
  5891. Crimbase2.TextWrapped = true
  5892. Crimbase2.MouseButton1Down:connect(function()
  5893. for i = 1,45 do
  5894. wait(.08)
  5895. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1650.80896, 49.863636, -1770.66626)
  5896. end
  5897. end)
  5898. TrainSpawn.Name = "TrainSpawn"
  5899. TrainSpawn.Parent = TPS
  5900. TrainSpawn.BackgroundColor3 = Color3.new(1, 0, 0)
  5901. TrainSpawn.Position = UDim2.new(0.00999999978, 0, 0.649999976, 0)
  5902. TrainSpawn.Size = UDim2.new(0, 120, 0, 30)
  5903. TrainSpawn.Font = Enum.Font.Cartoon
  5904. TrainSpawn.Text = "TrainSpawn"
  5905. TrainSpawn.TextScaled = true
  5906. TrainSpawn.TextSize = 14
  5907. TrainSpawn.TextWrapped = true
  5908. TrainSpawn.MouseButton1Down:connect(function()
  5909. for i = 1,45 do
  5910. wait(.08)
  5911. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1954.95007, 68.0448606, -603.844116)
  5912. end
  5913. end)
  5914. PoliceBase.Name = "PoliceBase"
  5915. PoliceBase.Parent = TPS
  5916. PoliceBase.BackgroundColor3 = Color3.new(1, 0, 0)
  5917. PoliceBase.Position = UDim2.new(0.280000001, 0, 0.649999976, 0)
  5918. PoliceBase.Size = UDim2.new(0, 120, 0, 30)
  5919. PoliceBase.Font = Enum.Font.Cartoon
  5920. PoliceBase.Text = "PoliceBase"
  5921. PoliceBase.TextScaled = true
  5922. PoliceBase.TextSize = 14
  5923. PoliceBase.TextWrapped = true
  5924. PoliceBase.MouseButton1Down:connect(function()
  5925. for i = 1,45 do
  5926. wait(.08)
  5927. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1136.89868, 17.950058, -1585.59912)
  5928. end
  5929. end)
  5930. Museum.Name = "Museum"
  5931. Museum.Parent = TPS
  5932. Museum.BackgroundColor3 = Color3.new(1, 0, 0)
  5933. Museum.Position = UDim2.new(0.00999999978, 0, 0.800000012, 0)
  5934. Museum.Size = UDim2.new(0, 120, 0, 30)
  5935. Museum.Font = Enum.Font.Cartoon
  5936. Museum.Text = "Museum "
  5937. Museum.TextScaled = true
  5938. Museum.TextSize = 14
  5939. Museum.TextWrapped = true
  5940. Museum.MouseButton1Down:connect(function()
  5941. for i = 1,45 do
  5942. wait(.08)
  5943. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1063.02, 117.562, 1218.757) + Vector3.new(1,0,0)
  5944. end
  5945. end)
  5946. MuseumRoof.Name = "Museum Roof"
  5947. MuseumRoof.Parent = TPS
  5948. MuseumRoof.BackgroundColor3 = Color3.new(1, 0, 0)
  5949. MuseumRoof.Position = UDim2.new(0.280000001, 0, 0.800000012, 0)
  5950. MuseumRoof.Size = UDim2.new(0, 120, 0, 30)
  5951. MuseumRoof.Font = Enum.Font.Cartoon
  5952. MuseumRoof.Text = "Museum Roof"
  5953. MuseumRoof.TextScaled = true
  5954. MuseumRoof.TextSize = 14
  5955. MuseumRoof.TextWrapped = true
  5956. MuseumRoof.MouseButton1Down:connect(function()
  5957. for i = 1,45 do
  5958. wait(.08)
  5959. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1078.45, 153.904, 1176.52) + Vector3.new(1,0,0)
  5960. end
  5961. end)
  5962. AK47.Name = "AK47"
  5963. AK47.Parent = TPS
  5964. AK47.BackgroundColor3 = Color3.new(1, 0, 0)
  5965. AK47.Position = UDim2.new(0.825999975, 0, 0.0422770977, 0)
  5966. AK47.Size = UDim2.new(0, 120, 0, 30)
  5967. AK47.Font = Enum.Font.Cartoon
  5968. AK47.Text = "AK47"
  5969. AK47.TextScaled = true
  5970. AK47.TextSize = 14
  5971. AK47.TextWrapped = true
  5972. AK47.MouseButton1Down:connect(function()
  5973. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  5974.  
  5975. a = Instance.new("Part", workspace)
  5976. a.Anchored = true
  5977. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  5978. a.CanCollide = false
  5979.  
  5980. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  5981. if v.Name == "ShootingRange" then
  5982. for a, b in pairs(v:GetChildren()) do
  5983. if b:IsA("StringValue") then
  5984. if b.Value == "AK47" then
  5985. v.CFrame = CFrame.new(hit)
  5986. end
  5987. end
  5988. end
  5989. end
  5990. end
  5991. end)
  5992. AutoArrest.Name = "Auto Arrest"
  5993. AutoArrest.Parent = TPS
  5994. AutoArrest.BackgroundColor3 = Color3.new(1, 0, 0)
  5995. AutoArrest.Position = UDim2.new(0.548999965, 0, 0.651425719, 0)
  5996. AutoArrest.Size = UDim2.new(0, 120, 0, 30)
  5997. AutoArrest.Font = Enum.Font.Cartoon
  5998. AutoArrest.Text = "Auto Arrest"
  5999. AutoArrest.TextScaled = true
  6000. AutoArrest.TextSize = 14
  6001. AutoArrest.TextWrapped = true
  6002. AutoArrest.MouseButton1Down:connect(function()
  6003. local Player = game.Players.LocalPlayer
  6004. wait(0.5)
  6005. for i,v in pairs(game.Teams.Criminal:GetPlayers()) do
  6006. repeat
  6007. wait()
  6008. Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  6009. until v.Team.Name ~= "Criminal"
  6010. end
  6011.  
  6012. end)
  6013. Btools.Name = "Btools"
  6014. Btools.Parent = TPS
  6015. Btools.BackgroundColor3 = Color3.new(1, 0, 0)
  6016. Btools.Position = UDim2.new(0.825999975, 0, 0.347498, 0)
  6017. Btools.Size = UDim2.new(0, 120, 0, 30)
  6018. Btools.Font = Enum.Font.Cartoon
  6019. Btools.Text = "Btools"
  6020. Btools.TextScaled = true
  6021. Btools.TextSize = 14
  6022. Btools.TextWrapped = true
  6023. Btools.MouseButton1Down:connect(function()
  6024. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  6025. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  6026. if child.ClassName == "Part" then
  6027. child.Locked = false
  6028. end
  6029. if child.ClassName == "MeshPart" then
  6030. child.Locked = false
  6031. end
  6032. if child.ClassName == "UnionOperation" then
  6033. child.Locked = false
  6034. end
  6035. if child.ClassName == "Model" then
  6036. for index, chil in pairs(child:GetChildren()) do
  6037. if chil.ClassName == "Part" then
  6038. chil.Locked = false
  6039. end
  6040. if chil.ClassName == "MeshPart" then
  6041. chil.Locked = false
  6042. end
  6043. if chil.ClassName == "UnionOperation" then
  6044. chil.Locked = false
  6045. end
  6046. if chil.ClassName == "Model" then
  6047. for index, childe in pairs(chil:GetChildren()) do
  6048. if childe.ClassName == "Part" then
  6049. childe.Locked = false
  6050. end
  6051. if childe.ClassName == "MeshPart" then
  6052. childe.Locked = false
  6053. end
  6054. if childe.ClassName == "UnionOperation" then
  6055. childe.Locked = false
  6056. end
  6057. if childe.ClassName == "Model" then
  6058. for index, childeo in pairs(childe:GetChildren()) do
  6059. if childeo.ClassName == "Part" then
  6060. childeo.Locked = false
  6061. end
  6062. if childeo.ClassName == "MeshPart" then
  6063. childeo.Locked = false
  6064. end
  6065. if childeo.ClassName == "UnionOperation" then
  6066. childeo.Locked = false
  6067. end
  6068. if childeo.ClassName == "Model" then
  6069. end
  6070. end
  6071. end
  6072. end
  6073. end
  6074. end
  6075. end
  6076. end
  6077. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  6078. c.BinType = Enum.BinType.Hammer
  6079. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  6080. c.BinType = Enum.BinType.Clone
  6081. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  6082. c.BinType = Enum.BinType.Grab
  6083. end)
  6084. Gravity.Name = "Gravity"
  6085. Gravity.Parent = TPS
  6086. Gravity.BackgroundColor3 = Color3.new(1, 0, 0)
  6087. Gravity.Position = UDim2.new(0.549000025, 0, 0.0450000167, 0)
  6088. Gravity.Size = UDim2.new(0, 120, 0, 30)
  6089. Gravity.Font = Enum.Font.Cartoon
  6090. Gravity.Text = "Gravity"
  6091. Gravity.TextScaled = true
  6092. Gravity.TextSize = 14
  6093. Gravity.TextWrapped = true
  6094. Gravity.MouseButton1Down:connect(function()
  6095. if Gravity == true then
  6096. Gravity = false
  6097. game.workspace.Gravity = 196.2
  6098. else
  6099. Gravity = true
  6100. game.workspace.Gravity = 45
  6101. end
  6102. end)
  6103. Infinitenitro.Name = "Infinitenitro"
  6104. Infinitenitro.Parent = TPS
  6105. Infinitenitro.BackgroundColor3 = Color3.new(1, 0, 0)
  6106. Infinitenitro.Position = UDim2.new(0.549999952, 0, 0.347498, 0)
  6107. Infinitenitro.Size = UDim2.new(0, 120, 0, 30)
  6108. Infinitenitro.Font = Enum.Font.Cartoon
  6109. Infinitenitro.Text = "Infinite Nitro"
  6110. Infinitenitro.TextScaled = true
  6111. Infinitenitro.TextSize = 14
  6112. Infinitenitro.TextWrapped = true
  6113. Infinitenitro.MouseButton1Down:connect(function()
  6114. game:GetService('Players').LocalPlayer.PlayerGui.MainGui.Nitro.Name = "69696969"
  6115. game:GetService('Players').LocalPlayer.PlayerGui.ProductGui.Nitro:ClearAllChildren()
  6116. end)
  6117. M4A4.Name = "M4A4"
  6118. M4A4.Parent = TPS
  6119. M4A4.BackgroundColor3 = Color3.new(1, 0, 0)
  6120. M4A4.Position = UDim2.new(0.826999903, 0, 0.651425719, 0)
  6121. M4A4.Size = UDim2.new(0, 120, 0, 30)
  6122. M4A4.Font = Enum.Font.Cartoon
  6123. M4A4.Text = "M4A4"
  6124. M4A4.TextScaled = true
  6125. M4A4.TextSize = 14
  6126. M4A4.TextWrapped = true
  6127. M4A4.MouseButton1Down:connect(function()
  6128. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  6129.  
  6130. a = Instance.new("Part", workspace)
  6131. a.Anchored = true
  6132. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  6133. a.CanCollide = false
  6134.  
  6135. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  6136. if v.Name == "Station" then
  6137. for a, b in pairs(v:GetChildren()) do
  6138. if b:IsA("StringValue") then
  6139. if b.Value == "RifleSWAT" then
  6140. v.CFrame = CFrame.new(hit)
  6141. end
  6142. end
  6143. end
  6144. end
  6145. end
  6146. end)
  6147. NoClipB.Name = "NoClip[B]"
  6148. NoClipB.Parent = TPS
  6149. NoClipB.BackgroundColor3 = Color3.new(1, 0, 0)
  6150. NoClipB.Position = UDim2.new(0.550000012, 0, 0.500831306, 0)
  6151. NoClipB.Size = UDim2.new(0, 120, 0, 30)
  6152. NoClipB.Font = Enum.Font.Cartoon
  6153. NoClipB.Text = "NoClip[B]"
  6154. NoClipB.TextScaled = true
  6155. NoClipB.TextSize = 14
  6156. NoClipB.TextWrapped = true
  6157. NoClipB.MouseButton1Down:connect(function()
  6158. local noclipplayer = game:GetService("Players").LocalPlayer
  6159. local noclipmouse = noclipplayer:GetMouse()
  6160.  
  6161. local donoclip = false
  6162. local noclip = false
  6163.  
  6164. function b_noclip(key)
  6165. if (key == "b") then
  6166. if noclip == false then
  6167. donoclip = true
  6168.  
  6169. noclip = true
  6170. elseif noclip == true then
  6171. donoclip = false
  6172.  
  6173. noclip = false
  6174. end
  6175. end
  6176. end
  6177.  
  6178. noclipmouse.KeyDown:connect(b_noclip)
  6179.  
  6180. game:GetService("Players").LocalPlayer.Character.Head.Touched:connect(function(obj)
  6181. if obj ~= workspace.Terrain then
  6182. if donoclip == true then
  6183. obj.CanCollide = false
  6184. else
  6185. obj.CanCollide = true
  6186. end
  6187. end
  6188. end)
  6189. end)
  6190. Pistol.Name = "Pistol"
  6191. Pistol.Parent = TPS
  6192. Pistol.BackgroundColor3 = Color3.new(1, 0, 0)
  6193. Pistol.Position = UDim2.new(0.826000035, 0, 0.798020065, 0)
  6194. Pistol.Size = UDim2.new(0, 120, 0, 30)
  6195. Pistol.Font = Enum.Font.Cartoon
  6196. Pistol.Text = "Pistol"
  6197. Pistol.TextScaled = true
  6198. Pistol.TextSize = 14
  6199. Pistol.TextWrapped = true
  6200. Pistol.MouseButton1Down:connect(function()
  6201. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  6202.  
  6203. a = Instance.new("Part", workspace)
  6204. a.Anchored = true
  6205. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  6206. a.CanCollide = false
  6207.  
  6208. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  6209. if v.Name == "Station" then
  6210. for a, b in pairs(v:GetChildren()) do
  6211. if b:IsA("StringValue") then
  6212. if b.Value == "Pistol" then
  6213. v.CFrame = CFrame.new(hit)
  6214. end
  6215. end
  6216. end
  6217. end
  6218. end
  6219. end)
  6220. RemoveBuildings.Name = "RemoveBuildings"
  6221. RemoveBuildings.Parent = TPS
  6222. RemoveBuildings.BackgroundColor3 = Color3.new(1, 0, 0)
  6223. RemoveBuildings.Position = UDim2.new(0.826499999, 0, 0.199626505, 0)
  6224. RemoveBuildings.Size = UDim2.new(0, 120, 0, 30)
  6225. RemoveBuildings.Font = Enum.Font.Cartoon
  6226. RemoveBuildings.Text = "Remove Buildings"
  6227. RemoveBuildings.TextScaled = true
  6228. RemoveBuildings.TextSize = 14
  6229. RemoveBuildings.TextWrapped = true
  6230. RemoveBuildings.MouseButton1Down:connect(function()
  6231. game:GetService("Workspace").Buildings:Destroy()
  6232. end)
  6233. Removeall.Name = "Removeall"
  6234. Removeall.Parent = TPS
  6235. Removeall.BackgroundColor3 = Color3.new(1, 0, 0)
  6236. Removeall.Position = UDim2.new(0.549000025, 0, 0.20162648, 0)
  6237. Removeall.Size = UDim2.new(0, 120, 0, 30)
  6238. Removeall.Font = Enum.Font.Cartoon
  6239. Removeall.Text = "RemoveAll"
  6240. Removeall.TextScaled = true
  6241. Removeall.TextSize = 14
  6242. Removeall.TextWrapped = true
  6243. Removeall.MouseButton1Down:connect(function()
  6244. game.Workspace.Cells:Remove()
  6245.  
  6246. game.Workspace.Museum.CaseLasers:Remove()
  6247.  
  6248. game.Workspace.Museum.Lights:Remove()
  6249.  
  6250. game.Workspace.Museum.Doors:Remove()
  6251.  
  6252. game.Workspace.EscapeRoutes:Remove()
  6253.  
  6254. for i,v in pairs(workspace.Doors:GetChildren()) do
  6255. v:Destroy()
  6256.  
  6257. end
  6258. end)
  6259.  
  6260. Removeall.MouseButton1Down:connect(function()
  6261. local banklasers = game:GetService("Workspace").Banks:GetChildren()
  6262. banklasers[1].Lasers:Destroy()
  6263. end)
  6264.  
  6265. Removeall.MouseButton1Down:connect(function()
  6266. local jewelry = game:GetService("Workspace").Jewelrys:GetChildren()
  6267.  
  6268. for i = 1,4 do
  6269. local xd = jewelry[1].Model.BarbedWire
  6270. xd:Destroy()
  6271. end
  6272. end)
  6273.  
  6274. Removeall.MouseButton1Down:connect(function()
  6275. local banklasers = game:GetService("Workspace").Banks:GetChildren()
  6276. banklasers[1].Door.Model:Destroy()
  6277. end)
  6278. SHOTGUN.Name = "SHOTGUN"
  6279. SHOTGUN.Parent = TPS
  6280. SHOTGUN.BackgroundColor3 = Color3.new(1, 0, 0)
  6281. SHOTGUN.Position = UDim2.new(0.825999975, 0, 0.500108421, 0)
  6282. SHOTGUN.Size = UDim2.new(0, 120, 0, 30)
  6283. SHOTGUN.Font = Enum.Font.Cartoon
  6284. SHOTGUN.Text = "SHOTGUN"
  6285. SHOTGUN.TextScaled = true
  6286. SHOTGUN.TextSize = 14
  6287. SHOTGUN.TextWrapped = true
  6288. SHOTGUN.MouseButton1Down:connect(function()
  6289. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  6290.  
  6291. a = Instance.new("Part", workspace)
  6292. a.Anchored = true
  6293. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  6294. a.CanCollide = false
  6295.  
  6296. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  6297. if v.Name == "Station" then
  6298. for a, b in pairs(v:GetChildren()) do
  6299. if b:IsA("StringValue") then
  6300. if b.Value == "Shotgun" then
  6301. v.CFrame = CFrame.new(hit)
  6302. end
  6303. end
  6304. end
  6305. end
  6306. end
  6307. end)
  6308. WalkSpeed.Name = "WalkSpeed"
  6309. WalkSpeed.Parent = TPS
  6310. WalkSpeed.BackgroundColor3 = Color3.new(1, 0, 0)
  6311. WalkSpeed.Position = UDim2.new(0.548999965, 0, 0.800020099, 0)
  6312. WalkSpeed.Size = UDim2.new(0, 120, 0, 30)
  6313. WalkSpeed.Font = Enum.Font.Cartoon
  6314. WalkSpeed.Text = "WalkSpeed[X]"
  6315. WalkSpeed.TextScaled = true
  6316. WalkSpeed.TextSize = 14
  6317. WalkSpeed.TextWrapped = true
  6318. WalkSpeed.MouseButton1Down:connect(function()
  6319. local walkspeedplayer = game:GetService("Players").LocalPlayer
  6320. local walkspeedmouse = walkspeedplayer:GetMouse()
  6321.  
  6322. local walkspeedenabled = false
  6323.  
  6324. function x_walkspeed(key)
  6325. if (key == "x") then
  6326. if walkspeedenabled == false then
  6327. _G.WS = 200;
  6328. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  6329. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  6330. Humanoid.WalkSpeed = _G.WS;
  6331. end)
  6332. Humanoid.WalkSpeed = _G.WS;
  6333.  
  6334. walkspeedenabled = true
  6335. elseif walkspeedenabled == true then
  6336. _G.WS = 20;
  6337. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  6338. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  6339. Humanoid.WalkSpeed = _G.WS;
  6340. end)
  6341. Humanoid.WalkSpeed = _G.WS;
  6342.  
  6343. walkspeedenabled = false
  6344. end
  6345. end
  6346. end
  6347.  
  6348. walkspeedmouse.KeyDown:connect(x_walkspeed)
  6349.  
  6350. end)
  6351. AutoROB.Name = "AutoROB"
  6352. AutoROB.Parent = Main
  6353. AutoROB.BackgroundColor3 = Color3.new(1, 1, 0)
  6354. AutoROB.BackgroundTransparency = 1
  6355. AutoROB.Position = UDim2.new(0, 0, 0.186666667, 0)
  6356. AutoROB.Size = UDim2.new(0, 550, 0, 244)
  6357. AutoROB.Visible = false
  6358.  
  6359. BankAutoRobBtn.Name = "BankAutoRobBtn"
  6360. BankAutoRobBtn.Parent = AutoROB
  6361. BankAutoRobBtn.BackgroundColor3 = Color3.new(1, 0, 0)
  6362. BankAutoRobBtn.Position = UDim2.new(0.0145454546, 0, 0.0491803288, 0)
  6363. BankAutoRobBtn.Size = UDim2.new(0, 525, 0, 30)
  6364. BankAutoRobBtn.Font = Enum.Font.ArialBold
  6365. BankAutoRobBtn.Text = "Bank Auto Rob"
  6366. BankAutoRobBtn.TextScaled = true
  6367. BankAutoRobBtn.TextSize = 14
  6368. BankAutoRobBtn.TextWrapped = true
  6369. BankAutoRobBtn.MouseButton1Click:connect(function()
  6370. local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  6371. local Info = Bank.Extra.Sign
  6372. if Info.Decal.Transparency == 0 then
  6373. game:GetService("StarterGui"):SetCore("SendNotification",{
  6374. Title = "Bank is closed!",
  6375. Text = "You need to wait for the bank to open!",
  6376. Duration = 7,
  6377. Button1 = "Dismiss",
  6378. })
  6379. return
  6380. end
  6381. local bankpos = Vector3.new(Info.Position.X,0,Info.Position.Z)
  6382. local root = plr.Character.HumanoidRootPart
  6383. local plrpos = Vector3.new(root.Position.X,0,root.Position.Z)
  6384.  
  6385. if (bankpos - plrpos).magnitude > 150 then
  6386. local cb = Instance.new"BindableFunction"
  6387.  
  6388. cb.OnInvoke = function(arg)
  6389. if arg == "Teleport" then
  6390. JailbreakTp(10, 18, 784)
  6391. end
  6392. end
  6393.  
  6394. game:GetService("StarterGui"):SetCore("SendNotification",{
  6395. Title = "You are too far!",
  6396. Text = "You need to get closer to the bank (use tp)",
  6397. Duration = 7,
  6398. Button1 = "Dismiss",
  6399. Button2 = "Teleport",
  6400. Callback = cb
  6401. })
  6402. else
  6403. RobTheBank()
  6404. end
  6405. end)
  6406. JewelryStatus.Name = "JewelryStatus"
  6407. JewelryStatus.Parent = AutoROB
  6408. JewelryStatus.BackgroundColor3 = Color3.new(0, 0.384314, 1)
  6409. JewelryStatus.Position = UDim2.new(0.0149999997, 0, 0.86007303, 0)
  6410. JewelryStatus.Size = UDim2.new(0, 101, 0, 26)
  6411. JewelryStatus.Font = Enum.Font.SourceSans
  6412. JewelryStatus.Text = "Jewelry:"
  6413. JewelryStatus.TextColor3 = Color3.new(0, 0, 0)
  6414. JewelryStatus.TextSize = 14
  6415.  
  6416. BankStatus.Name = "BankStatus"
  6417. BankStatus.Parent = AutoROB
  6418. BankStatus.BackgroundColor3 = Color3.new(0, 0.384314, 1)
  6419. BankStatus.Position = UDim2.new(0.300000012, 0, 0.86007303, 0)
  6420. BankStatus.Size = UDim2.new(0, 101, 0, 26)
  6421. BankStatus.Font = Enum.Font.SourceSans
  6422. BankStatus.Text = "Bank:"
  6423. BankStatus.TextColor3 = Color3.new(0, 0, 0)
  6424. BankStatus.TextSize = 14
  6425.  
  6426. Lol.Name = "Lol"
  6427. Lol.Parent = Main
  6428. Lol.Active = true
  6429. Lol.BackgroundColor3 = Color3.new(1, 0, 0)
  6430. Lol.Position = UDim2.new(0, 0, -0.193333328, 0)
  6431. Lol.Size = UDim2.new(0, 500, 0, 50)
  6432. Lol.Font = Enum.Font.Antique
  6433. Lol.Text = "Jailbreaker V4.2"
  6434. Lol.TextColor3 = Color3.new(0, 0, 0)
  6435. Lol.TextScaled = true
  6436. Lol.TextSize = 14
  6437. Lol.TextWrapped = true
  6438.  
  6439. Close.Name = "Close"
  6440. Close.Parent = Main
  6441. Close.BackgroundColor3 = Color3.new(1, 0, 0)
  6442. Close.Position = UDim2.new(0.90109092, 0, -0.193333328, 0)
  6443. Close.Size = UDim2.new(0, 54, 0, 50)
  6444. Close.Font = Enum.Font.Cartoon
  6445. Close.Text = "X"
  6446. Close.TextColor3 = Color3.new(0, 0, 0)
  6447. Close.TextScaled = true
  6448. Close.TextSize = 14
  6449. Close.TextWrapped = true
  6450. Close.MouseButton1Down:connect(function()
  6451. Open.Visible = true
  6452. Main.Visible = false
  6453. end)
  6454. PLTP.Name = "PLTP"
  6455. PLTP.Parent = Main
  6456. PLTP.Active = true
  6457. PLTP.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  6458. PLTP.Position = UDim2.new(0, 0, 0.176666662, 0)
  6459. PLTP.Size = UDim2.new(0, 550, 0, 247)
  6460. PLTP.Visible = false
  6461.  
  6462. PlayerTP_Input.Name = "PlayerTP_Input"
  6463. PlayerTP_Input.Parent = PLTP
  6464. PlayerTP_Input.BackgroundColor3 = Color3.new(1, 0, 0)
  6465. PlayerTP_Input.Position = UDim2.new(0.0945454538, 0, 0.125506073, 0)
  6466. PlayerTP_Input.Size = UDim2.new(0, 427, 0, 50)
  6467. PlayerTP_Input.Font = Enum.Font.ArialBold
  6468. PlayerTP_Input.Text = "Player Name"
  6469. PlayerTP_Input.TextSize = 20
  6470. PlayerTP_Input.TextWrapped = true
  6471.  
  6472. PlayerTP_Teleport.Name = "PlayerTP_Teleport"
  6473. PlayerTP_Teleport.Parent = PLTP
  6474. PlayerTP_Teleport.BackgroundColor3 = Color3.new(0.4, 0.0980392, 1)
  6475. PlayerTP_Teleport.Position = UDim2.new(0.0945454538, 0, 0.429149806, 0)
  6476. PlayerTP_Teleport.Size = UDim2.new(0, 427, 0, 50)
  6477. PlayerTP_Teleport.Font = Enum.Font.SourceSansBold
  6478. PlayerTP_Teleport.Text = "Teleport To Player"
  6479. PlayerTP_Teleport.TextScaled = true
  6480. PlayerTP_Teleport.TextSize = 14
  6481. PlayerTP_Teleport.TextWrapped = true
  6482.  
  6483. PlayerTeleport.Name = "PlayerTeleport"
  6484. PlayerTeleport.Parent = Main
  6485. PlayerTeleport.BackgroundColor3 = Color3.new(1, 0, 0)
  6486. PlayerTeleport.Position = UDim2.new(0.379999995, 0, 0.0500000007, 0)
  6487. PlayerTeleport.Size = UDim2.new(0, 120, 0, 30)
  6488. PlayerTeleport.Font = Enum.Font.Cartoon
  6489. PlayerTeleport.Text = "Player TP"
  6490. PlayerTeleport.TextColor3 = Color3.new(0, 0, 0)
  6491. PlayerTeleport.TextScaled = true
  6492. PlayerTeleport.TextSize = 14
  6493. PlayerTeleport.TextWrapped = true
  6494. PlayerTeleport.MouseButton1Down:connect(function()
  6495. TPS.Visible = false
  6496. PLTP.Visible = true
  6497. AutoROB.Visible = false
  6498. end)
  6499. Open.Name = "Open"
  6500. Open.Parent = JailbreakerV42
  6501. Open.BackgroundColor3 = Color3.new(1, 0, 0)
  6502. Open.BorderColor3 = Color3.new(1, 0, 0)
  6503. Open.BorderSizePixel = 2
  6504. Open.Position = UDim2.new(0.5, 0, 0, 0)
  6505. Open.Size = UDim2.new(0, 100, 0, 30)
  6506. Open.Visible = false
  6507. Open.Font = Enum.Font.Cartoon
  6508. Open.Text = "Open"
  6509. Open.TextScaled = true
  6510. Open.TextSize = 14
  6511. Open.TextWrapped = true
  6512. Open.MouseButton1Down:connect(function()
  6513. Open.Visible = false
  6514. Main.Visible = true
  6515. end)
  6516. -- Scripts:
  6517. --AutoRob stuff--
  6518. local DuffelBag = game:GetService("MarketplaceService"):PlayerOwnsAsset(plr, 2219040)
  6519. local BankAutoRob = {
  6520. {
  6521. Pos = {51, 18.06, 856.5},
  6522. Yield = 2,
  6523. Status = "Starting the robbery"
  6524. },
  6525. {
  6526. Pos = {29.71, 0.73, 815.25},
  6527. Yield = 15,
  6528. Status = "Opening the vault"
  6529. },
  6530. {
  6531. Pos = {18.37, 0.7659, 822.25},
  6532. Yield = DuffelBag and 50 or 49,
  6533. Status = "Collecting $$$"
  6534. },
  6535. {
  6536. Pos = {10, 18, 784},
  6537. Status = "Finishing the robbery"
  6538. }
  6539. }
  6540.  
  6541. local function Tp(...)
  6542. local char = plr.Character
  6543. for i=1,2 do
  6544. wait()
  6545. char:WaitForChild'HumanoidRootPart'.CFrame = CFrame.new(...)
  6546. end
  6547. end
  6548.  
  6549. function RobTheBank()
  6550. for _,v in pairs(BankAutoRob) do
  6551. Tp(unpack(v.Pos))
  6552. wait(v.Yield)
  6553. end
  6554. end
  6555.  
  6556. --Bank notification--
  6557. pcall(function()
  6558. local Bank = workspace:FindFirstChild("Banks"):GetChildren()[1]
  6559. local Info = Bank.Extra.Sign.Decal
  6560. Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  6561. if Info.Transparency ~= 0 then
  6562. BankStatus.Text = "Bank:Open"
  6563. BankStatus.TextColor3 = Color3.new(0,1,0)
  6564. BankAutoRobBtn.BackgroundColor3 = Color3.new(0,1,0)
  6565. local cb = Instance.new("BindableFunction")
  6566. cb.OnInvoke = function(arg)
  6567. if arg == "Teleport" then
  6568. JailbreakTp(10, 18, 784)
  6569. elseif arg == "AutoRob" then
  6570. RobTheBank()
  6571. end
  6572. end
  6573. game:GetService("StarterGui"):SetCore("SendNotification",{
  6574. Title = "Bank is ready!",
  6575. Text = "Bank is ready!",
  6576. Duration = 15,
  6577. Button1 = "Dismiss",
  6578. Button2 = (Vector3.new(Info.Parent.Position.X,0,Info.Parent.Position.Z) - Vector3.new(plr.Character.HumanoidRootPart.Position.X,0,plr.Character.HumanoidRootPart.Position.Z)).magnitude < 150 and "AutoRob" or "Teleport",
  6579. Callback = cb
  6580. })
  6581. else
  6582. BankStatus.Text = "Bank:Closed"
  6583. BankStatus.TextColor3 = Color3.new(1,0,0)
  6584. BankAutoRobBtn.BackgroundColor3 = Color3.new(1,0,0)
  6585. end
  6586. end)
  6587. BankStatus.Text = Info.Transparency == 0 and "Bank:Closed" or "Bank:Open"
  6588. BankStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  6589. BankAutoRobBtn.BackgroundColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  6590. end)
  6591. --Jewelry notification--
  6592. pcall(function()
  6593. local Jewelry = workspace:FindFirstChild("Jewelrys"):GetChildren()[1]
  6594. local Info = Jewelry.Extra.Sign.Decal
  6595. Info:GetPropertyChangedSignal("Transparency"):Connect(function()
  6596. if Info.Transparency ~= 0 then
  6597. JewelryStatus.Text = "Jewelry:Open"
  6598. JewelryStatus.TextColor3 = Color3.new(0,1,0)
  6599. BankStatus.TextColor3 = Color3.new(0,1,0)
  6600. local cb = Instance.new("BindableFunction")
  6601. cb.OnInvoke = function(arg)
  6602. if arg == "Teleport" then
  6603. JailbreakTp(142, 18, 1365)
  6604. end
  6605. end
  6606. game:GetService("StarterGui"):SetCore("SendNotification",{
  6607. Title = "Jewelry is ready!",
  6608. Text = "Jewelry is ready!",
  6609. Duration = 15,
  6610. Button1 = "Dismiss",
  6611. Button2 = "Teleport",
  6612. Callback = cb
  6613. })
  6614. else
  6615. JewelryStatus.Text = "Jewelry:Closed"
  6616. JewelryStatus.TextColor3 = Color3.new(1,0,0)
  6617. end
  6618. end)
  6619. JewelryStatus.Text = Info.Transparency == 0 and "Jewelry:Closed" or "Jewelry:Open"
  6620. JewelryStatus.TextColor3 = Info.Transparency == 0 and Color3.new(1,0,0) or Color3.new(0,1,0)
  6621. end)
  6622. end)
  6623.  
  6624. Cms1.Name = "Cms1"
  6625. Cms1.Parent = GUI
  6626. Cms1.BackgroundColor3 = Color3.new(0, 0, 1)
  6627. Cms1.Position = UDim2.new(-5.96046448e-08, 0, 0.644230783, 0)
  6628. Cms1.Size = UDim2.new(0, 137, 0, 50)
  6629. Cms1.Font = Enum.Font.SourceSans
  6630. Cms1.Text = "Comming Soon.."
  6631. Cms1.TextColor3 = Color3.new(1, 1, 1)
  6632. Cms1.TextSize = 14
  6633.  
  6634. GuiUpline.Name = "GuiUpline"
  6635. GuiUpline.Parent = GUI
  6636. GuiUpline.BackgroundColor3 = Color3.new(0, 0, 1)
  6637. GuiUpline.Position = UDim2.new(-0.00263847131, 0, 0, 0)
  6638. GuiUpline.Size = UDim2.new(0, 601, 0, 35)
  6639. GuiUpline.Font = Enum.Font.SourceSans
  6640. GuiUpline.Text = "Ultimate Troll Gui"
  6641. GuiUpline.TextColor3 = Color3.new(1, 1, 1)
  6642. GuiUpline.TextScaled = true
  6643. GuiUpline.TextSize = 14
  6644. GuiUpline.TextWrapped = true
  6645.  
  6646. GuiDownline.Name = "GuiDownline"
  6647. GuiDownline.Parent = GUI
  6648. GuiDownline.BackgroundColor3 = Color3.new(0, 0, 1)
  6649. GuiDownline.Position = UDim2.new(0, 0, 0.936943412, 0)
  6650. GuiDownline.Size = UDim2.new(0, 599, 0, 35)
  6651. GuiDownline.Font = Enum.Font.SourceSans
  6652. GuiDownline.Text = ""
  6653. GuiDownline.TextColor3 = Color3.new(0, 0, 0)
  6654. GuiDownline.TextSize = 14
  6655.  
  6656. Cms3.Name = "Cms3"
  6657. Cms3.Parent = GUI
  6658. Cms3.BackgroundColor3 = Color3.new(0, 0, 1)
  6659. Cms3.Position = UDim2.new(0.385466516, 0, 0.644230783, 0)
  6660. Cms3.Size = UDim2.new(0, 137, 0, 50)
  6661. Cms3.Font = Enum.Font.SourceSans
  6662. Cms3.Text = "Comming Soon.."
  6663. Cms3.TextColor3 = Color3.new(1, 1, 1)
  6664. Cms3.TextSize = 14
  6665.  
  6666. CMS2.Name = "CMS2"
  6667. CMS2.Parent = GUI
  6668. CMS2.BackgroundColor3 = Color3.new(0, 0, 1)
  6669. CMS2.Position = UDim2.new(0.770408869, 0, 0.643252373, 0)
  6670. CMS2.Size = UDim2.new(0, 137, 0, 50)
  6671. CMS2.Font = Enum.Font.SourceSans
  6672. CMS2.Text = "Comming Soon.."
  6673. CMS2.TextColor3 = Color3.new(1, 1, 1)
  6674. CMS2.TextSize = 14
  6675.  
  6676. Jailbreaker_2.Name = "Jailbreaker"
  6677. Jailbreaker_2.Parent = GUI
  6678. Jailbreaker_2.BackgroundColor3 = Color3.new(0, 0, 1)
  6679. Jailbreaker_2.Position = UDim2.new(0.382303834, 0, 0.419871807, 0)
  6680. Jailbreaker_2.Size = UDim2.new(0, 137, 0, 50)
  6681. Jailbreaker_2.Font = Enum.Font.SourceSans
  6682. Jailbreaker_2.Text = "Comming Soon.."
  6683. Jailbreaker_2.TextColor3 = Color3.new(1, 1, 1)
  6684. Jailbreaker_2.TextSize = 14
  6685.  
  6686. Cms4.Name = "Cms4"
  6687. Cms4.Parent = GUI
  6688. Cms4.BackgroundColor3 = Color3.new(0, 0, 1)
  6689. Cms4.Position = UDim2.new(0.769616008, 0, 0.419871807, 0)
  6690. Cms4.Size = UDim2.new(0, 137, 0, 50)
  6691. Cms4.Font = Enum.Font.SourceSans
  6692. Cms4.Text = "Comming Soon.."
  6693. Cms4.TextColor3 = Color3.new(1, 1, 1)
  6694. Cms4.TextSize = 14
  6695.  
  6696. FeGui.Name = "Fe Gui"
  6697. FeGui.Parent = GUI
  6698. FeGui.BackgroundColor3 = Color3.new(0, 0, 1)
  6699. FeGui.Position = UDim2.new(0.771285474, 0, 0.172503382, 0)
  6700. FeGui.Size = UDim2.new(0, 137, 0, 50)
  6701. FeGui.Font = Enum.Font.SourceSans
  6702. FeGui.Text = "Fe Gui"
  6703. FeGui.TextColor3 = Color3.new(1, 1, 1)
  6704. FeGui.TextSize = 25
  6705. FeGui.MouseButton1Down:connect(function()
  6706. --Created by MightyDantheman
  6707. local gui = Instance.new("ScreenGui",game.Players.LocalPlayer.PlayerGui)
  6708. gui.Name = "FeHaxGui"
  6709. local c = nil
  6710. x = Instance.new("ImageLabel",gui)
  6711. x.Active = true
  6712. x.AnchorPoint = Vector2.new(0, 0)
  6713. x.BackgroundColor3 = Color3.new(1,1,1)
  6714. x.BackgroundTransparency = 1
  6715. x.BorderColor3 = Color3.new(0.10588236153126,0.16470588743687,0.20784315466881)
  6716. x.BorderSizePixel = 1
  6717. x.Name = "Toolbar"
  6718. x.Position = UDim2.new(0.014598540961742,0,0.38571429252625,0)
  6719. x.Rotation = 0
  6720. x.Selectable = false
  6721. x.Size = UDim2.new(0.1094890460372,0,0.028571428731084,0)
  6722. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  6723. x.Visible = true
  6724. x.ZIndex = 1000
  6725. x.Archivable = true
  6726. x.ClipsDescendants = false
  6727. x.Draggable = true
  6728. x.Image = "rbxassetid://714167373"
  6729. x.ImageColor3 = Color3.new(1,1,1)
  6730. x.ImageRectOffset = Vector2.new(0, 0)
  6731. x.ImageRectSize = Vector2.new(0, 0)
  6732. x.ImageTransparency = 0
  6733. xScaleType = Enum.ScaleType.Stretch
  6734. xSliceCenter = Rect.new(0, 0, 0, 0)
  6735. x = Instance.new("ImageLabel",gui.Toolbar)
  6736. x.Active = false
  6737. x.AnchorPoint = Vector2.new(0, 0)
  6738. x.BackgroundColor3 = Color3.new(1,1,1)
  6739. x.BackgroundTransparency = 1
  6740. x.BorderColor3 = Color3.new(0.10588236153126,0.16470588743687,0.20784315466881)
  6741. x.BorderSizePixel = 1
  6742. x.Name = "Background"
  6743. x.Position = UDim2.new(0,0,0,0)
  6744. x.Rotation = 0
  6745. x.Selectable = false
  6746. x.Size = UDim2.new(0.99990332126617,0,11.125714302063,0)
  6747. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  6748. x.Visible = true
  6749. x.ZIndex = 1
  6750. x.Archivable = true
  6751. x.ClipsDescendants = false
  6752. x.Draggable = false
  6753. x.Image = "rbxassetid://714152985"
  6754. x.ImageColor3 = Color3.new(1,1,1)
  6755. x.ImageRectOffset = Vector2.new(0, 0)
  6756. x.ImageRectSize = Vector2.new(0, 0)
  6757. x.ImageTransparency = 0
  6758. xScaleType = Enum.ScaleType.Stretch
  6759. xSliceCenter = Rect.new(0, 0, 0, 0)
  6760. x = Instance.new("TextButton",gui.Toolbar.Background)
  6761. x.Active = true
  6762. x.AnchorPoint = Vector2.new(0, 0)
  6763. x.BackgroundColor3 = Color3.new(0.33333334326744,0,0)
  6764. x.BackgroundTransparency = 0
  6765. x.BorderColor3 = Color3.new(0.94117653369904,0,0)
  6766. x.BorderSizePixel = 2
  6767. x.Name = "God"
  6768. x.Position = UDim2.new(0.066660225391388,0,0.26971429586411,0)
  6769. x.Rotation = 0
  6770. x.Selectable = true
  6771. x.Size = UDim2.new(0.59994196891785,0,0.089904762804508,0)
  6772. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  6773. x.Style = Enum.ButtonStyle.Custom
  6774. x.Visible = true
  6775. x.ZIndex = 1
  6776. x.Archivable = true
  6777. x.ClipsDescendants = false
  6778. x.Draggable = false
  6779. x.Font = Enum.Font.SciFi
  6780. x.FontSize = Enum.FontSize.Size14
  6781. x.Text = "God"
  6782. x.TextColor3 = Color3.new(1,1,1)
  6783. x.TextScaled = true
  6784. x.TextSize = 14
  6785. x.TextStrokeColor3 = Color3.new(0,0,0)
  6786. x.TextStrokeTransparency = 1
  6787. x.TextTransparency = 0
  6788. x.TextWrapped = true
  6789. x.TextXAlignment = Enum.TextXAlignment.Center
  6790. x.TextYAlignment = Enum.TextYAlignment.Center
  6791. x = Instance.new("TextLabel",gui.Toolbar.Background)
  6792. x.Active = false
  6793. x.AnchorPoint = Vector2.new(0, 0)
  6794. x.BackgroundColor3 = Color3.new(0.33333334326744,0,0)
  6795. x.BackgroundTransparency = 0
  6796. x.BorderColor3 = Color3.new(0.94117653369904,0,0)
  6797. x.BorderSizePixel = 2
  6798. x.Name = "tGod"
  6799. x.Position = UDim2.new(0.73326241970062,0,0.26971429586411,0)
  6800. x.Rotation = 0
  6801. x.Selectable = false
  6802. x.Size = UDim2.new(0.199980661273,0,0.089904762804508,0)
  6803. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  6804. x.Visible = true
  6805. x.ZIndex = 1
  6806. x.Archivable = true
  6807. x.ClipsDescendants = false
  6808. x.Draggable = false
  6809. x.Font = Enum.Font.SciFi
  6810. x.FontSize = Enum.FontSize.Size14
  6811. x.Text = "Off"
  6812. x.TextColor3 = Color3.new(1,0,0)
  6813. x.TextScaled = true
  6814. x.TextSize = 14
  6815. x.TextStrokeColor3 = Color3.new(0,0,0)
  6816. x.TextStrokeTransparency = 1
  6817. x.TextTransparency = 0
  6818. x.TextWrapped = true
  6819. x.TextXAlignment = Enum.TextXAlignment.Center
  6820. x.TextYAlignment = Enum.TextYAlignment.Center
  6821. x = Instance.new("TextButton",gui.Toolbar.Background)
  6822. x.Active = true
  6823. x.AnchorPoint = Vector2.new(0, 0)
  6824. x.BackgroundColor3 = Color3.new(0.33333334326744,0,0)
  6825. x.BackgroundTransparency = 0
  6826. x.BorderColor3 = Color3.new(0.94117653369904,0,0)
  6827. x.BorderSizePixel = 2
  6828. x.Name = "LS"
  6829. x.Position = UDim2.new(0.066660225391388,0,0.40457144379616,0)
  6830. x.Rotation = 0
  6831. x.Selectable = true
  6832. x.Size = UDim2.new(0.59994196891785,0,0.089904762804508,0)
  6833. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  6834. x.Style = Enum.ButtonStyle.Custom
  6835. x.Visible = true
  6836. x.ZIndex = 1
  6837. x.Archivable = true
  6838. x.ClipsDescendants = false
  6839. x.Draggable = false
  6840. x.Font = Enum.Font.SciFi
  6841. x.FontSize = Enum.FontSize.Size14
  6842. x.Text = "Lag Switch"
  6843. x.TextColor3 = Color3.new(1,1,1)
  6844. x.TextScaled = true
  6845. x.TextSize = 14
  6846. x.TextStrokeColor3 = Color3.new(0,0,0)
  6847. x.TextStrokeTransparency = 1
  6848. x.TextTransparency = 0
  6849. x.TextWrapped = true
  6850. x.TextXAlignment = Enum.TextXAlignment.Center
  6851. x.TextYAlignment = Enum.TextYAlignment.Center
  6852. x = Instance.new("TextLabel",gui.Toolbar.Background)
  6853. x.Active = false
  6854. x.AnchorPoint = Vector2.new(0, 0)
  6855. x.BackgroundColor3 = Color3.new(0.33333334326744,0,0)
  6856. x.BackgroundTransparency = 0
  6857. x.BorderColor3 = Color3.new(0.94117653369904,0,0)
  6858. x.BorderSizePixel = 2
  6859. x.Name = "tLS"
  6860. x.Position = UDim2.new(0.73326241970062,0,0.40457144379616,0)
  6861. x.Rotation = 0
  6862. x.Selectable = false
  6863. x.Size = UDim2.new(0.199980661273,0,0.089904762804508,0)
  6864. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  6865. x.Visible = true
  6866. x.ZIndex = 1
  6867. x.Archivable = true
  6868. x.ClipsDescendants = false
  6869. x.Draggable = false
  6870. x.Font = Enum.Font.SciFi
  6871. x.FontSize = Enum.FontSize.Size14
  6872. x.Text = "Off"
  6873. x.TextColor3 = Color3.new(1,0,0)
  6874. x.TextScaled = true
  6875. x.TextSize = 14
  6876. x.TextStrokeColor3 = Color3.new(0,0,0)
  6877. x.TextStrokeTransparency = 1
  6878. x.TextTransparency = 0
  6879. x.TextWrapped = true
  6880. x.TextXAlignment = Enum.TextXAlignment.Center
  6881. x.TextYAlignment = Enum.TextYAlignment.Center
  6882. x = Instance.new("TextButton",gui.Toolbar.Background)
  6883. x.Active = true
  6884. x.AnchorPoint = Vector2.new(0, 0)
  6885. x.BackgroundColor3 = Color3.new(0.33333334326744,0,0)
  6886. x.BackgroundTransparency = 0
  6887. x.BorderColor3 = Color3.new(0.94117653369904,0,0)
  6888. x.BorderSizePixel = 2
  6889. x.Name = "Speed"
  6890. x.Position = UDim2.new(0.066660225391388,0,0.53942859172821,0)
  6891. x.Rotation = 0
  6892. x.Selectable = true
  6893. x.Size = UDim2.new(0.59994196891785,0,0.089904762804508,0)
  6894. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  6895. x.Style = Enum.ButtonStyle.Custom
  6896. x.Visible = true
  6897. x.ZIndex = 1
  6898. x.Archivable = true
  6899. x.ClipsDescendants = false
  6900. x.Draggable = false
  6901. x.Font = Enum.Font.SciFi
  6902. x.FontSize = Enum.FontSize.Size14
  6903. x.Text = "Speed"
  6904. x.TextColor3 = Color3.new(1,1,1)
  6905. x.TextScaled = true
  6906. x.TextSize = 14
  6907. x.TextStrokeColor3 = Color3.new(0,0,0)
  6908. x.TextStrokeTransparency = 1
  6909. x.TextTransparency = 0
  6910. x.TextWrapped = true
  6911. x.TextXAlignment = Enum.TextXAlignment.Center
  6912. x.TextYAlignment = Enum.TextYAlignment.Center
  6913. x = Instance.new("TextLabel",gui.Toolbar.Background)
  6914. x.Active = false
  6915. x.AnchorPoint = Vector2.new(0, 0)
  6916. x.BackgroundColor3 = Color3.new(0.33333334326744,0,0)
  6917. x.BackgroundTransparency = 0
  6918. x.BorderColor3 = Color3.new(0.94117653369904,0,0)
  6919. x.BorderSizePixel = 2
  6920. x.Name = "tFE"
  6921. x.Position = UDim2.new(0.73326241970062,0,0.13485714793205,0)
  6922. x.Rotation = 0
  6923. x.Selectable = false
  6924. x.Size = UDim2.new(0.199980661273,0,0.089904762804508,0)
  6925. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  6926. x.Visible = true
  6927. x.ZIndex = 1
  6928. x.Archivable = true
  6929. x.ClipsDescendants = false
  6930. x.Draggable = false
  6931. x.Font = Enum.Font.SciFi
  6932. x.FontSize = Enum.FontSize.Size14
  6933. x.Text = "Off"
  6934. x.TextColor3 = Color3.new(1,0,0)
  6935. x.TextScaled = true
  6936. x.TextSize = 14
  6937. x.TextStrokeColor3 = Color3.new(0,0,0)
  6938. x.TextStrokeTransparency = 1
  6939. x.TextTransparency = 0
  6940. x.TextWrapped = true
  6941. x.TextXAlignment = Enum.TextXAlignment.Center
  6942. x.TextYAlignment = Enum.TextYAlignment.Center
  6943. x = Instance.new("TextLabel",gui.Toolbar.Background)
  6944. x.Active = false
  6945. x.AnchorPoint = Vector2.new(0, 0)
  6946. x.BackgroundColor3 = Color3.new(0.33333334326744,0,0)
  6947. x.BackgroundTransparency = 0
  6948. x.BorderColor3 = Color3.new(0.94117653369904,0,0)
  6949. x.BorderSizePixel = 2
  6950. x.Name = "FE"
  6951. x.Position = UDim2.new(0.066660225391388,0,0.13485714793205,0)
  6952. x.Rotation = 0
  6953. x.Selectable = false
  6954. x.Size = UDim2.new(0.59994196891785,0,0.089904762804508,0)
  6955. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  6956. x.Visible = true
  6957. x.ZIndex = 1
  6958. x.Archivable = true
  6959. x.ClipsDescendants = false
  6960. x.Draggable = false
  6961. x.Font = Enum.Font.SciFi
  6962. x.FontSize = Enum.FontSize.Size14
  6963. x.Text = "FE Check:"
  6964. x.TextColor3 = Color3.new(0.49019610881805,0.49019610881805,0.49019610881805)
  6965. x.TextScaled = true
  6966. x.TextSize = 14
  6967. x.TextStrokeColor3 = Color3.new(0,0,0)
  6968. x.TextStrokeTransparency = 1
  6969. x.TextTransparency = 0
  6970. x.TextWrapped = true
  6971. x.TextXAlignment = Enum.TextXAlignment.Center
  6972. x.TextYAlignment = Enum.TextYAlignment.Center
  6973. x = Instance.new("TextLabel",gui.Toolbar.Background)
  6974. x.Active = false
  6975. x.AnchorPoint = Vector2.new(0, 0)
  6976. x.BackgroundColor3 = Color3.new(0.33333334326744,0,0)
  6977. x.BackgroundTransparency = 0
  6978. x.BorderColor3 = Color3.new(0.94117653369904,0,0)
  6979. x.BorderSizePixel = 2
  6980. x.Name = "tSpeed"
  6981. x.Position = UDim2.new(0.73326241970062,0,0.53942859172821,0)
  6982. x.Rotation = 0
  6983. x.Selectable = false
  6984. x.Size = UDim2.new(0.199980661273,0,0.089904762804508,0)
  6985. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  6986. x.Visible = true
  6987. x.ZIndex = 1
  6988. x.Archivable = true
  6989. x.ClipsDescendants = false
  6990. x.Draggable = false
  6991. x.Font = Enum.Font.SciFi
  6992. x.FontSize = Enum.FontSize.Size14
  6993. x.Text = "Off"
  6994. x.TextColor3 = Color3.new(1,0,0)
  6995. x.TextScaled = true
  6996. x.TextSize = 14
  6997. x.TextStrokeColor3 = Color3.new(0,0,0)
  6998. x.TextStrokeTransparency = 1
  6999. x.TextTransparency = 0
  7000. x.TextWrapped = true
  7001. x.TextXAlignment = Enum.TextXAlignment.Center
  7002. x.TextYAlignment = Enum.TextYAlignment.Center
  7003. x = Instance.new("TextButton",gui.Toolbar.Background)
  7004. x.Active = true
  7005. x.AnchorPoint = Vector2.new(0, 0)
  7006. x.BackgroundColor3 = Color3.new(0.33333334326744,0,0)
  7007. x.BackgroundTransparency = 0
  7008. x.BorderColor3 = Color3.new(0.94117653369904,0,0)
  7009. x.BorderSizePixel = 2
  7010. x.Name = "Jump"
  7011. x.Position = UDim2.new(0.066660225391388,0,0.67428570985794,0)
  7012. x.Rotation = 0
  7013. x.Selectable = true
  7014. x.Size = UDim2.new(0.59994196891785,0,0.089904762804508,0)
  7015. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  7016. x.Style = Enum.ButtonStyle.Custom
  7017. x.Visible = true
  7018. x.ZIndex = 1
  7019. x.Archivable = true
  7020. x.ClipsDescendants = false
  7021. x.Draggable = false
  7022. x.Font = Enum.Font.SciFi
  7023. x.FontSize = Enum.FontSize.Size14
  7024. x.Text = "Jump"
  7025. x.TextColor3 = Color3.new(1,1,1)
  7026. x.TextScaled = true
  7027. x.TextSize = 14
  7028. x.TextStrokeColor3 = Color3.new(0,0,0)
  7029. x.TextStrokeTransparency = 1
  7030. x.TextTransparency = 0
  7031. x.TextWrapped = true
  7032. x.TextXAlignment = Enum.TextXAlignment.Center
  7033. x.TextYAlignment = Enum.TextYAlignment.Center
  7034. x = Instance.new("TextLabel",gui.Toolbar.Background)
  7035. x.Active = false
  7036. x.AnchorPoint = Vector2.new(0, 0)
  7037. x.BackgroundColor3 = Color3.new(0.33333334326744,0,0)
  7038. x.BackgroundTransparency = 0
  7039. x.BorderColor3 = Color3.new(0.94117653369904,0,0)
  7040. x.BorderSizePixel = 2
  7041. x.Name = "tJump"
  7042. x.Position = UDim2.new(0.73326241970062,0,0.67428570985794,0)
  7043. x.Rotation = 0
  7044. x.Selectable = false
  7045. x.Size = UDim2.new(0.199980661273,0,0.089904762804508,0)
  7046. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  7047. x.Visible = true
  7048. x.ZIndex = 1
  7049. x.Archivable = true
  7050. x.ClipsDescendants = false
  7051. x.Draggable = false
  7052. x.Font = Enum.Font.SciFi
  7053. x.FontSize = Enum.FontSize.Size14
  7054. x.Text = "Off"
  7055. x.TextColor3 = Color3.new(1,0,0)
  7056. x.TextScaled = true
  7057. x.TextSize = 14
  7058. x.TextStrokeColor3 = Color3.new(0,0,0)
  7059. x.TextStrokeTransparency = 1
  7060. x.TextTransparency = 0
  7061. x.TextWrapped = true
  7062. x.TextXAlignment = Enum.TextXAlignment.Center
  7063. x.TextYAlignment = Enum.TextYAlignment.Center
  7064. x = Instance.new("TextButton",gui.Toolbar.Background)
  7065. x.Active = true
  7066. x.AnchorPoint = Vector2.new(0, 0)
  7067. x.BackgroundColor3 = Color3.new(0.33333334326744,0,0)
  7068. x.BackgroundTransparency = 0
  7069. x.BorderColor3 = Color3.new(0.94117653369904,0,0)
  7070. x.BorderSizePixel = 2
  7071. x.Name = "Tools"
  7072. x.Position = UDim2.new(0.066660225391388,0,0.80914288759232,0)
  7073. x.Rotation = 0
  7074. x.Selectable = true
  7075. x.Size = UDim2.new(0.59994196891785,0,0.089904762804508,0)
  7076. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  7077. x.Style = Enum.ButtonStyle.Custom
  7078. x.Visible = true
  7079. x.ZIndex = 1
  7080. x.Archivable = true
  7081. x.ClipsDescendants = false
  7082. x.Draggable = false
  7083. x.Font = Enum.Font.SciFi
  7084. x.FontSize = Enum.FontSize.Size14
  7085. x.Text = "Tools"
  7086. x.TextColor3 = Color3.new(1,1,1)
  7087. x.TextScaled = true
  7088. x.TextSize = 14
  7089. x.TextStrokeColor3 = Color3.new(0,0,0)
  7090. x.TextStrokeTransparency = 1
  7091. x.TextTransparency = 0
  7092. x.TextWrapped = true
  7093. x.TextXAlignment = Enum.TextXAlignment.Center
  7094. x.TextYAlignment = Enum.TextYAlignment.Center
  7095. x = Instance.new("TextLabel",gui.Toolbar.Background)
  7096. x.Active = false
  7097. x.AnchorPoint = Vector2.new(0, 0)
  7098. x.BackgroundColor3 = Color3.new(0.33333334326744,0,0)
  7099. x.BackgroundTransparency = 0
  7100. x.BorderColor3 = Color3.new(0.94117653369904,0,0)
  7101. x.BorderSizePixel = 2
  7102. x.Name = "tTools"
  7103. x.Position = UDim2.new(0.73326241970062,0,0.80914288759232,0)
  7104. x.Rotation = 0
  7105. x.Selectable = false
  7106. x.Size = UDim2.new(0.199980661273,0,0.089904762804508,0)
  7107. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  7108. x.Visible = true
  7109. x.ZIndex = 1
  7110. x.Archivable = true
  7111. x.ClipsDescendants = false
  7112. x.Draggable = false
  7113. x.Font = Enum.Font.SciFi
  7114. x.FontSize = Enum.FontSize.Size14
  7115. x.Text = "Off"
  7116. x.TextColor3 = Color3.new(1,0,0)
  7117. x.TextScaled = true
  7118. x.TextSize = 14
  7119. x.TextStrokeColor3 = Color3.new(0,0,0)
  7120. x.TextStrokeTransparency = 1
  7121. x.TextTransparency = 0
  7122. x.TextWrapped = true
  7123. x.TextXAlignment = Enum.TextXAlignment.Center
  7124. x.TextYAlignment = Enum.TextYAlignment.Center
  7125. x = Instance.new("ImageLabel",gui.Toolbar.Background)
  7126. x.Active = false
  7127. x.AnchorPoint = Vector2.new(0, 0)
  7128. x.BackgroundColor3 = Color3.new(1,1,1)
  7129. x.BackgroundTransparency = 1
  7130. x.BorderColor3 = Color3.new(0.10588236153126,0.16470588743687,0.20784315466881)
  7131. x.BorderSizePixel = 1
  7132. x.Name = "Bottom"
  7133. x.Position = UDim2.new(0,0,0.9439999461174,0)
  7134. x.Rotation = 0
  7135. x.Selectable = false
  7136. x.Size = UDim2.new(1,0,0.054999999701977,0)
  7137. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  7138. x.Visible = true
  7139. x.ZIndex = 1
  7140. x.Archivable = true
  7141. x.ClipsDescendants = false
  7142. x.Draggable = false
  7143. x.Image = "rbxassetid://714167373"
  7144. x.ImageColor3 = Color3.new(1,1,1)
  7145. x.ImageRectOffset = Vector2.new(0, 0)
  7146. x.ImageRectSize = Vector2.new(0, 0)
  7147. x.ImageTransparency = 0
  7148. xScaleType = Enum.ScaleType.Stretch
  7149. xSliceCenter = Rect.new(0, 0, 0, 0)
  7150. x = Instance.new("TextLabel",gui.Toolbar)
  7151. x.Active = false
  7152. x.AnchorPoint = Vector2.new(0, 0)
  7153. x.BackgroundColor3 = Color3.new(1,1,1)
  7154. x.BackgroundTransparency = 1
  7155. x.BorderColor3 = Color3.new(0.10588236153126,0.16470588743687,0.20784315466881)
  7156. x.BorderSizePixel = 1
  7157. x.Name = "Title"
  7158. x.Position = UDim2.new(0,0,0,0)
  7159. x.Rotation = 0
  7160. x.Selectable = false
  7161. x.Size = UDim2.new(0.86658293008804,0,1.0114285945892,0)
  7162. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  7163. x.Visible = true
  7164. x.ZIndex = 1001
  7165. x.Archivable = true
  7166. x.ClipsDescendants = false
  7167. x.Draggable = false
  7168. x.Font = Enum.Font.SciFi
  7169. x.FontSize = Enum.FontSize.Size14
  7170. x.Text = "FE Hax Gui"
  7171. x.TextColor3 = Color3.new(0.94117653369904,0,0)
  7172. x.TextScaled = true
  7173. x.TextSize = 14
  7174. x.TextStrokeColor3 = Color3.new(0,0,0)
  7175. x.TextStrokeTransparency = 1
  7176. x.TextTransparency = 0
  7177. x.TextWrapped = true
  7178. x.TextXAlignment = Enum.TextXAlignment.Center
  7179. x.TextYAlignment = Enum.TextYAlignment.Center
  7180. x = Instance.new("TextButton",gui.Toolbar)
  7181. x.Active = true
  7182. x.AnchorPoint = Vector2.new(0, 0)
  7183. x.BackgroundColor3 = Color3.new(0.078431375324726,0.078431375324726,0.078431375324726)
  7184. x.BackgroundTransparency = 0.5
  7185. x.BorderColor3 = Color3.new(0.10588236153126,0.16470588743687,0.20784315466881)
  7186. x.BorderSizePixel = 0
  7187. x.Name = "Exit"
  7188. x.Position = UDim2.new(0.86658293008804,0,0,0)
  7189. x.Rotation = 0
  7190. x.Selectable = true
  7191. x.Size = UDim2.new(0.13332045078278,0,1.0114285945892,0)
  7192. x.SizeConstraint = Enum.SizeConstraint.RelativeXY
  7193. x.Style = Enum.ButtonStyle.Custom
  7194. x.Visible = true
  7195. x.ZIndex = 1002
  7196. x.Archivable = true
  7197. x.ClipsDescendants = false
  7198. x.Draggable = false
  7199. x.Font = Enum.Font.SciFi
  7200. x.FontSize = Enum.FontSize.Size14
  7201. x.Text = "X"
  7202. x.TextColor3 = Color3.new(0.94117653369904,0,0)
  7203. x.TextScaled = true
  7204. x.TextSize = 14
  7205. x.TextStrokeColor3 = Color3.new(0,0,0)
  7206. x.TextStrokeTransparency = 1
  7207. x.TextTransparency = 0
  7208. x.TextWrapped = true
  7209. x.TextXAlignment = Enum.TextXAlignment.Center
  7210. x.TextYAlignment = Enum.TextYAlignment.Center
  7211. --Code below.
  7212. if game.Workspace.FilteringEnabled == true then
  7213. gui.Toolbar.Background.tFE.Text = "On"
  7214. gui.Toolbar.Background.tFE.TextColor3 = Color3.new(0,1,0)
  7215. end
  7216. gui.Toolbar.Exit.MouseButton1Click:connect(function()
  7217. gui:Destroy()
  7218. end)
  7219. gui.Toolbar.Background.God.MouseButton1Click:connect(function()
  7220. if gui.Toolbar.Background.tGod.Text == "Off" then
  7221. local player = game.Players.LocalPlayer
  7222. if player.Character then
  7223. if player.Character:FindFirstChild("Humanoid") then
  7224. player.Character.Humanoid.Name = "1"
  7225. end
  7226. local l = player.Character["1"]:Clone()
  7227. l.Parent = player.Character
  7228. l.Name = "Humanoid"; wait(0.1)
  7229. player.Character["1"]:Destroy()
  7230. game.Workspace.CurrentCamera.CameraSubject = player.Character.Humanoid
  7231. player.Character.Animate.Disabled = true; wait(0.1)
  7232. player.Character.Animate.Disabled = false
  7233. end
  7234. gui.Toolbar.Background.tGod.Text = "On"
  7235. gui.Toolbar.Background.tGod.TextColor3 = Color3.new(0,1,0)
  7236. end
  7237. end)
  7238. gui.Toolbar.Background.LS.MouseButton1Click:connect(function()
  7239. if gui.Toolbar.Background.tLS.Text == "Off" then
  7240. game:GetService("NetworkClient").ClientReplicator:DisableProcessPackets()
  7241. gui.Toolbar.Background.tLS.Text = "On"
  7242. gui.Toolbar.Background.tLS.TextColor3 = Color3.new(0,1,0)
  7243. else
  7244. game:GetService("NetworkClient").ClientReplicator:EnableProcessPackets()
  7245. gui.Toolbar.Background.tLS.Text = "Off"
  7246. gui.Toolbar.Background.tLS.TextColor3 = Color3.new(1,0,0)
  7247. end
  7248. end)
  7249. gui.Toolbar.Background.Speed.MouseButton1Click:connect(function()
  7250. if gui.Toolbar.Background.tSpeed.Text == "Off" then
  7251. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 48
  7252. gui.Toolbar.Background.tSpeed.Text = "On"
  7253. gui.Toolbar.Background.tSpeed.TextColor3 = Color3.new(0,1,0)
  7254. else
  7255. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  7256. gui.Toolbar.Background.tSpeed.Text = "Off"
  7257. gui.Toolbar.Background.tSpeed.TextColor3 = Color3.new(1,0,0)
  7258. end
  7259. end)
  7260. gui.Toolbar.Background.Jump.MouseButton1Click:connect(function()
  7261. if gui.Toolbar.Background.tJump.Text == "Off" then
  7262. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150
  7263. gui.Toolbar.Background.tJump.Text = "On"
  7264. gui.Toolbar.Background.tJump.TextColor3 = Color3.new(0,1,0)
  7265. else
  7266. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  7267. gui.Toolbar.Background.tJump.Text = "Off"
  7268. gui.Toolbar.Background.tJump.TextColor3 = Color3.new(1,0,0)
  7269. end
  7270. end)
  7271. gui.Toolbar.Background.Tools.MouseButton1Click:connect(function()
  7272. if gui.Toolbar.Background.tTools.Text == "Off" then
  7273. local aim = game.Players.LocalPlayer
  7274. local root = game:GetService("InsertService"):LoadAsset(16201628)
  7275. local item = root:children()
  7276. for i = 1, #item do
  7277. item[i].Parent = aim.Backpack
  7278. wait()
  7279. end
  7280. aim = game.Players.LocalPlayer
  7281. root = game:GetService("InsertService"):LoadAsset(16969792)
  7282. item = root:children()
  7283. for i = 1, #item do
  7284. item[i].Parent = aim.Backpack
  7285. wait()
  7286. end
  7287. aim = game.Players.LocalPlayer
  7288. root = game:GetService("InsertService"):LoadAsset(21001552)
  7289. item = root:children()
  7290. for i = 1, #item do
  7291. item[i].Parent = aim.Backpack
  7292. wait()
  7293. end
  7294. gui.Toolbar.Background.tTools.Text = "On"
  7295. gui.Toolbar.Background.tTools.TextColor3 = Color3.new(0,1,0)
  7296. else
  7297. for _,char in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  7298. if char.Name == "BuildDelete" or char.Name == "BuildInsert" or char.Name == "BuildResize" then
  7299. char.Parent = game.Players.LocalPlayer.Backpack
  7300. char:Destroy()
  7301. end
  7302. end
  7303. for _,bag in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  7304. if bag.Name == "BuildDelete" or bag.Name == "BuildInsert" or bag.Name == "BuildResize" then
  7305. bag:Destroy()
  7306. end
  7307. end
  7308. gui.Toolbar.Background.tTools.Text = "Off"
  7309. gui.Toolbar.Background.tTools.TextColor3 = Color3.new(1,0,0)
  7310. end
  7311. end)
  7312. --Created by MightyDantheman
  7313. end)
  7314.  
  7315.  
  7316. MinimizeButton.Name = "MinimizeButton"
  7317. MinimizeButton.Parent = GUI
  7318. MinimizeButton.BackgroundColor3 = Color3.new(0, 0, 1)
  7319. MinimizeButton.Position = UDim2.new(0.883138537, 0, 0, 0)
  7320. MinimizeButton.Size = UDim2.new(0, 35, 0, 35)
  7321. MinimizeButton.Font = Enum.Font.SourceSans
  7322. MinimizeButton.Text = "-"
  7323. MinimizeButton.TextColor3 = Color3.new(1, 1, 1)
  7324. MinimizeButton.TextScaled = true
  7325. MinimizeButton.TextSize = 14
  7326. MinimizeButton.TextWrapped = true
  7327. MinimizeButton.MouseButton1Click:connect(function()
  7328. GUI.Visible = false
  7329. Image.Visible = true
  7330. end)
  7331.  
  7332. Image.Name = "Image"
  7333. Image.Parent = ScreenGui
  7334. Image.BackgroundColor3 = Color3.new(1, 1, 1)
  7335. Image.Size = UDim2.new(0, 100, 0, 100)
  7336. Image.Image = "rbxassetid://1206156901"
  7337.  
  7338. OPEN.Name = "OPEN"
  7339. OPEN.Parent = Image
  7340. OPEN.BackgroundColor3 = Color3.new(1, 1, 1)
  7341. OPEN.BackgroundTransparency = 1
  7342. OPEN.Size = UDim2.new(0, 100, 0, 100)
  7343. OPEN.Font = Enum.Font.SourceSans
  7344. OPEN.Text = "OPEN"
  7345. OPEN.TextColor3 = Color3.new(1, 1, 1)
  7346. OPEN.TextSize = 40
  7347. OPEN.MouseButton1Click:connect(function()
  7348. GUI.Visible = true
  7349. Image.Visible = false
  7350. end)
  7351. -- Scripts:
Add Comment
Please, Sign In to add comment