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