· 6 years ago · Mar 19, 2020, 08:40 PM
1PASTEBIN
2GO API TOOLS FAQ DEALS
3
4paste
5
6
7Nockbackkiller1
8FREE
9My Pastes
10Nothing here yet...
11Public Pastes
12Untitled
13C++ | 2 sec ago
14Untitled
157 sec ago
16Untitled
1710 sec ago
18Untitled
1917 sec ago
20Untitled
21C# | 17 sec ago
22SSH Credentials
2319 sec ago
24Untitled
25Java | 20 sec ago
26Untitled
2728 sec ago
28
29
30
31SHARE
32TWEET
33
34Wild Savannah Script
35 Molodejkaoff Dec 20th, 2019 7,712 Never
36
37
38rawdownloadcloneembedreportprint
39text 162.44 KB
40-- Gui to Lua
41-- Version: 3
42
43-- Instances:
44
45local WildSavannah = Instance.new("ScreenGui")
46local Open = Instance.new("Frame")
47local Op = Instance.new("TextButton")
48local Main = Instance.new("Frame")
49local Name = Instance.new("TextLabel")
50local InfH = Instance.new("TextButton")
51local SpawnA = Instance.new("TextButton")
52local Color = Instance.new("TextButton")
53local KillGui = Instance.new("TextButton")
54local Admin = Instance.new("TextButton")
55local ClickKill = Instance.new("TextButton")
56local X = Instance.new("TextButton")
57local Color_2 = Instance.new("Frame")
58local CloseColor = Instance.new("TextButton")
59local BW = Instance.new("TextButton")
60local White = Instance.new("TextButton")
61local RGB = Instance.new("TextButton")
62local Warning = Instance.new("TextLabel")
63local Animal = Instance.new("Frame")
64local CloseAnimal = Instance.new("TextButton")
65local Hyena = Instance.new("TextButton")
66local Cheetah = Instance.new("TextButton")
67local Lion = Instance.new("TextButton")
68local Impala = Instance.new("TextButton")
69local Croco = Instance.new("TextButton")
70local Gnu = Instance.new("TextButton")
71local Topi = Instance.new("TextButton")
72local Buffalo = Instance.new("TextButton")
73local Tommie = Instance.new("TextButton")
74local Leopard = Instance.new("TextButton")
75
76--Properties:
77
78WildSavannah.Name = "WildSavannah"
79WildSavannah.Parent = game.CoreGui
80WildSavannah.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
81
82Open.Name = "Open"
83Open.Parent = WildSavannah
84Open.Active = true
85Open.BackgroundColor3 = Color3.new(1, 1, 1)
86Open.Position = UDim2.new(0.230858475, 0, 0, 0)
87Open.Size = UDim2.new(0, 65, 0, 22)
88Open.Style = Enum.FrameStyle.DropShadow
89Open.Draggable = true
90
91Op.Name = "Op"
92Op.Parent = Open
93Op.BackgroundColor3 = Color3.new(1, 1, 1)
94Op.Position = UDim2.new(-0.169230774, 0, -1.45454538, 0)
95Op.Size = UDim2.new(0, 65, 0, 23)
96Op.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
97Op.Font = Enum.Font.SourceSans
98Op.Text = "Open"
99Op.TextColor3 = Color3.new(0, 0, 0)
100Op.TextSize = 14
101Op.MouseButton1Down:connect(function()
102Main.Visible = true
103Open.Visible = false
104end)
105
106Main.Name = "Main"
107Main.Parent = WildSavannah
108Main.Active = true
109Main.BackgroundColor3 = Color3.new(1, 0, 0)
110Main.Position = UDim2.new(0.277637482, 0, 0.39096266, 0)
111Main.Size = UDim2.new(0, 254, 0, 153)
112Main.Visible = false
113Main.Draggable = true
114
115Name.Name = "Name"
116Name.Parent = Main
117Name.BackgroundColor3 = Color3.new(1, 0, 0)
118Name.BackgroundTransparency = 1
119Name.Size = UDim2.new(0, 213, 0, 33)
120Name.Font = Enum.Font.SourceSans
121Name.Text = "Wild Savannah v1 @Molodejka#7376"
122Name.TextColor3 = Color3.new(0, 0, 0)
123Name.TextSize = 14
124
125InfH.Name = "InfH"
126InfH.Parent = Main
127InfH.BackgroundColor3 = Color3.new(1, 1, 1)
128InfH.Position = UDim2.new(0.0427659675, 0, 0.261039853, 0)
129InfH.Size = UDim2.new(0, 107, 0, 37)
130InfH.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
131InfH.Font = Enum.Font.SourceSans
132InfH.Text = "Infinite Health"
133InfH.TextColor3 = Color3.new(0, 0, 0)
134InfH.TextSize = 14
135InfH.MouseButton1Down:connect(function()
136while true do
137wait()
138game.Workspace.RemoteServer.ChangeValue:FireServer(workspace[game.Players.LocalPlayer.Name].Health2, 10000)
139end
140end)
141
142SpawnA.Name = "SpawnA"
143SpawnA.Parent = Main
144SpawnA.BackgroundColor3 = Color3.new(1, 1, 1)
145SpawnA.Position = UDim2.new(0.503049731, 0, 0.738164008, 0)
146SpawnA.Size = UDim2.new(0, 107, 0, 37)
147SpawnA.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
148SpawnA.Font = Enum.Font.SourceSans
149SpawnA.Text = "Spawn animal"
150SpawnA.TextColor3 = Color3.new(0, 0, 0)
151SpawnA.TextSize = 14
152SpawnA.MouseButton1Down:connect(function()
153Animal.Visible = true
154end)
155
156
157Color.Name = "Color"
158Color.Parent = Main
159Color.BackgroundColor3 = Color3.new(1, 1, 1)
160Color.Position = UDim2.new(0.503049731, 0, 0.496333957, 0)
161Color.Size = UDim2.new(0, 107, 0, 37)
162Color.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
163Color.Font = Enum.Font.SourceSans
164Color.Text = "Colors For Lion"
165Color.TextColor3 = Color3.new(0, 0, 0)
166Color.TextSize = 14
167Color.MouseButton1Down:connect(function()
168Color_2.Visible = true
169end)
170
171KillGui.Name = "Kill Gui"
172KillGui.Parent = Main
173KillGui.BackgroundColor3 = Color3.new(1, 1, 1)
174KillGui.Position = UDim2.new(0.503049731, 0, 0.261039853, 0)
175KillGui.Size = UDim2.new(0, 107, 0, 37)
176KillGui.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
177KillGui.Font = Enum.Font.SourceSans
178KillGui.Text = "Kill Gui"
179KillGui.TextColor3 = Color3.new(0, 0, 0)
180KillGui.TextSize = 14
181KillGui.MouseButton1Down:connect(function()
182
183repeat wait() until game.Players.LocalPlayer.Character
184
185--
186
187local Player = game:GetService("Players").LocalPlayer
188local Mouse = Player:GetMouse()
189
190local KillEvent = workspace.RemoteServer.Death
191
192local CKToggle = false
193local KVToggle = false
194local KAToggle = false
195
196--
197
198local function CreateInstance(Object,Properties)
199local NewInstance = Instance.new(Object)
200for i,v in pairs(Properties) do
201 NewInstance[i] = v
202end
203 return NewInstance
204end
205
206--
207
208local MainGui = CreateInstance("ScreenGui", {Name = "MainGui", ResetOnSpawn = false, Enabled = true, Parent = game:GetService("Players").LocalPlayer.PlayerGui})
209local MainFrame = CreateInstance("Frame", {Name = "MainFrame", Size = UDim2.new(0, 250, 0, 250), Position = UDim2.new(0.5, -125, 0.5, -125), BackgroundColor3 = Color3.fromRGB(50, 52, 49), BackgroundTransparency = 0, BorderSizePixel = 0, Parent = MainGui, Active = true, Draggable = true})
210local Notice = CreateInstance("TextLabel", {Name = "Notice", Text = "Thank you for using my FE GUI!", BorderSizePixel = 0, BackgroundColor3 = Color3.fromRGB(15, 15, 15), BackgroundTransparency = 1, Parent = MainFrame, TextSize = 18, Size = UDim2.new(1, 0, 0, 15), Position = UDim2.new(0, 0, 0, 0), Font = Enum.Font.SourceSansLight, TextColor3 = Color3.fromRGB(255, 255, 255)})
211local ClickKill = CreateInstance("TextButton", {Name = "ClickKill", Text = "Click Kill", BorderSizePixel = 0, BackgroundColor3 = Color3.fromRGB(15, 15, 15), BackgroundTransparency = 0.8, Parent = MainFrame, TextSize = 18, Size = UDim2.new(1, 0, 0, 15), Position = UDim2.new(0, 0, 0, 50), Font = Enum.Font.SourceSansLight, TextColor3 = Color3.fromRGB(255, 255, 255)})
212local Victim = CreateInstance("TextBox", {Name = "VictimName", Text = "Victim's Name Here", BorderSizePixel = 0, BackgroundColor3 = Color3.fromRGB(15, 15, 15), BackgroundTransparency = 0.8, Parent = MainFrame, TextSize = 18, Size = UDim2.new(0, 180, 0, 15), Position = UDim2.new(0, 0, 0, 70), Font = Enum.Font.SourceSansLight, TextColor3 = Color3.fromRGB(255, 255, 255)})
213local KillVictim = CreateInstance("TextButton", {Name = "KillVictim", Text = "Kill Victim!", BorderSizePixel = 0, BackgroundColor3 = Color3.fromRGB(25, 25, 25), BackgroundTransparency = 0.8, Parent = MainFrame, TextSize = 18, Size = UDim2.new(0, 70, 0, 15), Position = UDim2.new(0, 180, 0, 70), Font = Enum.Font.SourceSansLight, TextColor3 = Color3.fromRGB(255, 255, 255)})
214local KillAll = CreateInstance("TextButton", {Name = "KillAll", Text = "Kill All Players!", BorderSizePixel = 0, BackgroundColor3 = Color3.fromRGB(15, 15, 15), BackgroundTransparency = 0.8, Parent = MainFrame, TextSize = 18, Size = UDim2.new(1, 0, 0, 15), Position = UDim2.new(0, 0, 0, 90), Font = Enum.Font.SourceSansLight, TextColor3 = Color3.fromRGB(255, 255, 255)})
215
216--
217
218Victim.FocusLost:Connect(function()
219 if Victim.Text == "" then
220 Victim.Text = "Victim's Name Here"
221 end
222end)
223
224ClickKill.MouseButton1Down:Connect(function()
225 CKToggle = not CKToggle
226 if CKToggle == true then ClickKill.BackgroundColor3 = Color3.fromRGB(83, 121, 74) else ClickKill.BackgroundColor3 = Color3.fromRGB(15, 15, 15) end
227 Mouse.Button1Down:connect(function()
228 if CKToggle == true then
229 Mouse.TargetFilter = workspace.Water
230 print(Mouse.Target)
231 KillEvent:FireServer(game.Players[Mouse.Target.Parent.Name].Character)
232 else
233 print(nil)
234 end
235 end)
236end)
237
238KillVictim.MouseButton1Down:Connect(function()
239 KVToggle = not KVToggle
240 if KVToggle == true then KillVictim.BackgroundColor3 = Color3.fromRGB(83, 121, 74) else KillVictim.BackgroundColor3 = Color3.fromRGB(15, 15, 15) end
241 while wait() do
242 if KVToggle == true then
243 local Char = game.Players[Victim.Text].Character
244 KillEvent:FireServer(Char)
245 else
246 print(nil)
247 end
248 end
249end)
250
251KillAll.MouseButton1Click:Connect(function()
252 KAToggle = not KAToggle
253 if KAToggle == true then KillAll.BackgroundColor3 = Color3.fromRGB(83, 121, 74) else KillAll.BackgroundColor3 = Color3.fromRGB(15, 15, 15) end
254 while wait() do
255 if KAToggle == true then
256 for i,v in pairs(game.Players:GetChildren()) do
257 if v.Name ~= Player.Name and not v:IsFriendsWith(Player.UserId) then
258 KillEvent:FireServer(v.Character)
259 print("Ded: "..v.Name)
260 else
261 print(nil)
262 end
263 end
264 end
265 end
266end)
267end)
268
269Admin.Name = "Admin"
270Admin.Parent = Main
271Admin.BackgroundColor3 = Color3.new(1, 1, 1)
272Admin.Position = UDim2.new(0.0427659675, 0, 0.738164008, 0)
273Admin.Size = UDim2.new(0, 107, 0, 37)
274Admin.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
275Admin.Font = Enum.Font.SourceSans
276Admin.Text = "Admin"
277Admin.TextColor3 = Color3.new(0, 0, 0)
278Admin.TextSize = 14
279Admin.MouseButton1Down:connect(function()
280-- Creator: illremember#3799
281
282-- Credits to infinite yield, harkinian, dex creators
283
284prefix = ";"
285wait(0.3)
286Commands = {
287 '[-] Reviz Admin v2 commands',
288 '[-] cmdbar is shown when ; is pressed.',
289 '[1] kill [plr] -- You need a tool! Will kill the player, use rkill to kill you and player',
290 '[2] bring [plr] -- You need a tool! Will bring player to you',
291 '[3] spin [plr] -- You need a tool! Makes you and the player spin crazy',
292 '[4] unspin -- Use after using spin cmd and dying, so you stop loop teleporting',
293 '[5] attach [plr] -- You need a tool! Attaches you to player',
294 '[6] unattach [plr] -- Attempts to unattach you from a player',
295 '[7] follow [plr] -- Makes you follow behind the player',
296 '[8] unfollow',
297 '[9] freefall [plr] -- You need a tool! Teleports you and the player up into the air',
298 '[10] trail [plr] -- The opposite of follow, you stay infront of player',
299 '[11] untrail',
300 '[12] orbit [plr] -- Makes you orbit the player',
301 '[13] unorbit',
302 '[14] fling [plr] -- Makes you fling the player',
303 '[15] unfling',
304 '[16] fecheck -- Checks if the game is FE or not',
305 '[17] void [plr] -- Teleports player to the void',
306 '[18] noclip -- Gives you noclip to walk through walls',
307 '[19] clip -- Removes noclip',
308 '[20] speed [num]/ws [num] -- Changes how fast you walk 16 is default',
309 '[21] jumppower [num]/jp [num] -- Changes how high you jump 50 is default',
310 '[22] hipheight [num]/hh [num] -- Changes how high you float 0 is default',
311 '[23] default -- Changes your speed, jumppower and hipheight to default values',
312 '[24] annoy [plr] -- Loop teleports you to the player',
313 '[25] unannoy',
314 '[26] headwalk [plr] -- Loop teleports you to the player head',
315 '[27] unheadwalk',
316 '[28] nolimbs -- Removes your arms and legs',
317 '[29] god -- Gives you FE Godmode',
318 '[30] drophats -- Drops your accessories',
319 '[31] droptool -- Drops any tool you have equipped',
320 '[32] loopdhats -- Loop drops your accessories',
321 '[33] unloopdhats',
322 '[34] loopdtool -- Loop drops any tools you have equipped',
323 '[35] unloopdtool',
324 '[36] invisible -- Gives you invisibility CREDIT TO TIMELESS',
325 '[37] view [plr] -- Changes your camera to the player character',
326 '[38] unview',
327 '[39] goto [plr] -- Teleports you to player',
328 '[40] fly -- Allows you to fly, credit to Infinite Yield',
329 '[41] unfly',
330 '[42] chat [msg] -- Makes you chat a message',
331 '[43] spam [msg] -- Spams a message',
332 '[44] unspam',
333 '[45] spamwait [num] -- Changes delay of chatting a message for the spam command in seconds default is 1 second',
334 '[46] pmspam [plr] -- Spams a player in private message',
335 '[47] unpmspam',
336 '[48] cfreeze [plr] -- Freezes a player on your client, they will only be frozen for you',
337 '[49] uncfreeze [plr]',
338 '[50] unlockws -- Unlocks the workspace',
339 '[51] lockws -- Locks the workspace',
340 '[52] btools -- Gives you btools that will only show to you useful for deleting certain blocks only for you',
341 '[53] pstand -- Enables platform stand',
342 '[54] unpstand -- Disables platform stand',
343 '[55] blockhead -- Removes your head mesh',
344 '[56] sit',
345 '[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',
346 '[58] wsvis [num] -- Changes visibility of workspace parts, num should be between 0 and 1, only shows client sided',
347 '[59] hypertotal -- Loads in my FE GUI Hypertotal',
348 '[60] cmds -- Prints all commands',
349 '[61] rmeshhats/blockhats -- Removes the meshes of all your accessories aka block hats',
350 '[62] rmeshtool/blocktool -- Removes the mesh of the tool you have equipped aka block tool',
351 '[63] spinner -- Makes you spin',
352 '[64] nospinner',
353 '[65] reach [num] -- Gives you reach, mostly used for swords, say ;reachd for default and enter number after for custom',
354 '[66] noreach -- Removes reach, must have tool equipped',
355 '[67] rkill [plr] -- Kills you and the player, use kill to just kill the player without dying',
356 '[68] tp me [plr] -- Alternative to goto',
357 '[69] cbring [plr] -- Brings player infront of you, shows only on client, allows you to do damage to player',
358 '[70] uncbring',
359 '[71] swap [plr] -- You need a tool! Swaps players position with yours and your position with players',
360 '[72] givetool [plr] -- Gives the tool you have equipped to the player',
361 '[73] glitch [plr] -- Glitches you and the player, looks very cool',
362 '[74] unglitch -- Unglitches you',
363 '[75] grespawn -- Alternative to normal respawn and usually works best for when you want to reset with FE Godmode',
364 '[76] explorer -- Loads up DEX',
365 '[77] reset -- Resets your character.',
366 '[78] anim [id] -- Applies an animation on you, must be created by ROBLOX',
367 '[79] animgui -- Loads up Energize animations GUI',
368 '[80] savepos -- Saves your current position',
369 '[81] loadpos -- Teleports you to your saved position',
370 '[82] bang [plr] -- 18+ will not work if you have FE Godmode on',
371 '[83] unbang',
372 '[84] delcmdbar -- Removes the command bar completely',
373 '[85] bringmod [obj] -- Brings all the parts in a model, client only, comes from ;bringobj enter exact name of model',
374 '[86] shutdown -- Uses harkinians script to shutdown server',
375 '[87] respawn -- If grespawn doesnt work you can use respawn',
376 '[88] delobj [obj] -- Deletes a certain brick in workspace, client sided',
377 '[89] getplrs -- Prints all players in game',
378 '[90] deldecal -- Deletes all decals client sided',
379 '[91] opfinality -- Loads in my FE GUI Opfinality',
380 '[92] remotes -- Prints all remotes in the game in the console when added',
381 '[93] noremotes -- Stops printing remotes',
382 '[94] tpdefault -- Stops all loop teleports to a player',
383 '[95] stopsit -- Will not allow you to sit',
384 '[96] gosit -- Allows you to sit',
385 '[97] clicktp -- Enables click tp',
386 '[98] noclicktp -- Disables click tp',
387 '[99] toolson -- If any tools are dropped in the workspace you will automatically get them',
388 '[100] toolsoff -- Stops ;toolson',
389 '[101] version -- Gets the admin version',
390 '[102] state [num] -- Changes your humanoid state, ;unstate to stop.',
391 '[103] gravity [num] -- Changes workspace gravity default is 196.2',
392 '[104] pgs -- Checks if the game has PGSPhysicsSolverEnabled enabled',
393 '[105] clickdel -- Delete any block you press q on, client sided',
394 '[106] noclickdel -- Stops clickdel',
395 '[107] looprhats -- Loop removes mesh of your hats/loop block hats',
396 '[108] unlooprhats -- Stops loop removing mesh',
397 '[109] looprtool -- Loop removes mesh of your tool/loop block tools',
398 '[110] unlooprtool -- Stops loop removing mesh',
399 '[111] givealltools [plr] -- Gives all the tools you have in your backpack to the player',
400 '[112] age [plr] -- Makes you chat the account age of the player',
401 '[113] id [plr] -- Makes you chat the account ID of the player',
402 '[114] .age [plr] -- Privately shows you the account age of the player',
403 '[115] .id [plr] -- Privately shows you the account ID of the player',
404 '[116] gameid -- Shows the game ID',
405 '[117] removeinvis -- Removes all invisible walls/parts, client sided',
406 '[118] removefog -- Removes fog, client sided',
407 '[119] disable -- Disables your character by removing humanoid',
408 '[120] enable -- Enables your character by adding humanoid',
409 '[121] prefix [key] -- Changes the prefix used, default is ;',
410 '[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.',
411 '[123] flyspeed [num] -- Change your fly speed, default is 1',
412 '[124] carpet [plr] -- Makes you a carpet for a player, will not work if FE Godmode is on',
413 '[125] uncarpet -- Stops carpet player',
414 '[126] stare [plr] -- Turns your character to stare at another player',
415 '[127] unstare -- Stops stare player',
416 '[128] logchat -- Logs all chat (including /e and whispers) of all players',
417 '[129] unlogchat -- Disables logchat',
418 '[130] fixcam -- Fixes/resets your camera',
419 '[131] unstate -- Stops changing state',
420}
421speedget = 1
422
423lplayer = game:GetService("Players").LocalPlayer
424
425lplayer.CharacterAdded:Connect(function(character)
426 spin = false
427 flying = false
428 staring = false
429 banpl = false
430end)
431
432function change()
433 prefix = prefix
434 speedfly = speedfly
435end
436
437function GetPlayer(String) -- Credit to Timeless/xFunnieuss
438 local Found = {}
439 local strl = String:lower()
440 if strl == "all" then
441 for i,v in pairs(game:GetService("Players"):GetPlayers()) do
442 table.insert(Found,v)
443 end
444 elseif strl == "others" then
445 for i,v in pairs(game:GetService("Players"):GetPlayers()) do
446 if v.Name ~= lplayer.Name then
447 table.insert(Found,v)
448 end
449 end
450 elseif strl == "me" then
451 for i,v in pairs(game:GetService("Players"):GetPlayers()) do
452 if v.Name == lplayer.Name then
453 table.insert(Found,v)
454 end
455 end
456 else
457 for i,v in pairs(game:GetService("Players"):GetPlayers()) do
458 if v.Name:lower():sub(1, #String) == String:lower() then
459 table.insert(Found,v)
460 end
461 end
462 end
463 return Found
464end
465
466local Mouse = lplayer:GetMouse()
467
468spin = false
469followed = false
470traill = false
471noclip = false
472annoying = false
473hwalk = false
474droppinghats = false
475droppingtools = false
476flying = false
477spamdelay = 1
478spamming = false
479spammingpm = false
480cbringing = false
481remotes = true
482added = true
483binds = false
484stopsitting = false
485clickgoto = false
486gettingtools = false
487removingmeshhats = false
488removingmeshtool = false
489clickdel = false
490staring = false
491chatlogs = false
492banpl = false
493changingstate = false
494statechosen = 0
495
496adminversion = "Reviz Admin by illremember, Version 2.0"
497
498flying = false
499speedfly = 1
500
501function plrchat(plr, chat)
502print(plr.Name..": "..tick().."\n"..chat)
503end
504
505for i,v in pairs(game:GetService("Players"):GetPlayers()) do
506v.Chatted:connect(function(chat)
507if chatlogs then
508plrchat(v, chat)
509end
510end)
511end
512game:GetService("Players").PlayerAdded:connect(function(plr)
513plr.Chatted:connect(function(chat)
514if chatlogs then
515plrchat(plr, chat)
516end
517end)
518end)
519
520
521local ScreenGui = Instance.new("ScreenGui")
522local Frame = Instance.new("Frame")
523local CMDBAR = Instance.new("TextBox")
524ScreenGui.Parent = game:GetService("CoreGui")
525Frame.Parent = ScreenGui
526Frame.BackgroundColor3 = Color3.new(0.3, 0.1, 0.1)
527Frame.BackgroundTransparency = 0.3
528Frame.Position = UDim2.new(0.5, 0, 0, 10)
529Frame.Size = UDim2.new(0, 200, 0, 40)
530Frame.Active = true
531Frame.Draggable = true
532CMDBAR.Name = "CMDBAR"
533CMDBAR.Parent = Frame
534CMDBAR.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
535CMDBAR.BackgroundTransparency = 0.20000000298023
536CMDBAR.Size = UDim2.new(0, 180, 0, 20)
537CMDBAR.Position = UDim2.new(0.05, 0, 0.25, 0)
538CMDBAR.Font = Enum.Font.SourceSansLight
539CMDBAR.FontSize = Enum.FontSize.Size14
540CMDBAR.TextColor3 = Color3.new(0.945098, 0.945098, 0.945098)
541CMDBAR.TextScaled = true
542CMDBAR.TextSize = 14
543CMDBAR.TextWrapped = true
544CMDBAR.Text = "Press ; to type, Enter to execute"
545
546local CMDS = Instance.new("ScreenGui")
547local CMDSFRAME = Instance.new("Frame")
548local ScrollingFrame = Instance.new("ScrollingFrame")
549local TextLabel = Instance.new("TextLabel")
550local closegui = Instance.new("TextButton")
551CMDS.Name = "CMDS"
552CMDS.Parent = game:GetService("CoreGui")
553CMDSFRAME.Name = "CMDSFRAME"
554CMDSFRAME.Parent = CMDS
555CMDSFRAME.Active = true
556CMDSFRAME.BackgroundColor3 = Color3.new(0.223529, 0.231373, 0.309804)
557CMDSFRAME.BorderSizePixel = 0
558CMDSFRAME.Draggable = true
559CMDSFRAME.Position = UDim2.new(0, 315, 0, 100)
560CMDSFRAME.Size = UDim2.new(0, 275, 0, 275)
561CMDSFRAME.Visible = false
562ScrollingFrame.Parent = CMDSFRAME
563ScrollingFrame.BackgroundColor3 = Color3.new(0.160784, 0.160784, 0.203922)
564ScrollingFrame.BorderSizePixel = 0
565ScrollingFrame.Position = UDim2.new(0, 0, 0.0729999989, 0)
566ScrollingFrame.Size = UDim2.new(1.04999995, 0, 0.92900002, 0)
567ScrollingFrame.CanvasSize = UDim2.new(0, 0, 10, 0)
568TextLabel.Parent = ScrollingFrame
569TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
570TextLabel.BackgroundTransparency = 1
571TextLabel.Size = UDim2.new(0.930000007, 0, 1, 0)
572TextLabel.Font = Enum.Font.SourceSans
573TextLabel.FontSize = Enum.FontSize.Size18
574TextLabel.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."
575TextLabel.TextColor3 = Color3.new(1, 1, 1)
576TextLabel.TextSize = 15
577TextLabel.TextWrapped = true
578TextLabel.TextXAlignment = Enum.TextXAlignment.Left
579TextLabel.TextYAlignment = Enum.TextYAlignment.Top
580closegui.Name = "closegui"
581closegui.Parent = CMDSFRAME
582closegui.BackgroundColor3 = Color3.new(0.890196, 0.223529, 0.0588235)
583closegui.BorderSizePixel = 0
584closegui.Position = UDim2.new(0.995000005, 0, 0, 0)
585closegui.Size = UDim2.new(0.0545952693, 0, 0.0728644878, 0)
586closegui.Font = Enum.Font.SourceSansBold
587closegui.FontSize = Enum.FontSize.Size24
588closegui.Text = "X"
589closegui.TextColor3 = Color3.new(1, 1, 1)
590closegui.TextSize = 20
591
592closegui.MouseButton1Click:connect(function()
593 CMDSFRAME.Visible = false
594end)
595
596game:GetService('RunService').Stepped:connect(function()
597 if spin then
598 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[spinplr.Name].Character.HumanoidRootPart.CFrame
599 end
600 if followed then
601 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[flwplr.Name].Character.HumanoidRootPart.CFrame + game:GetService("Players")[flwplr.Name].Character.HumanoidRootPart.CFrame.lookVector * -5
602 end
603 if traill then
604 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[trlplr.Name].Character.HumanoidRootPart.CFrame + game:GetService("Players")[trlplr.Name].Character.HumanoidRootPart.CFrame.lookVector * 5
605 end
606 if annoying then
607 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[annplr.Name].Character.HumanoidRootPart.CFrame
608 end
609 if hwalk then
610 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[hdwplr.Name].Character.HumanoidRootPart.CFrame + Vector3.new(0, 4, 0)
611 end
612 if staring then
613 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(lplayer.Character.Torso.Position, game:GetService("Players")[stareplr.Name].Character.Torso.Position)
614 end
615end)
616game:GetService('RunService').Stepped:connect(function()
617 if noclip then
618 if lplayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
619 lplayer.Character.Head.CanCollide = false
620 lplayer.Character.Torso.CanCollide = false
621 lplayer.Character["Left Leg"].CanCollide = false
622 lplayer.Character["Right Leg"].CanCollide = false
623 else
624 lplayer.Character.Humanoid:ChangeState(11)
625 end
626 end
627 if changingstate then
628 lplayer.Character.Humanoid:ChangeState(statechosen)
629 end
630end)
631game:GetService('RunService').Stepped:connect(function()
632 if droppinghats then
633 for i,v in pairs(lplayer.Character:GetChildren()) do
634 if (v:IsA("Accessory")) or (v:IsA("Hat")) then
635 v.Parent = workspace
636 end
637 end
638 end
639 if droppingtools then
640 for i,v in pairs(lplayer.Character:GetChildren()) do
641 if (v:IsA("Tool")) then
642 v.Parent = workspace
643 end
644 end
645 end
646 if removingmeshhats then
647 for i,v in pairs(lplayer.Character:GetChildren()) do
648 if (v:IsA("Accessory")) or (v:IsA("Hat")) then
649 v.Handle.Mesh:Destroy()
650 end
651 end
652 end
653 if removingmeshtool then
654 for i,v in pairs(lplayer.Character:GetChildren()) do
655 if (v:IsA("Tool")) then
656 v.Handle.Mesh:Destroy()
657 end
658 end
659 end
660end)
661game:GetService('RunService').Stepped:connect(function()
662 if banpl then
663 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[bplrr].Character.HumanoidRootPart.CFrame
664 end
665end)
666game:GetService('RunService').Stepped:connect(function()
667 if stopsitting then
668 lplayer.Character.Humanoid.Sit = false
669 end
670end)
671
672plr = lplayer
673hum = plr.Character.HumanoidRootPart
674mouse = plr:GetMouse()
675mouse.KeyDown:connect(function(key)
676 if key == "e" then
677 if mouse.Target then
678 if clickgoto then
679 hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
680 elseif clickdel then
681 mouse.Target:Destroy()
682 end
683 end
684 end
685end)
686
687game:GetService("Workspace").ChildAdded:connect(function(part)
688 if gettingtools then
689 if part:IsA("Tool") then
690 part.Handle.CFrame = lplayer.Character.HumanoidRootPart.CFrame
691 end
692 end
693end)
694
695lplayer.Chatted:Connect(function(msg)
696 if string.sub(msg, 1, 6) == (prefix.."kill ") then
697 if string.sub(msg, 7) == "me" then
698 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(100000,0,100000)
699 else
700 for i,v in pairs(GetPlayer(string.sub(msg, 7)))do
701 local NOW = lplayer.Character.HumanoidRootPart.CFrame
702 lplayer.Character.Humanoid.Name = 1
703 local l = lplayer.Character["1"]:Clone()
704 l.Parent = lplayer.Character
705 l.Name = "Humanoid"
706 wait(0.1)
707 lplayer.Character["1"]:Destroy()
708 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
709 lplayer.Character.Animate.Disabled = true
710 wait(0.1)
711 lplayer.Character.Animate.Disabled = false
712 lplayer.Character.Humanoid.DisplayDistanceType = "None"
713 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
714 lplayer.Character.Humanoid:EquipTool(v)
715 end
716 local function tp(player,player2)
717 local char1,char2=player.Character,player2.Character
718 if char1 and char2 then
719 char1:MoveTo(char2.Head.Position)
720 end
721 end
722 wait(0.1)
723 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
724 wait(0.2)
725 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
726 wait(0.5)
727 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
728 wait(0.7)
729 tp(lplayer,game:GetService("Players")[v.Name])
730 wait(0.7)
731 lplayer.Character.HumanoidRootPart.CFrame = NOW
732 game:GetService("StarterGui"):SetCore("SendNotification", {
733 Title = "Tools needed!";
734 Text = "You need a tool in your backpack for this command!";
735 })
736 end
737 end
738 end
739 if string.sub(msg, 1, 7) == (prefix.."bring ") then
740 for i,v in pairs(GetPlayer(string.sub(msg, 8)))do
741 local NOW = lplayer.Character.HumanoidRootPart.CFrame
742 lplayer.Character.Humanoid.Name = 1
743 local l = lplayer.Character["1"]:Clone()
744 l.Parent = lplayer.Character
745 l.Name = "Humanoid"
746 wait(0.1)
747 lplayer.Character["1"]:Destroy()
748 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
749 lplayer.Character.Animate.Disabled = true
750 wait(0.1)
751 lplayer.Character.Animate.Disabled = false
752 lplayer.Character.Humanoid.DisplayDistanceType = "None"
753 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
754 lplayer.Character.Humanoid:EquipTool(v)
755 end
756 local function tp(player,player2)
757 local char1,char2=player.Character,player2.Character
758 if char1 and char2 then
759 char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
760 end
761 end
762 local function getout(player,player2)
763 local char1,char2=player.Character,player2.Character
764 if char1 and char2 then
765 char1:MoveTo(char2.Head.Position)
766 end
767 end
768 tp(game:GetService("Players")[v.Name], lplayer)
769 wait(0.2)
770 tp(game:GetService("Players")[v.Name], lplayer)
771 wait(0.5)
772 lplayer.Character.HumanoidRootPart.CFrame = NOW
773 wait(0.5)
774 getout(lplayer, game:GetService("Players")[v.Name])
775 wait(0.3)
776 lplayer.Character.HumanoidRootPart.CFrame = NOW
777 game:GetService("StarterGui"):SetCore("SendNotification", {
778 Title = "Tools needed!";
779 Text = "You need a tool in your backpack for this command!";
780 })
781 end
782 end
783 if string.sub(msg, 1, 6) == (prefix.."spin ") then
784 for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
785 lplayer.Character.Humanoid.Name = 1
786 local l = lplayer.Character["1"]:Clone()
787 l.Parent = lplayer.Character
788 l.Name = "Humanoid"
789 wait(0.1)
790 lplayer.Character["1"]:Destroy()
791 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
792 lplayer.Character.Animate.Disabled = true
793 wait(0.1)
794 lplayer.Character.Animate.Disabled = false
795 lplayer.Character.Humanoid.DisplayDistanceType = "None"
796 lplayer.Character.Animate.Disabled = false
797 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
798 lplayer.Character.Humanoid:EquipTool(v)
799 end
800 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
801 spinplr = v
802 wait(0.5)
803 spin = true
804 game:GetService("StarterGui"):SetCore("SendNotification", {
805 Title = "Tools needed!";
806 Text = "You need a tool in your backpack for this command!";
807 })
808 end
809 end
810 if string.sub(msg, 1, 7) == (prefix.."unspin") then
811 spin = false
812 end
813 if string.sub(msg, 1, 8) == (prefix.."attach ") then
814 for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
815 lplayer.Character.Humanoid.Name = 1
816 local l = lplayer.Character["1"]:Clone()
817 l.Parent = lplayer.Character
818 l.Name = "Humanoid"
819 wait(0.1)
820 lplayer.Character["1"]:Destroy()
821 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
822 lplayer.Character.Animate.Disabled = true
823 wait(0.1)
824 lplayer.Character.Animate.Disabled = false
825 lplayer.Character.Humanoid.DisplayDistanceType = "None"
826 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
827 lplayer.Character.Humanoid:EquipTool(v)
828 end
829 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
830 wait(0.3)
831 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
832 attplr = v
833 game:GetService("StarterGui"):SetCore("SendNotification", {
834 Title = "Tools needed!";
835 Text = "You need a tool in your backpack for this command!";
836 })
837 end
838 end
839 if string.sub(msg, 1, 10) == (prefix.."unattach ") then
840 for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
841 local function getout(player,player2)
842 local char1,char2=player.Character,player2.Character
843 if char1 and char2 then
844 char1:MoveTo(char2.Head.Position)
845 end
846 end
847 getout(lplayer, game:GetService("Players")[v.Name])
848 end
849 end
850 if string.sub(msg, 1, 8) == (prefix.."follow ") then
851 for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
852 followed = true
853 flwplr = v
854 end
855 end
856 if string.sub(msg, 1, 9) == (prefix.."unfollow") then
857 followed = false
858 end
859 if string.sub(msg, 1, 10) == (prefix.."freefall ") then
860 for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
861 local NOW = lplayer.Character.HumanoidRootPart.CFrame
862 lplayer.Character.Humanoid.Name = 1
863 local l = lplayer.Character["1"]:Clone()
864 l.Parent = lplayer.Character
865 l.Name = "Humanoid"
866 wait(0.1)
867 lplayer.Character["1"]:Destroy()
868 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
869 lplayer.Character.Animate.Disabled = true
870 wait(0.1)
871 lplayer.Character.Animate.Disabled = false
872 lplayer.Character.Humanoid.DisplayDistanceType = "None"
873 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
874 lplayer.Character.Humanoid:EquipTool(v)
875 end
876 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
877 wait(0.2)
878 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
879 wait(0.6)
880 lplayer.Character.HumanoidRootPart.CFrame = NOW
881 wait(0.6)
882 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
883 game:GetService("StarterGui"):SetCore("SendNotification", {
884 Title = "Tools needed!";
885 Text = "You need a tool in your backpack for this command!";
886 })
887 end
888 end
889 if string.sub(msg, 1, 7) == (prefix.."trail ") then
890 for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
891 traill = true
892 trlplr = v
893 end
894 end
895 if string.sub(msg, 1, 8) == (prefix.."untrail") then
896 traill = false
897 end
898 if string.sub(msg, 1, 7) == (prefix.."orbit ") then
899 if string.sub(msg, 8) == "all" or string.sub(msg, 8) == "others" or string.sub(msg, 8) == "me" then
900 lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
901 else
902 for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
903 local o = Instance.new("RocketPropulsion")
904 o.Parent = lplayer.Character.HumanoidRootPart
905 o.Name = "Orbit"
906 o.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
907 o:Fire()
908 noclip = true
909 end
910 end
911 end
912 if string.sub(msg, 1, 8) == (prefix.."unorbit") then
913 lplayer.Character.HumanoidRootPart.Orbit:Destroy()
914 noclip = false
915 end
916 if string.sub(msg, 1, 7) == (prefix.."fling ") then
917 if string.sub(msg, 8) == "all" or string.sub(msg, 8) == "others" or string.sub(msg, 8) == "me" then
918 lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
919 else
920 for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
921 local y = Instance.new("RocketPropulsion")
922 y.Parent = lplayer.Character.HumanoidRootPart
923 y.CartoonFactor = 1
924 y.MaxThrust = 800000
925 y.MaxSpeed = 1000
926 y.ThrustP = 200000
927 y.Name = "Fling"
928 game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
929 y.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
930 y:Fire()
931 noclip = true
932 end
933 end
934 end
935 if string.sub(msg, 1, 8) == (prefix.."unfling") then
936 noclip = false
937 lplayer.Character.HumanoidRootPart.Fling:Destroy()
938 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
939 wait(0.4)
940 lplayer.Character.HumanoidRootPart.Fling:Destroy()
941 end
942 if string.sub(msg, 1, 8) == (prefix.."fecheck") then
943 if game:GetService("Workspace").FilteringEnabled == true then
944 warn("FE is Enabled (Filtering Enabled)")
945 game:GetService("StarterGui"):SetCore("SendNotification", {
946 Title = "FE is Enabled";
947 Text = "Filtering Enabled. Enjoy using Reviz Admin!";
948 })
949 else
950 warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
951 game:GetService("StarterGui"):SetCore("SendNotification", {
952 Title = "FE is Disabled";
953 Text = "Filtering Disabled. Consider using a different admin script.";
954 })
955 end
956 end
957 if string.sub(msg, 1, 6) == (prefix.."void ") then
958 for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
959 lplayer.Character.Humanoid.Name = 1
960 local l = lplayer.Character["1"]:Clone()
961 l.Parent = lplayer.Character
962 l.Name = "Humanoid"
963 wait(0.1)
964 lplayer.Character["1"]:Destroy()
965 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
966 lplayer.Character.Animate.Disabled = true
967 wait(0.1)
968 lplayer.Character.Animate.Disabled = false
969 lplayer.Character.Humanoid.DisplayDistanceType = "None"
970 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
971 lplayer.Character.Humanoid:EquipTool(v)
972 end
973 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
974 wait(0.2)
975 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
976 wait(0.6)
977 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(999999999999999,0,999999999999999)
978 game:GetService("StarterGui"):SetCore("SendNotification", {
979 Title = "Tools needed!";
980 Text = "You need a tool in your backpack for this command!";
981 })
982 end
983 end
984 if string.sub(msg, 1, 7) == (prefix.."noclip") then
985 noclip = true
986 game:GetService("StarterGui"):SetCore("SendNotification", {
987 Title = "Noclip enabled";
988 Text = "Type ;clip to disable";
989 })
990 end
991 if string.sub(msg, 1, 5) == (prefix.."clip") then
992 noclip = false
993 game:GetService("StarterGui"):SetCore("SendNotification", {
994 Title = "Noclip disabled";
995 Text = "Type ;noclip to enable";
996 })
997 end
998 if string.sub(msg, 1, 7) == (prefix.."speed ") then
999 lplayer.Character.Humanoid.WalkSpeed = (string.sub(msg, 8))
1000 end
1001 if string.sub(msg, 1, 4) == (prefix.."ws ") then
1002 lplayer.Character.Humanoid.WalkSpeed = (string.sub(msg, 5))
1003 end
1004 if string.sub(msg, 1, 11) == (prefix.."hipheight ") then
1005 lplayer.Character.Humanoid.HipHeight = (string.sub(msg, 12))
1006 end
1007 if string.sub(msg, 1, 4) == (prefix.."hh ") then
1008 lplayer.Character.Humanoid.HipHeight = (string.sub(msg, 5))
1009 end
1010 if string.sub(msg, 1, 11) == (prefix.."jumppower ") then
1011 lplayer.Character.Humanoid.JumpPower = (string.sub(msg, 12))
1012 end
1013 if string.sub(msg, 1, 4) == (prefix.."jp ") then
1014 lplayer.Character.Humanoid.JumpPower = (string.sub(msg, 5))
1015 end
1016 if string.sub(msg, 1, 8) == (prefix.."default") then
1017 lplayer.Character.Humanoid.JumpPower = 50
1018 lplayer.Character.Humanoid.WalkSpeed = 16
1019 lplayer.Character.Humanoid.HipHeight = 0
1020 end
1021 if string.sub(msg, 1, 7) == (prefix.."annoy ") then
1022 for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
1023 annoying = true
1024 annplr = v
1025 end
1026 end
1027 if string.sub(msg, 1, 8) == (prefix.."unannoy") then
1028 annoying = false
1029 end
1030 if string.sub(msg, 1, 10) == (prefix.."headwalk ") then
1031 for i,v in pairs(GetPlayer(string.sub(msg, 11))) do
1032 hwalk = true
1033 hdwplr = v
1034 end
1035 end
1036 if string.sub(msg, 1, 11) == (prefix.."unheadwalk") then
1037 hwalk = false
1038 end
1039 if string.sub(msg, 1, 8) == (prefix.."nolimbs") then
1040 lplayer.Character["Left Leg"]:Destroy()
1041 lplayer.Character["Left Arm"]:Destroy()
1042 lplayer.Character["Right Leg"]:Destroy()
1043 lplayer.Character["Right Arm"]:Destroy()
1044 end
1045 if string.sub(msg, 1, 4) == (prefix.."god") then
1046 lplayer.Character.Humanoid.Name = 1
1047 local l = lplayer.Character["1"]:Clone()
1048 l.Parent = lplayer.Character
1049 l.Name = "Humanoid"
1050 wait(0.1)
1051 lplayer.Character["1"]:Destroy()
1052 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
1053 lplayer.Character.Animate.Disabled = true
1054 wait(0.1)
1055 lplayer.Character.Animate.Disabled = false
1056 lplayer.Character.Humanoid.DisplayDistanceType = "None"
1057 game:GetService("StarterGui"):SetCore("SendNotification", {
1058 Title = "FE Godmode enabled";
1059 Text = "Use ;grespawn or ;respawn to remove";
1060 })
1061 end
1062 if string.sub(msg, 1, 9) == (prefix.."drophats") then
1063 for i,v in pairs(lplayer.Character:GetChildren()) do
1064 if (v:IsA("Accessory")) or (v:IsA("Hat")) then
1065 v.Parent = workspace
1066 end
1067 end
1068 end
1069 if string.sub(msg, 1, 9) == (prefix.."droptool") then
1070 for i,v in pairs(lplayer.Character:GetChildren()) do
1071 if (v:IsA("Tool")) then
1072 v.Parent = workspace
1073 end
1074 end
1075 end
1076 if string.sub(msg, 1, 10) == (prefix.."loopdhats") then
1077 droppinghats = true
1078 game:GetService("StarterGui"):SetCore("SendNotification", {
1079 Title = "Loop Drop Enabled";
1080 Text = "Type ;unloopdhats to disable";
1081 })
1082 end
1083 if string.sub(msg, 1, 12) == (prefix.."unloopdhats") then
1084 droppinghats = false
1085 game:GetService("StarterGui"):SetCore("SendNotification", {
1086 Title = "Loop Drop Disabled";
1087 Text = "Type ;loopdhats to enable.";
1088 })
1089 end
1090 if string.sub(msg, 1, 10) == (prefix.."loopdtool") then
1091 droppingtools = true
1092 game:GetService("StarterGui"):SetCore("SendNotification", {
1093 Title = "Loop Drop Enabled";
1094 Text = "Type ;unloopdtool to disable";
1095 })
1096 end
1097 if string.sub(msg, 1, 12) == (prefix.."unloopdtool") then
1098 droppingtools = false
1099 game:GetService("StarterGui"):SetCore("SendNotification", {
1100 Title = "Loop Drop Disabled";
1101 Text = "Type ;loopdtool to enable.";
1102 })
1103 end
1104 if string.sub(msg, 1, 10) == (prefix.."invisible") then -- Credit to Timeless
1105 Local = game:GetService('Players').LocalPlayer
1106 Char = Local.Character
1107 touched,tpdback = false, false
1108 box = Instance.new('Part',workspace)
1109 box.Anchored = true
1110 box.CanCollide = true
1111 box.Size = Vector3.new(10,1,10)
1112 box.Position = Vector3.new(0,10000,0)
1113 box.Touched:connect(function(part)
1114 if (part.Parent.Name == Local.Name) then
1115 if touched == false then
1116 touched = true
1117 function apply()
1118 if script.Disabled ~= true then
1119 no = Char.HumanoidRootPart:Clone()
1120 wait(.25)
1121 Char.HumanoidRootPart:Destroy()
1122 no.Parent = Char
1123 Char:MoveTo(loc)
1124 touched = false
1125 end end
1126 if Char then
1127 apply()
1128 end
1129 end
1130 end
1131 end)
1132 repeat wait() until Char
1133 loc = Char.HumanoidRootPart.Position
1134 Char:MoveTo(box.Position + Vector3.new(0,.5,0))
1135 game:GetService("StarterGui"):SetCore("SendNotification", {
1136 Title = "Invisibility enabled!";
1137 Text = "Reset or use ;respawn to remove.";
1138 })
1139 end
1140 if string.sub(msg, 1, 6) == (prefix.."view ") then
1141 for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
1142 if game:GetService("Players")[v.Name].Character.Humanoid then
1143 game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Humanoid
1144 else
1145 game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
1146 end
1147 end
1148 end
1149 if string.sub(msg, 1, 7) == (prefix.."unview") then
1150 if lplayer.Character.Humanoid then
1151 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
1152 else
1153 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
1154 end
1155 end
1156 if string.sub(msg, 1, 6) == (prefix.."goto ") then
1157 for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
1158 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
1159 end
1160 end
1161 if string.sub(msg, 1, 4) == (prefix.."fly") then
1162 repeat wait() until lplayer and lplayer.Character and lplayer.Character:FindFirstChild('HumanoidRootPart') and lplayer.Character:FindFirstChild('Humanoid')
1163 repeat wait() until Mouse
1164
1165 local T = lplayer.Character.HumanoidRootPart
1166 local CONTROL = {F = 0, B = 0, L = 0, R = 0}
1167 local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
1168 local SPEED = speedget
1169
1170 local function fly()
1171 flying = true
1172 local BG = Instance.new('BodyGyro', T)
1173 local BV = Instance.new('BodyVelocity', T)
1174 BG.P = 9e4
1175 BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
1176 BG.cframe = T.CFrame
1177 BV.velocity = Vector3.new(0, 0.1, 0)
1178 BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
1179 spawn(function()
1180 repeat wait()
1181 lplayer.Character.Humanoid.PlatformStand = true
1182 if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
1183 SPEED = 50
1184 elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
1185 SPEED = 0
1186 end
1187 if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
1188 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
1189 lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
1190 elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
1191 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
1192 else
1193 BV.velocity = Vector3.new(0, 0.1, 0)
1194 end
1195 BG.cframe = workspace.CurrentCamera.CoordinateFrame
1196 until not flying
1197 CONTROL = {F = 0, B = 0, L = 0, R = 0}
1198 lCONTROL = {F = 0, B = 0, L = 0, R = 0}
1199 SPEED = 0
1200 BG:destroy()
1201 BV:destroy()
1202 lplayer.Character.Humanoid.PlatformStand = false
1203 end)
1204 end
1205 Mouse.KeyDown:connect(function(KEY)
1206 if KEY:lower() == 'w' then
1207 CONTROL.F = speedfly
1208 elseif KEY:lower() == 's' then
1209 CONTROL.B = -speedfly
1210 elseif KEY:lower() == 'a' then
1211 CONTROL.L = -speedfly
1212 elseif KEY:lower() == 'd' then
1213 CONTROL.R = speedfly
1214 end
1215 end)
1216 Mouse.KeyUp:connect(function(KEY)
1217 if KEY:lower() == 'w' then
1218 CONTROL.F = 0
1219 elseif KEY:lower() == 's' then
1220 CONTROL.B = 0
1221 elseif KEY:lower() == 'a' then
1222 CONTROL.L = 0
1223 elseif KEY:lower() == 'd' then
1224 CONTROL.R = 0
1225 end
1226 end)
1227 fly()
1228 end
1229 if string.sub(msg, 1, 6) == (prefix.."unfly") then
1230 flying = false
1231 lplayer.Character.Humanoid.PlatformStand = false
1232 end
1233 if string.sub(msg, 1, 6) == (prefix.."chat ") then
1234 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer((string.sub(msg, 7)), "All")
1235 end
1236 if string.sub(msg, 1, 6) == (prefix.."spam ") then
1237 spamtext = (string.sub(msg, 7))
1238 spamming = true
1239 end
1240 if string.sub(msg, 1, 7) == (prefix.."unspam") then
1241 spamming = false
1242 end
1243 if string.sub(msg, 1, 10) == (prefix.."spamwait ") then
1244 spamdelay = (string.sub(msg, 11))
1245 end
1246 if string.sub(msg, 1, 8) == (prefix.."pmspam ") then
1247 for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
1248 pmspammed = v.Name
1249 spammingpm = true
1250 end
1251 end
1252 if string.sub(msg, 1, 9) == (prefix.."unpmspam") then
1253 spammingpm = false
1254 end
1255 if string.sub(msg, 1, 9) == (prefix.."cfreeze ") then
1256 for i,v in pairs(GetPlayer(string.sub(msg, 10))) do
1257 v.Character["Left Leg"].Anchored = true
1258 v.Character["Left Arm"].Anchored = true
1259 v.Character["Right Leg"].Anchored = true
1260 v.Character["Right Arm"].Anchored = true
1261 v.Character.Torso.Anchored = true
1262 v.Character.Head.Anchored = true
1263 end
1264 end
1265 if string.sub(msg, 1, 11) == (prefix.."uncfreeze ") then
1266 for i,v in pairs(GetPlayer(string.sub(msg, 12))) do
1267 v.Character["Left Leg"].Anchored = false
1268 v.Character["Left Arm"].Anchored = false
1269 v.Character["Right Leg"].Anchored = false
1270 v.Character["Right Arm"].Anchored = false
1271 v.Character.Torso.Anchored = false
1272 v.Character.Head.Anchored = false
1273 end
1274 end
1275 if string.sub(msg, 1, 9) == (prefix.."unlockws") then
1276 local a = game:GetService("Workspace"):getChildren()
1277 for i = 1, #a do
1278 if a[i].className == "Part" then
1279 a[i].Locked = false
1280 elseif a[i].className == "Model" then
1281 local r = a[i]:getChildren()
1282 for i = 1, #r do
1283 if r[i].className == "Part" then
1284 r[i].Locked = false
1285 end
1286 end
1287 end
1288 end
1289 game:GetService("StarterGui"):SetCore("SendNotification", {
1290 Title = "Success!";
1291 Text = "Workspace unlocked. Use ;lockws to lock.";
1292 })
1293 end
1294 if string.sub(msg, 1, 7) == (prefix.."lockws") then
1295 local a = game:GetService("Workspace"):getChildren()
1296 for i = 1, #a do
1297 if a[i].className == "Part" then
1298 a[i].Locked = true
1299 elseif a[i].className == "Model" then
1300 local r = a[i]:getChildren()
1301 for i = 1, #r do
1302 if r[i].className == "Part" then
1303 r[i].Locked = true
1304 end
1305 end
1306 end
1307 end
1308 end
1309 if string.sub(msg, 1, 7) == (prefix.."btools") then
1310 local Clone_T = Instance.new("HopperBin",lplayer.Backpack)
1311 Clone_T.BinType = "Clone"
1312 local Destruct = Instance.new("HopperBin",lplayer.Backpack)
1313 Destruct.BinType = "Hammer"
1314 local Hold_T = Instance.new("HopperBin",lplayer.Backpack)
1315 Hold_T.BinType = "Grab"
1316 end
1317 if string.sub(msg, 1, 7) == (prefix.."pstand") then
1318 lplayer.Character.Humanoid.PlatformStand = true
1319 end
1320 if string.sub(msg, 1, 9) == (prefix.."unpstand") then
1321 lplayer.Character.Humanoid.PlatformStand = false
1322 end
1323 if string.sub(msg, 1, 10) == (prefix.."blockhead") then
1324 lplayer.Character.Head.Mesh:Destroy()
1325 end
1326 if string.sub(msg, 1, 4) == (prefix.."sit") then
1327 lplayer.Character.Humanoid.Sit = true
1328 end
1329 if string.sub(msg, 1, 10) == (prefix.."bringobj ") then
1330 local function bringobjw()
1331 for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
1332 if obj.Name == (string.sub(msg, 11)) then
1333 obj.CFrame = lplayer.Character.HumanoidRootPart.CFrame
1334 obj.CanCollide = false
1335 obj.Transparency = 0.7
1336 wait()
1337 obj.CFrame = lplayer.Character["Left Leg"].CFrame
1338 wait()
1339 obj.CFrame = lplayer.Character["Right Leg"].CFrame
1340 wait()
1341 obj.CFrame = lplayer.Character["Head"].CFrame
1342 end
1343 end
1344 end
1345 while wait() do
1346 bringobjw()
1347 end
1348 game:GetService("StarterGui"):SetCore("SendNotification", {
1349 Title = "BringObj";
1350 Text = "BringObj enabled.";
1351 })
1352 end
1353 if string.sub(msg, 1, 7) == (prefix.."wsvis ") then
1354 vis = (string.sub(msg, 8))
1355 local a = game:GetService("Workspace"):GetDescendants()
1356 for i = 1, #a do
1357 if a[i].className == "Part" then
1358 a[i].Transparency = vis
1359 elseif a[i].className == "Model" then
1360 local r = a[i]:getChildren()
1361 for i = 1, #r do
1362 if r[i].className == "Part" then
1363 r[i].Transparency = vis
1364 end
1365 end
1366 end
1367 end
1368 end
1369 if string.sub(msg, 1, 11) == (prefix.."hypertotal") then
1370 loadstring(game:GetObjects("rbxassetid://1255063809")[1].Source)()
1371 game:GetService("StarterGui"):SetCore("SendNotification", {
1372 Title = "Success!";
1373 Text = "HyperTotal GUI Loaded!";
1374 })
1375 end
1376 if string.sub(msg, 1, 5) == (prefix.."cmds") then
1377 CMDSFRAME.Visible = true
1378 end
1379 if string.sub(msg, 1, 10) == (prefix.."rmeshhats") then
1380 for i,v in pairs(lplayer.Character:GetChildren()) do
1381 if (v:IsA("Accessory")) or (v:IsA("Hat")) then
1382 v.Handle.Mesh:Destroy()
1383 end
1384 end
1385 end
1386 if string.sub(msg, 1, 10) == (prefix.."blockhats") then
1387 for i,v in pairs(lplayer.Character:GetChildren()) do
1388 if (v:IsA("Accessory")) or (v:IsA("Hat")) then
1389 v.Handle.Mesh:Destroy()
1390 end
1391 end
1392 end
1393 if string.sub(msg, 1, 10) == (prefix.."rmeshtool") then
1394 for i,v in pairs(lplayer.Character:GetChildren()) do
1395 if (v:IsA("Tool")) then
1396 v.Handle.Mesh:Destroy()
1397 end
1398 end
1399 end
1400 if string.sub(msg, 1, 10) == (prefix.."blocktool") then
1401 for i,v in pairs(lplayer.Character:GetChildren()) do
1402 if (v:IsA("Tool")) then
1403 v.Handle.Mesh:Destroy()
1404 end
1405 end
1406 end
1407 if string.sub(msg, 1, 8) == (prefix.."spinner") then
1408 local p = Instance.new("RocketPropulsion")
1409 p.Parent = lplayer.Character.HumanoidRootPart
1410 p.Name = "Spinner"
1411 p.Target = lplayer.Character["Left Arm"]
1412 p:Fire()
1413 game:GetService("StarterGui"):SetCore("SendNotification", {
1414 Title = "Spinner enabled";
1415 Text = "Type ;nospinner to disable.";
1416 })
1417 end
1418 if string.sub(msg, 1, 10) == (prefix.."nospinner") then
1419 lplayer.Character.HumanoidRootPart.Spinner:Destroy()
1420 end
1421 if string.sub(msg, 1, 7) == (prefix.."reachd") then
1422 for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
1423 if v:isA("Tool") then
1424 local a = Instance.new("SelectionBox",v.Handle)
1425 a.Adornee = v.Handle
1426 v.Handle.Size = Vector3.new(0.5,0.5,60)
1427 v.GripPos = Vector3.new(0,0,0)
1428 lplayer.Character.Humanoid:UnequipTools()
1429 end
1430 end
1431 game:GetService("StarterGui"):SetCore("SendNotification", {
1432 Title = "Reach applied!";
1433 Text = "Applied to equipped sword. Use ;noreach to disable.";
1434 })
1435 end
1436 if string.sub(msg, 1, 7) == (prefix.."reach ") then
1437 for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
1438 if v:isA("Tool") then
1439 handleSize = v.Handle.Size
1440 wait()
1441 local a = Instance.new("SelectionBox",v.Handle)
1442 a.Name = "a"
1443 a.Adornee = v.Handle
1444 v.Handle.Size = Vector3.new(0.5,0.5,(string.sub(msg, 8)))
1445 v.GripPos = Vector3.new(0,0,0)
1446 lplayer.Character.Humanoid:UnequipTools()
1447 end
1448 end
1449 game:GetService("StarterGui"):SetCore("SendNotification", {
1450 Title = "Reach applied!";
1451 Text = "Applied to equipped sword. Use ;noreach to disable.";
1452 })
1453 end
1454 if string.sub(msg, 1, 8) == (prefix.."noreach") then
1455 for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
1456 if v:isA("Tool") then
1457 v.Handle.a:Destroy()
1458 v.Handle.Size = handleSize
1459 end
1460 end
1461 game:GetService("StarterGui"):SetCore("SendNotification", {
1462 Title = "Reach removed!";
1463 Text = "Removed reach from equipped sword.";
1464 })
1465 end
1466 if string.sub(msg, 1, 7) == (prefix.."rkill ") then
1467 for i,v in pairs(GetPlayer(string.sub(msg, 8)))do
1468 lplayer.Character.Humanoid.Name = 1
1469 local l = lplayer.Character["1"]:Clone()
1470 l.Parent = lplayer.Character
1471 l.Name = "Humanoid"
1472 wait(0.1)
1473 lplayer.Character["1"]:Destroy()
1474 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
1475 lplayer.Character.Animate.Disabled = true
1476 wait(0.1)
1477 lplayer.Character.Animate.Disabled = false
1478 lplayer.Character.Humanoid.DisplayDistanceType = "None"
1479 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
1480 lplayer.Character.Humanoid:EquipTool(v)
1481 end
1482 wait(0.1)
1483 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
1484 wait(0.2)
1485 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
1486 wait(0.5)
1487 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
1488 game:GetService("StarterGui"):SetCore("SendNotification", {
1489 Title = "Tools needed!";
1490 Text = "You need a tool in your backpack for this command!";
1491 })
1492 end
1493 end
1494 if string.sub(msg, 1, 7) == (prefix.."tp me ") then
1495 for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
1496 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
1497 end
1498 end
1499 if string.sub(msg, 1, 8) == (prefix.."cbring ") then
1500 if (string.sub(msg, 9)) == "all" or (string.sub(msg, 9)) == "All" or (string.sub(msg, 9)) == "ALL" then
1501 cbringall = true
1502 else
1503 for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
1504 brplr = v.Name
1505 end
1506 end
1507 cbring = true
1508 end
1509 if string.sub(msg, 1, 9) == (prefix.."uncbring") then
1510 cbring = false
1511 cbringall = false
1512 end
1513 if string.sub(msg, 1, 6) == (prefix.."swap ") then
1514 for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
1515 local NOWPLR = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
1516 local NOW = lplayer.Character.HumanoidRootPart.CFrame
1517 lplayer.Character.Humanoid.Name = 1
1518 local l = lplayer.Character["1"]:Clone()
1519 l.Parent = lplayer.Character
1520 l.Name = "Humanoid"
1521 wait(0.1)
1522 lplayer.Character["1"]:Destroy()
1523 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
1524 lplayer.Character.Animate.Disabled = true
1525 wait(0.1)
1526 lplayer.Character.Animate.Disabled = false
1527 lplayer.Character.Humanoid.DisplayDistanceType = "None"
1528 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
1529 lplayer.Character.Humanoid:EquipTool(v)
1530 end
1531 local function tp(player,player2)
1532 local char1,char2=player.Character,player2.Character
1533 if char1 and char2 then
1534 char1:MoveTo(char2.Head.Position)
1535 end
1536 end
1537 wait(0.1)
1538 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
1539 wait(0.2)
1540 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
1541 wait(0.5)
1542 lplayer.Character.HumanoidRootPart.CFrame = NOW
1543 wait(0.6)
1544 tp(lplayer, game:GetService("Players")[v.Name])
1545 wait(0.4)
1546 lplayer.Character.HumanoidRootPart.CFrame = NOWPLR
1547 game:GetService("StarterGui"):SetCore("SendNotification", {
1548 Title = "Tools needed!";
1549 Text = "You need a tool in your backpack for this command!";
1550 })
1551 end
1552 end
1553 if string.sub(msg, 1, 8) == (prefix.."glitch ") then
1554 for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
1555 lplayer.Character.Humanoid.Name = 1
1556 local l = lplayer.Character["1"]:Clone()
1557 l.Parent = lplayer.Character
1558 l.Name = "Humanoid"
1559 wait(0.1)
1560 lplayer.Character["1"]:Destroy()
1561 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
1562 lplayer.Character.Animate.Disabled = true
1563 wait(0.1)
1564 lplayer.Character.Animate.Disabled = false
1565 lplayer.Character.Humanoid.DisplayDistanceType = "None"
1566 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
1567 lplayer.Character.Humanoid:EquipTool(v)
1568 end
1569 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
1570 wait(0.3)
1571 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
1572 wait(0.4)
1573 b = Instance.new("BodyForce")
1574 b.Parent = lplayer.Character.HumanoidRootPart
1575 b.Name = "Glitch"
1576 b.Force = Vector3.new(100000000,5000,0)
1577 game:GetService("StarterGui"):SetCore("SendNotification", {
1578 Title = "Tools needed!";
1579 Text = "You need a tool in your backpack for this command!";
1580 })
1581 end
1582 end
1583 if string.sub(msg, 1, 9) == (prefix.."unglitch") then
1584 lplayer.Character.HumanoidRootPart.Glitch:Destroy()
1585 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(10000,0,10000)
1586 b = Instance.new("BodyForce")
1587 b.Parent = lplayer.Character.HumanoidRootPart
1588 b.Name = "unGlitch"
1589 b.Force = Vector3.new(0,-5000000,0)
1590 wait(2)
1591 lplayer.Character.HumanoidRootPart.unGlitch:Destroy()
1592 end
1593 if string.sub(msg, 1, 9) == (prefix.."grespawn") then
1594 lplayer.Character.Humanoid.Health = 0
1595 wait(1)
1596 lplayer.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
1597 lplayer.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
1598 end
1599 if string.sub(msg, 1, 9) == (prefix.."explorer") then
1600 loadstring(game:GetObjects("rbxassetid://492005721")[1].Source)()
1601 game:GetService("StarterGui"):SetCore("SendNotification", {
1602 Title = "Success!";
1603 Text = "DEX Explorer has loaded.";
1604 })
1605 end
1606 if string.sub(msg, 1, 6) == (prefix.."anim ") then
1607 local Anim = Instance.new("Animation")
1608 Anim.AnimationId = "rbxassetid://"..(string.sub(msg, 7))
1609 local track = lplayer.Character.Humanoid:LoadAnimation(Anim)
1610 track:Play(.1, 1, 1)
1611 end
1612 if string.sub(msg, 1, 8) == (prefix.."animgui") then
1613 loadstring(game:GetObjects("rbxassetid://1202558084")[1].Source)()
1614 game:GetService("StarterGui"):SetCore("SendNotification", {
1615 Title = "Success!";
1616 Text = "Energize Animations GUI has loaded.";
1617 })
1618 end
1619 if string.sub(msg, 1, 8) == (prefix.."savepos") then
1620 saved = lplayer.Character.HumanoidRootPart.CFrame
1621 game:GetService("StarterGui"):SetCore("SendNotification", {
1622 Title = "Position Saved";
1623 Text = "Use ;loadpos to return to saved position.";
1624 })
1625 end
1626 if string.sub(msg, 1, 8) == (prefix.."loadpos") then
1627 lplayer.Character.HumanoidRootPart.CFrame = saved
1628 end
1629 if string.sub(msg, 1, 6) == (prefix.."bang ") then
1630 for i,v in pairs(GetPlayer(string.sub(msg, 7))) do
1631 local Anim2 = Instance.new("Animation")
1632 Anim2.AnimationId = "rbxassetid://148840371"
1633 local track2 = lplayer.Character.Humanoid:LoadAnimation(Anim2)
1634 track2:Play(.1, 1, 1)
1635 bplrr = v.Name
1636 banpl = true
1637 end
1638 end
1639 if string.sub(msg, 1, 7) == (prefix.."unbang") then
1640 banpl = false
1641 end
1642 if string.sub(msg, 1, 10) == (prefix.."bringmod ") then
1643 local function bringmodw()
1644 for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
1645 if obj.Name == (string.sub(msg, 11)) then
1646 for i,ch in pairs(obj:GetDescendants()) do
1647 if (ch:IsA("BasePart")) then
1648 ch.CFrame = lplayer.Character.HumanoidRootPart.CFrame
1649 ch.CanCollide = false
1650 ch.Transparency = 0.7
1651 wait()
1652 ch.CFrame = lplayer.Character["Left Leg"].CFrame
1653 wait()
1654 ch.CFrame = lplayer.Character["Right Leg"].CFrame
1655 wait()
1656 ch.CFrame = lplayer.Character["Head"].CFrame
1657 end
1658 end
1659 end
1660 end
1661 end
1662 while wait() do
1663 bringmodw()
1664 end
1665 game:GetService("StarterGui"):SetCore("SendNotification", {
1666 Title = "BringMod";
1667 Text = "BringMod enabled.";
1668 })
1669 end
1670 if string.sub(msg, 1, 8) == (prefix.."respawn") then
1671 local mod = Instance.new('Model', workspace) mod.Name = 're '..lplayer.Name
1672 local hum = Instance.new('Humanoid', mod)
1673 local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
1674 lplayer.Character = mod
1675 end
1676 if string.sub(msg, 1, 9) == (prefix.."shutdown") then
1677 game:GetService'RunService'.Stepped:Connect(function()
1678 pcall(function()
1679 for i,v in pairs(game:GetService'Players':GetPlayers()) do
1680 if v.Character ~= nil and v.Character:FindFirstChild'Head' then
1681 for _,x in pairs(v.Character.Head:GetChildren()) do
1682 if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true) end
1683 end
1684 end
1685 end
1686 end)
1687 end)
1688 game:GetService("StarterGui"):SetCore("SendNotification", {
1689 Title = "Attempting Shutdown";
1690 Text = "Shutdown Attempt has begun.";
1691 })
1692 end
1693 if string.sub(msg, 1, 8) == (prefix.."delobj ") then
1694 objtodel = (string.sub(msg, 9))
1695 for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
1696 if v.Name == objtodel then
1697 v:Destroy()
1698 end
1699 end
1700 end
1701 if string.sub(msg, 1, 8) == (prefix.."getplrs") then
1702 for i,v in pairs(game:GetService("Players"):GetPlayers())do
1703 print(v)
1704 end
1705 game:GetService("StarterGui"):SetCore("SendNotification", {
1706 Title = "Printed";
1707 Text = "Players have been printed to console. (F9)";
1708 })
1709 end
1710 if string.sub(msg, 1, 9) == (prefix.."deldecal") then
1711 for i,v in pairs(game:GetService("Workspace"):GetDescendants())do
1712 if (v:IsA("Decal")) then
1713 v:Destroy()
1714 end
1715 end
1716 end
1717 if string.sub(msg, 1, 11) == (prefix.."opfinality") then
1718 loadstring(game:GetObjects("rbxassetid://1294358929")[1].Source)()
1719 game:GetService("StarterGui"):SetCore("SendNotification", {
1720 Title = "Success!";
1721 Text = "OpFinality GUI has loaded.";
1722 })
1723 end
1724 if string.sub(msg, 1, 8) == (prefix.."remotes") then
1725 remotes = true
1726 added = true
1727 game.DescendantAdded:connect(function(rmt)
1728 if added == true then
1729 if remotes == true then
1730 if rmt:IsA("RemoteEvent") then
1731 print("A RemoteEvent was added!")
1732 print(" game." .. rmt:GetFullName() .. " | RemoteEvent")
1733 print(" game." .. rmt:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
1734 end end end
1735 end)
1736 game.DescendantAdded:connect(function(rmtfnctn)
1737 if added == true then
1738 if remotes == true then
1739 if rmtfnctn:IsA("RemoteFunction") then
1740 warn("A RemoteFunction was added!")
1741 warn(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction")
1742 print(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
1743 end end end
1744 end)
1745
1746 game.DescendantAdded:connect(function(bndfnctn)
1747 if added == true then
1748 if binds == true then
1749 if bndfnctn:IsA("BindableFunction") then
1750 print("A BindableFunction was added!")
1751 print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction")
1752 print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
1753 end end end
1754 end)
1755
1756 game.DescendantAdded:connect(function(bnd)
1757 if added == true then
1758 if binds == true then
1759 if bnd:IsA("BindableEvent") then
1760 warn("A BindableEvent was added!")
1761 warn(" game." .. bnd:GetFullName() .. " | BindableEvent")
1762 print(" game." .. bnd:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
1763 end end end
1764 end)
1765
1766
1767 if binds == true then
1768 for i,v in pairs(game:GetDescendants()) do
1769 if v:IsA("BindableFunction") then
1770 print(" game." .. v:GetFullName() .. " | BindableFunction")
1771 print(" game." .. v:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
1772 end end
1773 for i,v in pairs(game:GetDescendants()) do
1774 if v:IsA("BindableEvent") then
1775 warn(" game." .. v:GetFullName() .. " | BindableEvent")
1776 print(" game." .. v:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
1777 end end
1778 else
1779 print("Off")
1780 end
1781 if remotes == true then
1782 for i,v in pairs(game:GetDescendants()) do
1783 if v:IsA("RemoteFunction") then
1784 warn(" game." .. v:GetFullName() .. " | RemoteFunction")
1785 print(" game." .. v:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
1786 end end
1787 wait()
1788 for i,v in pairs(game:GetDescendants()) do
1789 if v:IsA("RemoteEvent") then
1790 print(" game." .. v:GetFullName() .. " | RemoteEvent")
1791 print(" game." .. v:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
1792 end end
1793 else
1794 print("Off")
1795 end
1796 game:GetService("StarterGui"):SetCore("SendNotification", {
1797 Title = "Printing Remotes";
1798 Text = "Type ;noremotes to disable.";
1799 })
1800 end
1801 if string.sub(msg, 1, 10) == (prefix.."noremotes") then
1802 remotes = false
1803 added = false
1804 game:GetService("StarterGui"):SetCore("SendNotification", {
1805 Title = "Printing Remotes Disabled";
1806 Text = "Type ;remotes to enable.";
1807 })
1808 end
1809 if string.sub(msg, 1, 10) == (prefix.."tpdefault") then
1810 spin = false
1811 followed = false
1812 traill = false
1813 noclip = false
1814 annoying = false
1815 hwalk = false
1816 cbringing = false
1817 end
1818 if string.sub(msg, 1, 8) == (prefix.."stopsit") then
1819 stopsitting = true
1820 end
1821 if string.sub(msg, 1, 6) == (prefix.."gosit") then
1822 stopsitting = false
1823 end
1824 if string.sub(msg, 1, 8) == (prefix.."version") then
1825 print(adminversion)
1826 game:GetService("StarterGui"):SetCore("SendNotification", {
1827 Title = "Version";
1828 Text = adminversion;
1829 })
1830 end
1831 if string.sub(msg, 1, 8) == (prefix.."clicktp") then
1832 clickgoto = true
1833 game:GetService("StarterGui"):SetCore("SendNotification", {
1834 Title = "Click TP";
1835 Text = "Press E to teleport to mouse position, ;noclicktp to stop";
1836 })
1837 end
1838 if string.sub(msg, 1, 9) == (prefix.."clickdel") then
1839 clickdel = true
1840 game:GetService("StarterGui"):SetCore("SendNotification", {
1841 Title = "Click Delete";
1842 Text = "Press E to delete part at mouse, ;noclickdel to stop";
1843 })
1844 end
1845 if string.sub(msg, 1, 11) == (prefix.."noclickdel") then
1846 clickdel = false
1847 game:GetService("StarterGui"):SetCore("SendNotification", {
1848 Title = "Click Delete";
1849 Text = "Click delete has been disabled.";
1850 })
1851 end
1852 if string.sub(msg, 1, 10) == (prefix.."noclicktp") then
1853 clickgoto = false
1854 game:GetService("StarterGui"):SetCore("SendNotification", {
1855 Title = "Click TP";
1856 Text = "Click TP has been disabled.";
1857 })
1858 end
1859 if string.sub(msg, 1, 8) == (prefix.."toolson") then
1860 gettingtools = true
1861 game:GetService("StarterGui"):SetCore("SendNotification", {
1862 Title = "Tools Enabled";
1863 Text = "Automatically colleting tools dropped.";
1864 })
1865 end
1866 if string.sub(msg, 1, 9) == (prefix.."toolsoff") then
1867 gettingtools = false
1868 game:GetService("StarterGui"):SetCore("SendNotification", {
1869 Title = "Tools Disabled";
1870 Text = "Click TP has been disabled.";
1871 })
1872 end
1873 if string.sub(msg, 1, 10) == (prefix.."delcmdbar") then
1874 ScreenGui:Destroy()
1875 end
1876 if string.sub(msg, 1, 6) == (prefix.."reset") then
1877 lplayer.Character.Head:Destroy()
1878 end
1879 if string.sub(msg, 1, 7) == (prefix.."state ") then
1880 statechosen = string.sub(msg, 8)
1881 changingstate = true
1882 end
1883 if string.sub(msg, 1, 9) == (prefix.."gravity ") then
1884 game:GetService("Workspace").Gravity = string.sub(msg, 10)
1885 end
1886 if string.sub(msg, 1, 10) == (prefix.."looprhats") then
1887 removingmeshhats = true
1888 end
1889 if string.sub(msg, 1, 12) == (prefix.."unlooprhats") then
1890 removingmeshhats = false
1891 end
1892 if string.sub(msg, 1, 10) == (prefix.."looprtool") then
1893 removingmeshtool = true
1894 end
1895 if string.sub(msg, 1, 12) == (prefix.."unlooprtool") then
1896 removingmeshtool = false
1897 end
1898 if string.sub(msg, 1, 10) == (prefix.."givetool ") then
1899 for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
1900 if v:IsA("Tool") then
1901 for i,player in pairs(GetPlayer(string.sub(msg, 11))) do
1902 v.Parent = player.Character
1903 end
1904 end
1905 end
1906 end
1907 if string.sub(msg, 1, 14) == (prefix.."givealltools ") then
1908 for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do
1909 if v:IsA("Tool") then
1910 v.Parent = lplayer.Character
1911 wait()
1912 for i,player in pairs(GetPlayer(string.sub(msg, 15))) do
1913 v.Parent = player.Character
1914 end
1915 end
1916 end
1917 end
1918 if string.sub(msg, 1, 5) == (prefix.."age ") then
1919 for i,player in pairs(GetPlayer(string.sub(msg, 6))) do
1920 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account Age: "..player.AccountAge.." days!", "All")
1921 end
1922 end
1923 if string.sub(msg, 1, 4) == (prefix.."id ") then
1924 for i,player in pairs(GetPlayer(string.sub(msg, 5))) do
1925 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account ID: "..player.UserId, "All")
1926 end
1927 end
1928 if string.sub(msg, 1, 6) == (prefix..".age ") then
1929 for i,player in pairs(GetPlayer(string.sub(msg, 7))) do
1930 game:GetService("StarterGui"):SetCore("SendNotification", {
1931 Title = player.AccountAge.." Days";
1932 Text = "Account age of "..player.Name;
1933 })
1934 end
1935 end
1936 if string.sub(msg, 1, 5) == (prefix..".id ") then
1937 for i,player in pairs(GetPlayer(string.sub(msg, 6))) do
1938 game:GetService("StarterGui"):SetCore("SendNotification", {
1939 Title = player.UserId.." ID";
1940 Text = "Account ID of "..player.Name;
1941 })
1942 end
1943 end
1944 if string.sub(msg, 1, 7) == (prefix.."gameid") then
1945 game:GetService("StarterGui"):SetCore("SendNotification", {
1946 Title = "Game ID";
1947 Text = "Game ID: ".. game.GameId;
1948 })
1949 end
1950 if string.sub(msg, 1, 4) == (prefix.."pgs") then
1951 local pgscheck = game:GetService("Workspace"):PGSIsEnabled()
1952 if pgscheck == true then
1953 game:GetService("StarterGui"):SetCore("SendNotification", {
1954 Title = "PGSPhysicsSolverEnabled";
1955 Text = "PGS is Enabled!";
1956 })
1957 else
1958 game:GetService("StarterGui"):SetCore("SendNotification", {
1959 Title = "PGSPhysicsSolverEnabled";
1960 Text = "PGS is Disabled!";
1961 })
1962 end
1963 end
1964 if string.sub(msg, 1, 12) == (prefix.."removeinvis") then
1965 for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
1966 if v:IsA("Part") then
1967 if v.Transparency == 1 then
1968 if v.Name ~= "HumanoidRootPart" then
1969 v:Destroy()
1970 end
1971 end
1972 end
1973 end
1974 end
1975 if string.sub(msg, 1, 10) == (prefix.."removefog") then
1976 game:GetService("Lighting").FogStart = 0
1977 game:GetService("Lighting").FogEnd = 9999999999999
1978 end
1979 if string.sub(msg, 1, 8) == (prefix.."disable") then
1980 lplayer.Character.Humanoid.Parent = lplayer
1981 end
1982 if string.sub(msg, 1, 7) == (prefix.."enable") then
1983 lplayer.Humanoid.Parent = lplayer.Character
1984 end
1985 if string.sub(msg, 1, 8) == (prefix.."prefix ") then
1986 prefix = (string.sub(msg, 9, 9))
1987 wait(0.1)
1988 change()
1989 wait(0.1)
1990 game:GetService("StarterGui"):SetCore("SendNotification", {
1991 Title = "Prefix changed!";
1992 Text = "Prefix is now "..prefix..". Use ;resetprefix to reset to ;";
1993 })
1994 end
1995 if string.sub(msg, 1, 12) == (";resetprefix") then
1996 prefix = ";"
1997 wait(0.1)
1998 change()
1999 wait(0.1)
2000 game:GetService("StarterGui"):SetCore("SendNotification", {
2001 Title = "Prefix changed!";
2002 Text = "Prefix is now "..prefix..". Make sure it's one key!";
2003 })
2004 end
2005 if string.sub(msg, 1, 10) == (prefix.."flyspeed ") then
2006 speedfly = string.sub(msg, 11)
2007 wait()
2008 change()
2009 end
2010 if string.sub(msg, 1, 8) == (prefix.."carpet ") then
2011 for i,v in pairs(GetPlayer(string.sub(msg, 9))) do
2012 local Anim3 = Instance.new("Animation")
2013 Anim3.AnimationId = "rbxassetid://282574440"
2014 local track3 = lplayer.Character.Humanoid:LoadAnimation(Anim3)
2015 track3:Play(.1, 1, 1)
2016 bplrr = v.Name
2017 banpl = true
2018 end
2019 end
2020 if string.sub(msg, 1, 9) == (prefix.."uncarpet") then
2021 banpl = false
2022 end
2023 if string.sub(msg, 1, 7) == (prefix.."stare ") then
2024 for i,v in pairs(GetPlayer(string.sub(msg, 8))) do
2025 staring = true
2026 stareplr = v
2027 end
2028 end
2029 if string.sub(msg, 1, 8) == (prefix.."unstare") then
2030 staring = false
2031 end
2032 if string.sub(msg, 1, 8) == (prefix.."logchat") then
2033 chatlogs = true
2034 game:GetService("StarterGui"):SetCore("SendNotification", {
2035 Title = "LogChat enabled";
2036 Text = "Now logging all player chat.";
2037 })
2038 end
2039 if string.sub(msg, 1, 10) == (prefix.."unlogchat") then
2040 chatlogs = false
2041 game:GetService("StarterGui"):SetCore("SendNotification", {
2042 Title = "LogChat disabled";
2043 Text = "Stopped logging all player chat.";
2044 })
2045 end
2046 if string.sub(msg, 1, 7) == (prefix.."fixcam") then
2047 game:GetService("Workspace").CurrentCamera:Destroy()
2048 wait(0.1)
2049 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
2050 game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
2051 lplayer.CameraMinZoomDistance = 0.5
2052 lplayer.CameraMaxZoomDistance = 400
2053 lplayer.CameraMode = "Classic"
2054 end
2055 if string.sub(msg, 1, 8) == (prefix.."unstate") then
2056 changingstate = false
2057 end
2058end)
2059
2060local function tp()
2061 for i, player in ipairs(game:GetService("Players"):GetPlayers()) do
2062 if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
2063 if player.Name == brplr then
2064 player.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame + lplayer.Character.HumanoidRootPart.CFrame.lookVector * 2
2065 end
2066 end
2067 end
2068end
2069local function tpall()
2070 for i, player in ipairs(game:GetService("Players"):GetPlayers()) do
2071 if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
2072 player.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame + lplayer.Character.HumanoidRootPart.CFrame.lookVector * 3
2073 end
2074 end
2075end
2076spawn(function()
2077 while wait(spamdelay) do
2078 if spamming == true then
2079 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(spamtext, "All")
2080 end
2081 end
2082end)
2083spawn(function()
2084 while wait(spamdelay) do
2085 if spammingpm == true then
2086 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/w "..pmspammed.." @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@", "All")
2087 end
2088 end
2089end)
2090spawn(function()
2091 while wait() do
2092 if cbring == true then
2093 tp()
2094 end
2095 end
2096end)
2097spawn(function()
2098 while wait() do
2099 if cbringall == true then
2100 tpall()
2101 end
2102 end
2103end)
2104
2105Mouse.KeyDown:connect(function(Key)
2106 if Key == prefix then
2107 CMDBAR:CaptureFocus()
2108 end
2109end)
2110
2111CMDBAR.FocusLost:connect(function(enterPressed)
2112 if enterPressed then
2113 if string.sub(CMDBAR.Text, 1, 5) == ("kill ") then
2114 if string.sub(CMDBAR.Text, 6) == "me" then
2115 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(100000,0,100000)
2116 else
2117 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6)))do
2118 local NOW = lplayer.Character.HumanoidRootPart.CFrame
2119 lplayer.Character.Humanoid.Name = 1
2120 local l = lplayer.Character["1"]:Clone()
2121 l.Parent = lplayer.Character
2122 l.Name = "Humanoid"
2123 wait(0.1)
2124 lplayer.Character["1"]:Destroy()
2125 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
2126 lplayer.Character.Animate.Disabled = true
2127 wait(0.1)
2128 lplayer.Character.Animate.Disabled = false
2129 lplayer.Character.Humanoid.DisplayDistanceType = "None"
2130 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
2131 lplayer.Character.Humanoid:EquipTool(v)
2132 end
2133 local function tp(player,player2)
2134 local char1,char2=player.Character,player2.Character
2135 if char1 and char2 then
2136 char1:MoveTo(char2.Head.Position)
2137 end
2138 end
2139 wait(0.1)
2140 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
2141 wait(0.2)
2142 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
2143 wait(0.5)
2144 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
2145 wait(0.7)
2146 tp(lplayer,game:GetService("Players")[v.Name])
2147 wait(0.7)
2148 lplayer.Character.HumanoidRootPart.CFrame = NOW
2149 game:GetService("StarterGui"):SetCore("SendNotification", {
2150 Title = "Tools needed!";
2151 Text = "You need a tool in your backpack for this command!";
2152 })
2153 end
2154 end
2155 end
2156 if string.sub(CMDBAR.Text, 1, 6) == ("bring ") then
2157 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7)))do
2158 local NOW = lplayer.Character.HumanoidRootPart.CFrame
2159 lplayer.Character.Humanoid.Name = 1
2160 local l = lplayer.Character["1"]:Clone()
2161 l.Parent = lplayer.Character
2162 l.Name = "Humanoid"
2163 wait(0.1)
2164 lplayer.Character["1"]:Destroy()
2165 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
2166 lplayer.Character.Animate.Disabled = true
2167 wait(0.1)
2168 lplayer.Character.Animate.Disabled = false
2169 lplayer.Character.Humanoid.DisplayDistanceType = "None"
2170 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
2171 lplayer.Character.Humanoid:EquipTool(v)
2172 end
2173 local function tp(player,player2)
2174 local char1,char2=player.Character,player2.Character
2175 if char1 and char2 then
2176 char1.HumanoidRootPart.CFrame = char2.HumanoidRootPart.CFrame
2177 end
2178 end
2179 local function getout(player,player2)
2180 local char1,char2=player.Character,player2.Character
2181 if char1 and char2 then
2182 char1:MoveTo(char2.Head.Position)
2183 end
2184 end
2185 tp(game:GetService("Players")[v.Name], lplayer)
2186 wait(0.2)
2187 tp(game:GetService("Players")[v.Name], lplayer)
2188 wait(0.5)
2189 lplayer.Character.HumanoidRootPart.CFrame = NOW
2190 wait(0.5)
2191 getout(lplayer, game:GetService("Players")[v.Name])
2192 wait(0.3)
2193 lplayer.Character.HumanoidRootPart.CFrame = NOW
2194 game:GetService("StarterGui"):SetCore("SendNotification", {
2195 Title = "Tools needed!";
2196 Text = "You need a tool in your backpack for this command!";
2197 })
2198 end
2199 end
2200 if string.sub(CMDBAR.Text, 1, 5) == ("spin ") then
2201 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
2202 lplayer.Character.Humanoid.Name = 1
2203 local l = lplayer.Character["1"]:Clone()
2204 l.Parent = lplayer.Character
2205 l.Name = "Humanoid"
2206 wait(0.1)
2207 lplayer.Character["1"]:Destroy()
2208 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
2209 lplayer.Character.Animate.Disabled = true
2210 wait(0.1)
2211 lplayer.Character.Animate.Disabled = false
2212 lplayer.Character.Humanoid.DisplayDistanceType = "None"
2213 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
2214 lplayer.Character.Humanoid:EquipTool(v)
2215 end
2216 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
2217 spinplr = v
2218 wait(0.5)
2219 spin = true
2220 game:GetService("StarterGui"):SetCore("SendNotification", {
2221 Title = "Tools needed!";
2222 Text = "You need a tool in your backpack for this command!";
2223 })
2224 end
2225 end
2226 if string.sub(CMDBAR.Text, 1, 6) == ("unspin") then
2227 spin = false
2228 end
2229 if string.sub(CMDBAR.Text, 1, 7) == ("attach ") then
2230 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
2231 lplayer.Character.Humanoid.Name = 1
2232 local l = lplayer.Character["1"]:Clone()
2233 l.Parent = lplayer.Character
2234 l.Name = "Humanoid"
2235 wait(0.1)
2236 lplayer.Character["1"]:Destroy()
2237 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
2238 lplayer.Character.Animate.Disabled = true
2239 wait(0.1)
2240 lplayer.Character.Animate.Disabled = false
2241 lplayer.Character.Humanoid.DisplayDistanceType = "None"
2242 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
2243 lplayer.Character.Humanoid:EquipTool(v)
2244 end
2245 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
2246 wait(0.3)
2247 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
2248 attplr = v
2249 game:GetService("StarterGui"):SetCore("SendNotification", {
2250 Title = "Tools needed!";
2251 Text = "You need a tool in your backpack for this command!";
2252 })
2253 end
2254 end
2255 if string.sub(CMDBAR.Text, 1, 9) == ("unattach ") then
2256 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
2257 local function getout(player,player2)
2258 local char1,char2=player.Character,player2.Character
2259 if char1 and char2 then
2260 char1:MoveTo(char2.Head.Position)
2261 end
2262 end
2263 getout(lplayer, game:GetService("Players")[v.Name])
2264 end
2265 end
2266 if string.sub(CMDBAR.Text, 1, 7) == ("follow ") then
2267 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
2268 followed = true
2269 flwplr = v
2270 end
2271 end
2272 if string.sub(CMDBAR.Text, 1, 8) == ("unfollow") then
2273 followed = false
2274 end
2275 if string.sub(CMDBAR.Text, 1, 9) == ("freefall ") then
2276 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
2277 local NOW = lplayer.Character.HumanoidRootPart.CFrame
2278 lplayer.Character.Humanoid.Name = 1
2279 local l = lplayer.Character["1"]:Clone()
2280 l.Parent = lplayer.Character
2281 l.Name = "Humanoid"
2282 wait(0.1)
2283 lplayer.Character["1"]:Destroy()
2284 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
2285 lplayer.Character.Animate.Disabled = true
2286 wait(0.1)
2287 lplayer.Character.Animate.Disabled = false
2288 lplayer.Character.Humanoid.DisplayDistanceType = "None"
2289 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
2290 lplayer.Character.Humanoid:EquipTool(v)
2291 end
2292 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
2293 wait(0.2)
2294 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
2295 wait(0.6)
2296 lplayer.Character.HumanoidRootPart.CFrame = NOW
2297 wait(0.6)
2298 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(0,50000,0)
2299 game:GetService("StarterGui"):SetCore("SendNotification", {
2300 Title = "Tools needed!";
2301 Text = "You need a tool in your backpack for this command!";
2302 })
2303 end
2304 end
2305 if string.sub(CMDBAR.Text, 1, 6) == ("trail ") then
2306 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
2307 traill = true
2308 trlplr = v
2309 end
2310 end
2311 if string.sub(CMDBAR.Text, 1, 7) == ("untrail") then
2312 traill = false
2313 end
2314 if string.sub(CMDBAR.Text, 1, 6) == ("orbit ") then
2315 if string.sub(CMDBAR.Text, 7) == "all" or string.sub(CMDBAR.Text, 7) == "others" or string.sub(CMDBAR.Text, 7) == "me" then
2316 lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
2317 else
2318 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
2319 local o = Instance.new("RocketPropulsion")
2320 o.Parent = lplayer.Character.HumanoidRootPart
2321 o.Name = "Orbit"
2322 o.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
2323 o:Fire()
2324 noclip = true
2325 end
2326 end
2327 end
2328 if string.sub(CMDBAR.Text, 1, 7) == ("unorbit") then
2329 lplayer.Character.HumanoidRootPart.Orbit:Destroy()
2330 noclip = false
2331 end
2332 if string.sub(CMDBAR.Text, 1, 6) == ("fling ") then
2333 if string.sub(CMDBAR.Text, 7) == "all" or string.sub(CMDBAR.Text, 7) == "others" or string.sub(CMDBAR.Text, 7) == "me" then
2334 lplayer.Character.HumanoidRootPart.CFrame = lplayer.Character.HumanoidRootPart.CFrame
2335 else
2336 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
2337 local y = Instance.new("RocketPropulsion")
2338 y.Parent = lplayer.Character.HumanoidRootPart
2339 y.CartoonFactor = 1
2340 y.MaxThrust = 800000
2341 y.MaxSpeed = 1000
2342 y.ThrustP = 200000
2343 y.Name = "Fling"
2344 game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
2345 y.Target = game:GetService("Players")[v.Name].Character.HumanoidRootPart
2346 y:Fire()
2347 noclip = true
2348 end
2349 end
2350 end
2351 if string.sub(CMDBAR.Text, 1, 7) == ("unfling") then
2352 noclip = false
2353 lplayer.Character.HumanoidRootPart.Fling:Destroy()
2354 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
2355 wait(0.4)
2356 lplayer.Character.HumanoidRootPart.Fling:Destroy()
2357 end
2358 if string.sub(CMDBAR.Text, 1, 7) == ("fecheck") then
2359 if game:GetService("Workspace").FilteringEnabled == true then
2360 warn("FE is Enabled (Filtering Enabled)")
2361 game:GetService("StarterGui"):SetCore("SendNotification", {
2362 Title = "FE is Enabled";
2363 Text = "Filtering Enabled. Enjoy using Reviz Admin!";
2364 })
2365 else
2366 warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
2367 game:GetService("StarterGui"):SetCore("SendNotification", {
2368 Title = "FE is Disabled";
2369 Text = "Filtering Disabled. Consider using a different admin script.";
2370 })
2371 end
2372 end
2373 if string.sub(CMDBAR.Text, 1, 5) == ("void ") then
2374 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
2375 lplayer.Character.Humanoid.Name = 1
2376 local l = lplayer.Character["1"]:Clone()
2377 l.Parent = lplayer.Character
2378 l.Name = "Humanoid"
2379 wait(0.1)
2380 lplayer.Character["1"]:Destroy()
2381 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
2382 lplayer.Character.Animate.Disabled = true
2383 wait(0.1)
2384 lplayer.Character.Animate.Disabled = false
2385 lplayer.Character.Humanoid.DisplayDistanceType = "None"
2386 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
2387 lplayer.Character.Humanoid:EquipTool(v)
2388 end
2389 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
2390 wait(0.2)
2391 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
2392 wait(0.6)
2393 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(999999999999999,0,999999999999999)
2394 game:GetService("StarterGui"):SetCore("SendNotification", {
2395 Title = "Tools needed!";
2396 Text = "You need a tool in your backpack for this command!";
2397 })
2398 end
2399 end
2400 if string.sub(CMDBAR.Text, 1, 6) == ("noclip") then
2401 noclip = true
2402 game:GetService("StarterGui"):SetCore("SendNotification", {
2403 Title = "Noclip enabled";
2404 Text = "Type ;clip to disable";
2405 })
2406 end
2407 if string.sub(CMDBAR.Text, 1, 4) == ("clip") then
2408 noclip = false
2409 game:GetService("StarterGui"):SetCore("SendNotification", {
2410 Title = "Noclip disabled";
2411 Text = "Type ;noclip to enable";
2412 })
2413 end
2414 if string.sub(CMDBAR.Text, 1, 6) == ("speed ") then
2415 lplayer.Character.Humanoid.WalkSpeed = (string.sub(CMDBAR.Text, 7))
2416 end
2417 if string.sub(CMDBAR.Text, 1, 3) == ("ws ") then
2418 lplayer.Character.Humanoid.WalkSpeed = (string.sub(CMDBAR.Text, 4))
2419 end
2420 if string.sub(CMDBAR.Text, 1, 10) == ("hipheight ") then
2421 lplayer.Character.Humanoid.HipHeight = (string.sub(CMDBAR.Text, 11))
2422 end
2423 if string.sub(CMDBAR.Text, 1, 3) == ("hh ") then
2424 lplayer.Character.Humanoid.HipHeight = (string.sub(CMDBAR.Text, 4))
2425 end
2426 if string.sub(CMDBAR.Text, 1, 10) == ("jumppower ") then
2427 lplayer.Character.Humanoid.JumpPower = (string.sub(CMDBAR.Text, 11))
2428 end
2429 if string.sub(CMDBAR.Text, 1, 3) == ("jp ") then
2430 lplayer.Character.Humanoid.JumpPower = (string.sub(CMDBAR.Text, 4))
2431 end
2432 if string.sub(CMDBAR.Text, 1, 7) == ("default") then
2433 lplayer.Character.Humanoid.JumpPower = 50
2434 lplayer.Character.Humanoid.WalkSpeed = 16
2435 lplayer.Character.Humanoid.HipHeight = 0
2436 end
2437 if string.sub(CMDBAR.Text, 1, 6) == ("annoy ") then
2438 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
2439 annoying = true
2440 annplr = v
2441 end
2442 end
2443 if string.sub(CMDBAR.Text, 1, 7) == ("unannoy") then
2444 annoying = false
2445 end
2446 if string.sub(CMDBAR.Text, 1, 9) == ("headwalk ") then
2447 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
2448 hwalk = true
2449 hdwplr = v
2450 end
2451 end
2452 if string.sub(CMDBAR.Text, 1, 10) == ("unheadwalk") then
2453 hwalk = false
2454 end
2455 if string.sub(CMDBAR.Text, 1, 7) == ("nolimbs") then
2456 lplayer.Character["Left Leg"]:Destroy()
2457 lplayer.Character["Left Arm"]:Destroy()
2458 lplayer.Character["Right Leg"]:Destroy()
2459 lplayer.Character["Right Arm"]:Destroy()
2460 end
2461 if string.sub(CMDBAR.Text, 1, 3) == ("god") then
2462 lplayer.Character.Humanoid.Name = 1
2463 local l = lplayer.Character["1"]:Clone()
2464 l.Parent = lplayer.Character
2465 l.Name = "Humanoid"
2466 wait(0.1)
2467 lplayer.Character["1"]:Destroy()
2468 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
2469 lplayer.Character.Animate.Disabled = true
2470 wait(0.1)
2471 lplayer.Character.Animate.Disabled = false
2472 lplayer.Character.Humanoid.DisplayDistanceType = "None"
2473 game:GetService("StarterGui"):SetCore("SendNotification", {
2474 Title = "FE Godmode enabled";
2475 Text = "Use ;grespawn or ;respawn to remove.";
2476 })
2477 end
2478 if string.sub(CMDBAR.Text, 1, 8) == ("drophats") then
2479 for i,v in pairs(lplayer.Character:GetChildren()) do
2480 if (v:IsA("Accessory")) or (v:IsA("Hat")) then
2481 v.Parent = workspace
2482 end
2483 end
2484 end
2485 if string.sub(CMDBAR.Text, 1, 8) == ("droptool") then
2486 for i,v in pairs(lplayer.Character:GetChildren()) do
2487 if (v:IsA("Tool")) then
2488 v.Parent = workspace
2489 end
2490 end
2491 end
2492 if string.sub(CMDBAR.Text, 1, 9) == ("loopdhats") then
2493 droppinghats = true
2494 game:GetService("StarterGui"):SetCore("SendNotification", {
2495 Title = "Loop Drop Enabled";
2496 Text = "Type ;unloopdhats to disable";
2497 })
2498 end
2499 if string.sub(CMDBAR.Text, 1, 11) == ("unloopdhats") then
2500 droppinghats = false
2501 game:GetService("StarterGui"):SetCore("SendNotification", {
2502 Title = "Loop Drop Disabled";
2503 Text = "Type ;loopdhats to enable.";
2504 })
2505 end
2506 if string.sub(CMDBAR.Text, 1, 9) == ("loopdtool") then
2507 droppingtools = true
2508 game:GetService("StarterGui"):SetCore("SendNotification", {
2509 Title = "Loop Drop Enabled";
2510 Text = "Type ;unloopdtool to disable";
2511 })
2512 end
2513 if string.sub(CMDBAR.Text, 1, 11) == ("unloopdtool") then
2514 droppingtools = false
2515 game:GetService("StarterGui"):SetCore("SendNotification", {
2516 Title = "Loop Drop Disabled";
2517 Text = "Type ;loopdtool to enable.";
2518 })
2519 end
2520 if string.sub(CMDBAR.Text, 1, 9) == ("invisible") then -- Credit to Timeless
2521 Local = game:GetService('Players').LocalPlayer
2522 Char = Local.Character
2523 touched,tpdback = false, false
2524 box = Instance.new('Part',workspace)
2525 box.Anchored = true
2526 box.CanCollide = true
2527 box.Size = Vector3.new(10,1,10)
2528 box.Position = Vector3.new(0,10000,0)
2529 box.Touched:connect(function(part)
2530 if (part.Parent.Name == Local.Name) then
2531 if touched == false then
2532 touched = true
2533 function apply()
2534 if script.Disabled ~= true then
2535 no = Char.HumanoidRootPart:Clone()
2536 wait(.25)
2537 Char.HumanoidRootPart:Destroy()
2538 no.Parent = Char
2539 Char:MoveTo(loc)
2540 touched = false
2541 end end
2542 if Char then
2543 apply()
2544 end
2545 end
2546 end
2547 end)
2548 repeat wait() until Char
2549 loc = Char.HumanoidRootPart.Position
2550 Char:MoveTo(box.Position + Vector3.new(0,.5,0))
2551 game:GetService("StarterGui"):SetCore("SendNotification", {
2552 Title = "Invisibility enabled!";
2553 Text = "Reset or use ;respawn to remove.";
2554 })
2555 end
2556 if string.sub(CMDBAR.Text, 1, 5) == ("view ") then
2557 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
2558 if game:GetService("Players")[v.Name].Character.Humanoid then
2559 game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Humanoid
2560 else
2561 game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players")[v.Name].Character.Head
2562 end
2563 end
2564 end
2565 if string.sub(CMDBAR.Text, 1, 6) == ("unview") then
2566 if lplayer.Character.Humanoid then
2567 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
2568 else
2569 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Head
2570 end
2571 end
2572 if string.sub(CMDBAR.Text, 1, 5) == ("goto ") then
2573 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
2574 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
2575 end
2576 end
2577 if string.sub(CMDBAR.Text, 1, 3) == ("fly") then
2578 repeat wait() until lplayer and lplayer.Character and lplayer.Character:FindFirstChild('HumanoidRootPart') and lplayer.Character:FindFirstChild('Humanoid')
2579 repeat wait() until Mouse
2580
2581 local T = lplayer.Character.HumanoidRootPart
2582 local CONTROL = {F = 0, B = 0, L = 0, R = 0}
2583 local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
2584 local SPEED = speedget
2585
2586 local function fly()
2587 flying = true
2588 local BG = Instance.new('BodyGyro', T)
2589 local BV = Instance.new('BodyVelocity', T)
2590 BG.P = 9e4
2591 BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
2592 BG.cframe = T.CFrame
2593 BV.velocity = Vector3.new(0, 0.1, 0)
2594 BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
2595 spawn(function()
2596 repeat wait()
2597 lplayer.Character.Humanoid.PlatformStand = true
2598 if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
2599 SPEED = 50
2600 elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
2601 SPEED = 0
2602 end
2603 if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
2604 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
2605 lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
2606 elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
2607 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
2608 else
2609 BV.velocity = Vector3.new(0, 0.1, 0)
2610 end
2611 BG.cframe = workspace.CurrentCamera.CoordinateFrame
2612 until not flying
2613 CONTROL = {F = 0, B = 0, L = 0, R = 0}
2614 lCONTROL = {F = 0, B = 0, L = 0, R = 0}
2615 SPEED = 0
2616 BG:destroy()
2617 BV:destroy()
2618 lplayer.Character.Humanoid.PlatformStand = false
2619 end)
2620 end
2621 Mouse.KeyDown:connect(function(KEY)
2622 if KEY:lower() == 'w' then
2623 CONTROL.F = speedfly
2624 elseif KEY:lower() == 's' then
2625 CONTROL.B = -speedfly
2626 elseif KEY:lower() == 'a' then
2627 CONTROL.L = -speedfly
2628 elseif KEY:lower() == 'd' then
2629 CONTROL.R = speedfly
2630 end
2631 end)
2632 Mouse.KeyUp:connect(function(KEY)
2633 if KEY:lower() == 'w' then
2634 CONTROL.F = 0
2635 elseif KEY:lower() == 's' then
2636 CONTROL.B = 0
2637 elseif KEY:lower() == 'a' then
2638 CONTROL.L = 0
2639 elseif KEY:lower() == 'd' then
2640 CONTROL.R = 0
2641 end
2642 end)
2643 fly()
2644 end
2645 if string.sub(CMDBAR.Text, 1, 5) == ("unfly") then
2646 flying = false
2647 lplayer.Character.Humanoid.PlatformStand = false
2648 end
2649 if string.sub(CMDBAR.Text, 1, 5) == ("chat ") then
2650 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer((string.sub(CMDBAR.Text, 6)), "All")
2651 end
2652 if string.sub(CMDBAR.Text, 1, 5) == ("spam ") then
2653 spamtext = (string.sub(CMDBAR.Text, 6))
2654 spamming = true
2655 end
2656 if string.sub(CMDBAR.Text, 1, 6) == ("unspam") then
2657 spamming = false
2658 end
2659 if string.sub(CMDBAR.Text, 1, 9) == ("spamwait ") then
2660 spamdelay = (string.sub(CMDBAR.Text, 10))
2661 end
2662 if string.sub(CMDBAR.Text, 1, 7) == ("pmspam ") then
2663 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
2664 pmspammed = v.Name
2665 spammingpm = true
2666 end
2667 end
2668 if string.sub(CMDBAR.Text, 1, 8) == ("unpmspam") then
2669 spammingpm = false
2670 end
2671 if string.sub(CMDBAR.Text, 1, 8) == ("cfreeze ") then
2672 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 9))) do
2673 v.Character["Left Leg"].Anchored = true
2674 v.Character["Left Arm"].Anchored = true
2675 v.Character["Right Leg"].Anchored = true
2676 v.Character["Right Arm"].Anchored = true
2677 v.Character.Torso.Anchored = true
2678 v.Character.Head.Anchored = true
2679 end
2680 end
2681 if string.sub(CMDBAR.Text, 1, 10) == ("uncfreeze ") then
2682 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 11))) do
2683 v.Character["Left Leg"].Anchored = false
2684 v.Character["Left Arm"].Anchored = false
2685 v.Character["Right Leg"].Anchored = false
2686 v.Character["Right Arm"].Anchored = false
2687 v.Character.Torso.Anchored = false
2688 v.Character.Head.Anchored = false
2689 end
2690 end
2691 if string.sub(CMDBAR.Text, 1, 8) == ("unlockws") then
2692 local a = game:GetService("Workspace"):getChildren()
2693 for i = 1, #a do
2694 if a[i].className == "Part" then
2695 a[i].Locked = false
2696 elseif a[i].className == "Model" then
2697 local r = a[i]:getChildren()
2698 for i = 1, #r do
2699 if r[i].className == "Part" then
2700 r[i].Locked = false
2701 end
2702 end
2703 end
2704 end
2705 game:GetService("StarterGui"):SetCore("SendNotification", {
2706 Title = "Success!";
2707 Text = "Workspace unlocked. Use ;lockws to lock.";
2708 })
2709 end
2710 if string.sub(CMDBAR.Text, 1, 6) == ("lockws") then
2711 local a = game:GetService("Workspace"):getChildren()
2712 for i = 1, #a do
2713 if a[i].className == "Part" then
2714 a[i].Locked = true
2715 elseif a[i].className == "Model" then
2716 local r = a[i]:getChildren()
2717 for i = 1, #r do
2718 if r[i].className == "Part" then
2719 r[i].Locked = true
2720 end
2721 end
2722 end
2723 end
2724 end
2725 if string.sub(CMDBAR.Text, 1, 6) == ("btools") then
2726 local Clone_T = Instance.new("HopperBin",lplayer.Backpack)
2727 Clone_T.BinType = "Clone"
2728 local Destruct = Instance.new("HopperBin",lplayer.Backpack)
2729 Destruct.BinType = "Hammer"
2730 local Hold_T = Instance.new("HopperBin",lplayer.Backpack)
2731 Hold_T.BinType = "Grab"
2732 end
2733 if string.sub(CMDBAR.Text, 1, 6) == ("pstand") then
2734 lplayer.Character.Humanoid.PlatformStand = true
2735 end
2736 if string.sub(CMDBAR.Text, 1, 8) == ("unpstand") then
2737 lplayer.Character.Humanoid.PlatformStand = false
2738 end
2739 if string.sub(CMDBAR.Text, 1, 9) == ("blockhead") then
2740 lplayer.Character.Head.Mesh:Destroy()
2741 end
2742 if string.sub(CMDBAR.Text, 1, 3) == ("sit") then
2743 lplayer.Character.Humanoid.Sit = true
2744 end
2745 if string.sub(CMDBAR.Text, 1, 9) == ("bringobj ") then
2746 local function bringobjw()
2747 for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
2748 if obj.Name == (string.sub(CMDBAR.Text, 10)) then
2749 obj.CFrame = lplayer.Character.HumanoidRootPart.CFrame
2750 obj.CanCollide = false
2751 obj.Transparency = 0.7
2752 wait()
2753 obj.CFrame = lplayer.Character["Left Leg"].CFrame
2754 wait()
2755 obj.CFrame = lplayer.Character["Right Leg"].CFrame
2756 wait()
2757 obj.CFrame = lplayer.Character["Head"].CFrame
2758 end
2759 end
2760 end
2761 while wait() do
2762 bringobjw()
2763 end
2764 game:GetService("StarterGui"):SetCore("SendNotification", {
2765 Title = "BringObj";
2766 Text = "BringObj enabled.";
2767 })
2768 end
2769 if string.sub(CMDBAR.Text, 1, 6) == ("wsvis ") then
2770 vis = (string.sub(CMDBAR.Text, 7))
2771 local a = game:GetService("Workspace"):GetDescendants()
2772 for i = 1, #a do
2773 if a[i].className == "Part" then
2774 a[i].Transparency = vis
2775 elseif a[i].className == "Model" then
2776 local r = a[i]:getChildren()
2777 for i = 1, #r do
2778 if r[i].className == "Part" then
2779 r[i].Transparency = vis
2780 end
2781 end
2782 end
2783 end
2784 end
2785 if string.sub(CMDBAR.Text, 1, 10) == ("hypertotal") then
2786 loadstring(game:GetObjects("rbxassetid://1255063809")[1].Source)()
2787 game:GetService("StarterGui"):SetCore("SendNotification", {
2788 Title = "Success!";
2789 Text = "HyperTotal GUI Loaded!";
2790 })
2791 end
2792 if string.sub(CMDBAR.Text, 1, 4) == ("cmds") then
2793 CMDSFRAME.Visible = true
2794 end
2795 if string.sub(CMDBAR.Text, 1, 9) == ("rmeshhats") then
2796 for i,v in pairs(lplayer.Character:GetChildren()) do
2797 if (v:IsA("Accessory")) or (v:IsA("Hat")) then
2798 v.Handle.Mesh:Destroy()
2799 end
2800 end
2801 end
2802 if string.sub(CMDBAR.Text, 1, 9) == ("blockhats") then
2803 for i,v in pairs(lplayer.Character:GetChildren()) do
2804 if (v:IsA("Accessory")) or (v:IsA("Hat")) then
2805 v.Handle.Mesh:Destroy()
2806 end
2807 end
2808 end
2809 if string.sub(CMDBAR.Text, 1, 9) == ("rmeshtool") then
2810 for i,v in pairs(lplayer.Character:GetChildren()) do
2811 if (v:IsA("Tool")) then
2812 v.Handle.Mesh:Destroy()
2813 end
2814 end
2815 end
2816 if string.sub(CMDBAR.Text, 1, 9) == ("blocktool") then
2817 for i,v in pairs(lplayer.Character:GetChildren()) do
2818 if (v:IsA("Tool")) then
2819 v.Handle.Mesh:Destroy()
2820 end
2821 end
2822 end
2823 if string.sub(CMDBAR.Text, 1, 7) == ("spinner") then
2824 local p = Instance.new("RocketPropulsion")
2825 p.Parent = lplayer.Character.HumanoidRootPart
2826 p.Name = "Spinner"
2827 p.Target = lplayer.Character["Left Arm"]
2828 p:Fire()
2829 game:GetService("StarterGui"):SetCore("SendNotification", {
2830 Title = "Spinner enabled";
2831 Text = "Type ;nospinner to disable.";
2832 })
2833 end
2834 if string.sub(CMDBAR.Text, 1, 9) == ("nospinner") then
2835 lplayer.Character.HumanoidRootPart.Spinner:Destroy()
2836 end
2837 if string.sub(CMDBAR.Text, 1, 6) == ("reachd") then
2838 for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
2839 if v:isA("Tool") then
2840 local a = Instance.new("SelectionBox",v.Handle)
2841 a.Adornee = v.Handle
2842 v.Handle.Size = Vector3.new(0.5,0.5,60)
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, 6) == ("reach ") then
2853 for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
2854 if v:isA("Tool") then
2855 local a = Instance.new("SelectionBox",v.Handle)
2856 a.Name = "Reach"
2857 a.Adornee = v.Handle
2858 v.Handle.Size = Vector3.new(0.5,0.5,(string.sub(CMDBAR.Text, 7)))
2859 v.GripPos = Vector3.new(0,0,0)
2860 lplayer.Character.Humanoid:UnequipTools()
2861 end
2862 end
2863 game:GetService("StarterGui"):SetCore("SendNotification", {
2864 Title = "Reach applied!";
2865 Text = "Applied to equipped sword. Use ;noreach to disable.";
2866 })
2867 end
2868 if string.sub(CMDBAR.Text, 1, 7) == ("noreach") then
2869 for i,v in pairs(game:GetService'Players'.LocalPlayer.Character:GetChildren())do
2870 if v:isA("Tool") then
2871 v.Handle.Reach:Destroy()
2872 end
2873 end
2874 game:GetService("StarterGui"):SetCore("SendNotification", {
2875 Title = "Reach removed!";
2876 Text = "Removed reach from equipped sword.";
2877 })
2878 end
2879 if string.sub(CMDBAR.Text, 1, 6) == ("rkill ") then
2880 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7)))do
2881 lplayer.Character.Humanoid.Name = 1
2882 local l = lplayer.Character["1"]:Clone()
2883 l.Parent = lplayer.Character
2884 l.Name = "Humanoid"
2885 wait(0.1)
2886 lplayer.Character["1"]:Destroy()
2887 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
2888 lplayer.Character.Animate.Disabled = true
2889 wait(0.1)
2890 lplayer.Character.Animate.Disabled = false
2891 lplayer.Character.Humanoid.DisplayDistanceType = "None"
2892 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
2893 lplayer.Character.Humanoid:EquipTool(v)
2894 end
2895 wait(0.1)
2896 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
2897 wait(0.2)
2898 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
2899 wait(0.5)
2900 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-100000,10,-100000))
2901 game:GetService("StarterGui"):SetCore("SendNotification", {
2902 Title = "Tools needed!";
2903 Text = "You need a tool in your backpack for this command!";
2904 })
2905 end
2906 end
2907 if string.sub(CMDBAR.Text, 1, 6) == ("tp me ") then
2908 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
2909 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
2910 end
2911 end
2912 if string.sub(CMDBAR.Text, 1, 7) == ("cbring ") then
2913 if (string.sub(CMDBAR.Text, 8)) == "all" or (string.sub(CMDBAR.Text, 8)) == "All" or (string.sub(CMDBAR.Text, 8)) == "ALL" then
2914 cbringall = true
2915 else
2916 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
2917 brplr = v.Name
2918 end
2919 end
2920 cbring = true
2921 end
2922 if string.sub(CMDBAR.Text, 1, 8) == ("uncbring") then
2923 cbring = false
2924 cbringall = false
2925 end
2926 if string.sub(CMDBAR.Text, 1, 5) == ("swap ") then
2927 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
2928 local NOWPLR = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
2929 local NOW = lplayer.Character.HumanoidRootPart.CFrame
2930 lplayer.Character.Humanoid.Name = 1
2931 local l = lplayer.Character["1"]:Clone()
2932 l.Parent = lplayer.Character
2933 l.Name = "Humanoid"
2934 wait(0.1)
2935 lplayer.Character["1"]:Destroy()
2936 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
2937 lplayer.Character.Animate.Disabled = true
2938 wait(0.1)
2939 lplayer.Character.Animate.Disabled = false
2940 lplayer.Character.Humanoid.DisplayDistanceType = "None"
2941 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
2942 lplayer.Character.Humanoid:EquipTool(v)
2943 end
2944 local function tp(player,player2)
2945 local char1,char2=player.Character,player2.Character
2946 if char1 and char2 then
2947 char1:MoveTo(char2.Head.Position)
2948 end
2949 end
2950 wait(0.1)
2951 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
2952 wait(0.2)
2953 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character.HumanoidRootPart.CFrame
2954 wait(0.5)
2955 lplayer.Character.HumanoidRootPart.CFrame = NOW
2956 wait(0.6)
2957 tp(lplayer, game:GetService("Players")[v.Name])
2958 wait(0.4)
2959 lplayer.Character.HumanoidRootPart.CFrame = NOWPLR
2960 game:GetService("StarterGui"):SetCore("SendNotification", {
2961 Title = "Tools needed!";
2962 Text = "You need a tool in your backpack for this command!";
2963 })
2964 end
2965 end
2966 if string.sub(CMDBAR.Text, 1, 7) == ("glitch ") then
2967 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
2968 lplayer.Character.Humanoid.Name = 1
2969 local l = lplayer.Character["1"]:Clone()
2970 l.Parent = lplayer.Character
2971 l.Name = "Humanoid"
2972 wait(0.1)
2973 lplayer.Character["1"]:Destroy()
2974 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character
2975 lplayer.Character.Animate.Disabled = true
2976 wait(0.1)
2977 lplayer.Character.Animate.Disabled = false
2978 lplayer.Character.Humanoid.DisplayDistanceType = "None"
2979 for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
2980 lplayer.Character.Humanoid:EquipTool(v)
2981 end
2982 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
2983 wait(0.3)
2984 lplayer.Character.HumanoidRootPart.CFrame = game:GetService("Players")[v.Name].Character["Left Arm"].CFrame
2985 wait(0.4)
2986 b = Instance.new("BodyForce")
2987 b.Parent = lplayer.Character.HumanoidRootPart
2988 b.Name = "Glitch"
2989 b.Force = Vector3.new(100000000,5000,0)
2990 game:GetService("StarterGui"):SetCore("SendNotification", {
2991 Title = "Tools needed!";
2992 Text = "You need a tool in your backpack for this command!";
2993 })
2994 end
2995 end
2996 if string.sub(CMDBAR.Text, 1, 8) == ("unglitch") then
2997 lplayer.Character.HumanoidRootPart.Glitch:Destroy()
2998 lplayer.Character.HumanoidRootPart.CFrame = CFrame.new(10000,0,10000)
2999 b = Instance.new("BodyForce")
3000 b.Parent = lplayer.Character.HumanoidRootPart
3001 b.Name = "unGlitch"
3002 b.Force = Vector3.new(0,-5000000,0)
3003 wait(2)
3004 lplayer.Character.HumanoidRootPart.unGlitch:Destroy()
3005 end
3006 if string.sub(CMDBAR.Text, 1, 8) == ("grespawn") then
3007 lplayer.Character.Humanoid.Health = 0
3008 wait(1)
3009 lplayer.Character.Head.CFrame = CFrame.new(1000000,0,1000000)
3010 lplayer.Character.Torso.CFrame = CFrame.new(1000000,0,1000000)
3011 end
3012 if string.sub(CMDBAR.Text, 1, 8) == ("explorer") then
3013 loadstring(game:GetObjects("rbxassetid://492005721")[1].Source)()
3014 game:GetService("StarterGui"):SetCore("SendNotification", {
3015 Title = "Success!";
3016 Text = "DEX Explorer has loaded.";
3017 })
3018 end
3019 if string.sub(CMDBAR.Text, 1, 5) == ("anim ") then
3020 local Anim = Instance.new("Animation")
3021 Anim.AnimationId = "rbxassetid://"..(string.sub(CMDBAR.Text, 6))
3022 local track = lplayer.Character.Humanoid:LoadAnimation(Anim)
3023 track:Play(.1, 1, 1)
3024 end
3025 if string.sub(CMDBAR.Text, 1, 7) == ("animgui") then
3026 loadstring(game:GetObjects("rbxassetid://1202558084")[1].Source)()
3027 game:GetService("StarterGui"):SetCore("SendNotification", {
3028 Title = "Success!";
3029 Text = "Energize Animations GUI has loaded.";
3030 })
3031 end
3032 if string.sub(CMDBAR.Text, 1, 7) == ("savepos") then
3033 saved = lplayer.Character.HumanoidRootPart.CFrame
3034 game:GetService("StarterGui"):SetCore("SendNotification", {
3035 Title = "Position Saved";
3036 Text = "Use ;loadpos to return to saved position.";
3037 })
3038 end
3039 if string.sub(CMDBAR.Text, 1, 7) == ("loadpos") then
3040 lplayer.Character.HumanoidRootPart.CFrame = saved
3041 end
3042 if string.sub(CMDBAR.Text, 1, 5) == ("bang ") then
3043 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
3044 local Anim2 = Instance.new("Animation")
3045 Anim2.AnimationId = "rbxassetid://148840371"
3046 local track2 = lplayer.Character.Humanoid:LoadAnimation(Anim2)
3047 track2:Play(.1, 1, 1)
3048 bplrr = v.Name
3049 banpl = true
3050 end
3051 end
3052 if string.sub(CMDBAR.Text, 1, 6) == ("unbang") then
3053 banpl = false
3054 end
3055 if string.sub(CMDBAR.Text, 1, 9) == ("bringmod ") then
3056 local function bringmodw()
3057 for i,obj in ipairs(game:GetService("Workspace"):GetDescendants()) do
3058 if obj.Name == (string.sub(CMDBAR.Text, 10)) then
3059 for i,ch in pairs(obj:GetDescendants()) do
3060 if (ch:IsA("BasePart")) then
3061 ch.CFrame = lplayer.Character.HumanoidRootPart.CFrame
3062 ch.CanCollide = false
3063 ch.Transparency = 0.7
3064 wait()
3065 ch.CFrame = lplayer.Character["Left Leg"].CFrame
3066 wait()
3067 ch.CFrame = lplayer.Character["Right Leg"].CFrame
3068 wait()
3069 ch.CFrame = lplayer.Character["Head"].CFrame
3070 end
3071 end
3072 end
3073 end
3074 end
3075 while wait() do
3076 bringmodw()
3077 end
3078 game:GetService("StarterGui"):SetCore("SendNotification", {
3079 Title = "BringMod";
3080 Text = "BringMod enabled.";
3081 })
3082 end
3083 if string.sub(CMDBAR.Text, 1, 7) == ("respawn") then
3084 local mod = Instance.new('Model', workspace) mod.Name = 're '..lplayer.Name
3085 local hum = Instance.new('Humanoid', mod)
3086 local ins = Instance.new('Part', mod) ins.Name = 'Torso' ins.CanCollide = false ins.Transparency = 1
3087 lplayer.Character = mod
3088 end
3089 if string.sub(CMDBAR.Text, 1, 8) == ("shutdown") then
3090 game:GetService'RunService'.Stepped:Connect(function()
3091 pcall(function()
3092 for i,v in pairs(game:GetService'Players':GetPlayers()) do
3093 if v.Character ~= nil and v.Character:FindFirstChild'Head' then
3094 for _,x in pairs(v.Character.Head:GetChildren()) do
3095 if x:IsA'Sound' then x.Playing = true x.CharacterSoundEvent:FireServer(true, true) end
3096 end
3097 end
3098 end
3099 end)
3100 end)
3101 game:GetService("StarterGui"):SetCore("SendNotification", {
3102 Title = "Attempting Shutdown";
3103 Text = "Shutdown Attempt has begun.";
3104 })
3105 end
3106 if string.sub(CMDBAR.Text, 1, 7) == ("delobj ") then
3107 objtodel = (string.sub(CMDBAR.Text, 8))
3108 for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
3109 if v.Name == objtodel then
3110 v:Destroy()
3111 end
3112 end
3113 end
3114 if string.sub(CMDBAR.Text, 1, 7) == ("getplrs") then
3115 for i,v in pairs(game:GetService("Players"):GetPlayers())do
3116 print(v)
3117 end
3118 game:GetService("StarterGui"):SetCore("SendNotification", {
3119 Title = "Printed";
3120 Text = "Players have been printed to console. (F9)";
3121 })
3122 end
3123 if string.sub(CMDBAR.Text, 1, 8) == ("deldecal") then
3124 for i,v in pairs(game:GetService("Workspace"):GetDescendants())do
3125 if (v:IsA("Decal")) then
3126 v:Destroy()
3127 end
3128 end
3129 end
3130 if string.sub(CMDBAR.Text, 1, 10) == ("opfinality") then
3131 loadstring(game:GetObjects("rbxassetid://1294358929")[1].Source)()
3132 game:GetService("StarterGui"):SetCore("SendNotification", {
3133 Title = "Success!";
3134 Text = "OpFinality GUI has loaded.";
3135 })
3136 end
3137 if string.sub(CMDBAR.Text, 1, 7) == ("remotes") then
3138 remotes = true
3139 added = true
3140 game.DescendantAdded:connect(function(rmt)
3141 if added == true then
3142 if remotes == true then
3143 if rmt:IsA("RemoteEvent") then
3144 print("A RemoteEvent was added!")
3145 print(" game." .. rmt:GetFullName() .. " | RemoteEvent")
3146 print(" game." .. rmt:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
3147 end end end
3148 end)
3149 game.DescendantAdded:connect(function(rmtfnctn)
3150 if added == true then
3151 if remotes == true then
3152 if rmtfnctn:IsA("RemoteFunction") then
3153 warn("A RemoteFunction was added!")
3154 warn(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction")
3155 print(" game." .. rmtfnctn:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
3156 end end end
3157 end)
3158
3159 game.DescendantAdded:connect(function(bndfnctn)
3160 if added == true then
3161 if binds == true then
3162 if bndfnctn:IsA("BindableFunction") then
3163 print("A BindableFunction was added!")
3164 print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction")
3165 print(" game." .. bndfnctn:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
3166 end end end
3167 end)
3168
3169 game.DescendantAdded:connect(function(bnd)
3170 if added == true then
3171 if binds == true then
3172 if bnd:IsA("BindableEvent") then
3173 warn("A BindableEvent was added!")
3174 warn(" game." .. bnd:GetFullName() .. " | BindableEvent")
3175 print(" game." .. bnd:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
3176 end end end
3177 end)
3178
3179
3180 if binds == true then
3181 for i,v in pairs(game:GetDescendants()) do
3182 if v:IsA("BindableFunction") then
3183 print(" game." .. v:GetFullName() .. " | BindableFunction")
3184 print(" game." .. v:GetFullName() .. " | BindableFunction", 239, 247, 4, true)
3185 end end
3186 for i,v in pairs(game:GetDescendants()) do
3187 if v:IsA("BindableEvent") then
3188 warn(" game." .. v:GetFullName() .. " | BindableEvent")
3189 print(" game." .. v:GetFullName() .. " | BindableEvent", 13, 193, 22, true)
3190 end end
3191 else
3192 print("Off")
3193 end
3194 if remotes == true then
3195 for i,v in pairs(game:GetDescendants()) do
3196 if v:IsA("RemoteFunction") then
3197 warn(" game." .. v:GetFullName() .. " | RemoteFunction")
3198 print(" game." .. v:GetFullName() .. " | RemoteFunction", 5, 102, 198, true)
3199 end end
3200 wait()
3201 for i,v in pairs(game:GetDescendants()) do
3202 if v:IsA("RemoteEvent") then
3203 print(" game." .. v:GetFullName() .. " | RemoteEvent")
3204 print(" game." .. v:GetFullName() .. " | RemoteEvent", 247, 0, 0, true)
3205 end end
3206 else
3207 print("Off")
3208 end
3209 game:GetService("StarterGui"):SetCore("SendNotification", {
3210 Title = "Printing Remotes";
3211 Text = "Type ;noremotes to disable.";
3212 })
3213 end
3214 if string.sub(CMDBAR.Text, 1, 9) == ("noremotes") then
3215 remotes = false
3216 added = false
3217 game:GetService("StarterGui"):SetCore("SendNotification", {
3218 Title = "Printing Remotes Disabled";
3219 Text = "Type ;remotes to enable.";
3220 })
3221 end
3222 if string.sub(CMDBAR.Text, 1, 9) == ("tpdefault") then
3223 spin = false
3224 followed = false
3225 traill = false
3226 noclip = false
3227 annoying = false
3228 hwalk = false
3229 cbringing = false
3230 end
3231 if string.sub(CMDBAR.Text, 1, 7) == ("stopsit") then
3232 stopsitting = true
3233 end
3234 if string.sub(CMDBAR.Text, 1, 5) == ("gosit") then
3235 stopsitting = false
3236 end
3237 if string.sub(CMDBAR.Text, 1, 7) == ("version") then
3238 print(adminversion)
3239 game:GetService("StarterGui"):SetCore("SendNotification", {
3240 Title = "Version";
3241 Text = adminversion;
3242 })
3243 end
3244 if string.sub(CMDBAR.Text, 1, 7) == ("clicktp") then
3245 clickgoto = true
3246 game:GetService("StarterGui"):SetCore("SendNotification", {
3247 Title = "Click TP";
3248 Text = "Press E to teleport to mouse position";
3249 })
3250 end
3251 if string.sub(CMDBAR.Text, 1, 9) == ("noclicktp") then
3252 clickgoto = false
3253 game:GetService("StarterGui"):SetCore("SendNotification", {
3254 Title = "Click TP";
3255 Text = "Click TP has been disabled.";
3256 })
3257 end
3258 if string.sub(CMDBAR.Text, 1, 7) == ("toolson") then
3259 gettingtools = true
3260 game:GetService("StarterGui"):SetCore("SendNotification", {
3261 Title = "Tools Enabled";
3262 Text = "Automatically colleting tools dropped.";
3263 })
3264 end
3265 if string.sub(CMDBAR.Text, 1, 8) == ("toolsoff") then
3266 gettingtools = false
3267 game:GetService("StarterGui"):SetCore("SendNotification", {
3268 Title = "Tools Disabled";
3269 Text = "Click TP has been disabled.";
3270 })
3271 end
3272 if string.sub(CMDBAR.Text, 1, 9) == ("delcmdbar") then
3273 ScreenGui:Destroy()
3274 end
3275 if string.sub(CMDBAR.Text, 1, 5) == ("reset") then
3276 lplayer.Character.Head:Destroy()
3277 end
3278 if string.sub(CMDBAR.Text, 1, 6) == ("state ") then
3279 statechosen = string.sub(CMDBAR.Text, 7)
3280 changingstate = true
3281 end
3282 if string.sub(CMDBAR.Text, 1, 8) == ("gravity ") then
3283 game:GetService("Workspace").Gravity = string.sub(CMDBAR.Text, 9)
3284 end
3285 if string.sub(CMDBAR.Text, 1, 9) == ("looprhats") then
3286 removingmeshhats = true
3287 end
3288 if string.sub(CMDBAR.Text, 1, 11) == ("unlooprhats") then
3289 removingmeshhats = false
3290 end
3291 if string.sub(CMDBAR.Text, 1, 9) == ("looprtool") then
3292 removingmeshtool = true
3293 end
3294 if string.sub(CMDBAR.Text, 1, 11) == ("unlooprtool") then
3295 removingmeshtool = false
3296 end
3297 if string.sub(CMDBAR.Text, 1, 9) == ("givetool ") then
3298 for i,v in pairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
3299 if v:IsA("Tool") then
3300 for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 10))) do
3301 v.Parent = player.Character
3302 end
3303 end
3304 end
3305 end
3306 if string.sub(CMDBAR.Text, 1, 4) == ("age ") then
3307 for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 5))) do
3308 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account Age: "..player.AccountAge.." days!", "All")
3309 end
3310 end
3311 if string.sub(CMDBAR.Text, 1, 3) == ("id ") then
3312 for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 4))) do
3313 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(player.Name.." Account ID: "..player.UserId, "All")
3314 end
3315 end
3316 if string.sub(CMDBAR.Text, 1, 5) == (".age ") then
3317 for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 6))) do
3318 game:GetService("StarterGui"):SetCore("SendNotification", {
3319 Title = player.AccountAge.." Days";
3320 Text = "Account age of "..player.Name;
3321 })
3322 end
3323 end
3324 if string.sub(CMDBAR.Text, 1, 4) == (".id ") then
3325 for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 5))) do
3326 game:GetService("StarterGui"):SetCore("SendNotification", {
3327 Title = player.UserId.." ID";
3328 Text = "Account ID of "..player.Name;
3329 })
3330 end
3331 end
3332 if string.sub(CMDBAR.Text, 1, 6) == ("gameid") then
3333 game:GetService("StarterGui"):SetCore("SendNotification", {
3334 Title = "Game ID";
3335 Text = "Game ID: ".. game.GameId;
3336 })
3337 end
3338 if string.sub(CMDBAR.Text, 1, 3) == ("pgs") then
3339 local pgscheck = game:GetService("Workspace"):PGSIsEnabled()
3340 if pgscheck == true then
3341 game:GetService("StarterGui"):SetCore("SendNotification", {
3342 Title = "PGSPhysicsSolverEnabled";
3343 Text = "PGS is Enabled!";
3344 })
3345 else
3346 game:GetService("StarterGui"):SetCore("SendNotification", {
3347 Title = "PGSPhysicsSolverEnabled";
3348 Text = "PGS is Disabled!";
3349 })
3350 end
3351 end
3352 if string.sub(CMDBAR.Text, 1, 11) == ("removeinvis") then
3353 for i,v in pairs(game:GetService("Workspace"):GetDescendants()) do
3354 if v:IsA("Part") then
3355 if v.Transparency == 1 then
3356 if v.Name ~= "HumanoidRootPart" then
3357 v:Destroy()
3358 end
3359 end
3360 end
3361 end
3362 end
3363 if string.sub(CMDBAR.Text, 1, 9) == ("removefog") then
3364 game:GetService("Lighting").FogStart = 0
3365 game:GetService("Lighting").FogEnd = 9999999999999
3366 end
3367 if string.sub(CMDBAR.Text, 1, 7) == ("disable") then
3368 lplayer.Character.Humanoid.Parent = lplayer
3369 end
3370 if string.sub(CMDBAR.Text, 1, 6) == ("enable") then
3371 lplayer.Humanoid.Parent = lplayer.Character
3372 end
3373 if string.sub(CMDBAR.Text, 1, 13) == ("givealltools ") then
3374 for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetDescendants()) do
3375 if v:IsA("Tool") then
3376 v.Parent = lplayer.Character
3377 wait()
3378 for i,player in pairs(GetPlayer(string.sub(CMDBAR.Text, 14))) do
3379 v.Parent = player.Character
3380 end
3381 end
3382 end
3383 end
3384 if string.sub(CMDBAR.Text, 1, 9) == ("flyspeed ") then
3385 speedfly = string.sub(CMDBAR.Text, 10)
3386 wait()
3387 change()
3388 end
3389 if string.sub(CMDBAR.Text, 1, 7) == ("carpet ") then
3390 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 8))) do
3391 local Anim3 = Instance.new("Animation")
3392 Anim3.AnimationId = "rbxassetid://282574440"
3393 local track3 = lplayer.Character.Humanoid:LoadAnimation(Anim3)
3394 track3:Play(.1, 1, 1)
3395 bplrr = v.Name
3396 banpl = true
3397 end
3398 end
3399 if string.sub(CMDBAR.Text, 1, 8) == ("uncarpet") then
3400 banpl = false
3401 end
3402 if string.sub(CMDBAR.Text, 1, 6) == ("stare ") then
3403 for i,v in pairs(GetPlayer(string.sub(CMDBAR.Text, 7))) do
3404 staring = true
3405 stareplr = v
3406 end
3407 end
3408 if string.sub(CMDBAR.Text, 1, 7) == ("unstare") then
3409 staring = false
3410 end
3411 if string.sub(CMDBAR.Text, 1, 7) == ("logchat") then
3412 chatlogs = true
3413 game:GetService("StarterGui"):SetCore("SendNotification", {
3414 Title = "LogChat enabled";
3415 Text = "Now logging all player chat.";
3416 })
3417 end
3418 if string.sub(CMDBAR.Text, 1, 9) == ("unlogchat") then
3419 chatlogs = false
3420 game:GetService("StarterGui"):SetCore("SendNotification", {
3421 Title = "LogChat disabled";
3422 Text = "Stopped logging all player chat.";
3423 })
3424 end
3425 if string.sub(CMDBAR.Text, 1, 6) == ("fixcam") then
3426 game:GetService("Workspace").CurrentCamera:Destroy()
3427 wait(0.1)
3428 game:GetService("Workspace").CurrentCamera.CameraSubject = lplayer.Character.Humanoid
3429 game:GetService("Workspace").CurrentCamera.CameraType = "Custom"
3430 lplayer.CameraMinZoomDistance = 0.5
3431 lplayer.CameraMaxZoomDistance = 400
3432 lplayer.CameraMode = "Classic"
3433 end
3434 if string.sub(CMDBAR.Text, 1, 7) == ("unstate") then
3435 changingstate = false
3436 end
3437 CMDBAR.Text = ""
3438 end
3439end)
3440
3441wait(0.3)
3442game:GetService("StarterGui"):SetCore("SendNotification", {
3443 Title = "Loaded successfully!";
3444 Text = "Reviz Admin V2 by illremember";
3445})
3446wait(0.1)
3447print("Reviz Admin V2 loaded!")
3448if game:GetService("Workspace").FilteringEnabled == true then
3449 warn("FE is Enabled (Filtering Enabled)")
3450 game:GetService("StarterGui"):SetCore("SendNotification", {
3451 Title = "FE is Enabled";
3452 Text = "Filtering Enabled. Enjoy using Reviz Admin!";
3453 })
3454else
3455 warn("FE is Disabled (Filtering Disabled) Consider using a different admin script.")
3456 game:GetService("StarterGui"):SetCore("SendNotification", {
3457 Title = "FE is Disabled";
3458 Text = "Filtering Disabled. Consider using a different admin script.";
3459 })
3460end
3461
3462local intro = Instance.new("ScreenGui")
3463local Frame = Instance.new("Frame")
3464local ImageLabel = Instance.new("ImageLabel")
3465intro.Parent = game:GetService("CoreGui")
3466Frame.Parent = intro
3467Frame.BackgroundColor3 = Color3.new(1, 1, 1)
3468Frame.BackgroundTransparency = 1
3469Frame.Size = UDim2.new(1, 0, 0, 300)
3470Frame.Position = UDim2.new(0, 0, -0.4, 0)
3471ImageLabel.Parent = Frame
3472ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
3473ImageLabel.BackgroundTransparency = 1
3474ImageLabel.Position = UDim2.new(0, 0, 0, 0)
3475ImageLabel.Size = UDim2.new(1, 0, 1, 0)
3476ImageLabel.Image = "http://www.roblox.com/asset/?id=1542162618"
3477Frame:TweenPosition(UDim2.new(0, 0, 0.2, 0), "Out", "Elastic", 3)
3478wait(3.01)
3479Frame:TweenPosition(UDim2.new(0, 0, 1.5, 0), "Out", "Elastic", 5)
3480wait(5.01)
3481intro:Destroy()
3482end)
3483
3484ClickKill.Name = "Click Kill"
3485ClickKill.Parent = Main
3486ClickKill.BackgroundColor3 = Color3.new(1, 1, 1)
3487ClickKill.Position = UDim2.new(0.0427659675, 0, 0.502869904, 0)
3488ClickKill.Size = UDim2.new(0, 107, 0, 37)
3489ClickKill.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3490ClickKill.Font = Enum.Font.SourceSans
3491ClickKill.Text = "Click/Kill"
3492ClickKill.TextColor3 = Color3.new(0, 0, 0)
3493ClickKill.TextSize = 14
3494ClickKill.MouseButton1Down:connect(function()
3495repeat wait() until game.Players.LocalPlayer.Character
3496
3497--
3498
3499local Player = game:GetService("Players").LocalPlayer
3500local Mouse = Player:GetMouse()
3501
3502local KillEvent = workspace.RemoteServer.Death
3503
3504Mouse.Button1Down:connect(function()
3505Mouse.TargetFilter = workspace.Water
3506KillEvent:FireServer(game.Players[Mouse.Target.Parent.Name].Character)
3507end)
3508end)
3509
3510X.Name = "X"
3511X.Parent = Main
3512X.BackgroundColor3 = Color3.new(1, 0, 0)
3513X.Position = UDim2.new(0.838582695, 0, -0.0134699205, 0)
3514X.Size = UDim2.new(0, 40, 0, 37)
3515X.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3516X.Font = Enum.Font.SourceSans
3517X.Text = "X"
3518X.TextColor3 = Color3.new(0, 0, 0)
3519X.TextSize = 14
3520X.MouseButton1Down:connect(function()
3521Open.Visible = true
3522Main.Visible = false
3523end)
3524
3525Color_2.Name = "Color"
3526Color_2.Parent = WildSavannah
3527Color_2.Active = true
3528Color_2.BackgroundColor3 = Color3.new(1, 0, 0)
3529Color_2.Position = UDim2.new(0.627450943, 0, 0, 0)
3530Color_2.Size = UDim2.new(0, 304, 0, 100)
3531Color_2.Visible = false
3532Color_2.Draggable = true
3533
3534CloseColor.Name = "CloseColor"
3535CloseColor.Parent = Color_2
3536CloseColor.BackgroundColor3 = Color3.new(1, 1, 1)
3537CloseColor.Size = UDim2.new(0, 303, 0, 24)
3538CloseColor.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3539CloseColor.Font = Enum.Font.SourceSans
3540CloseColor.Text = "Close"
3541CloseColor.TextColor3 = Color3.new(0, 0, 0)
3542CloseColor.TextSize = 14
3543CloseColor.MouseButton1Down:connect(function()
3544Color_2.Visible = false
3545end)
3546
3547BW.Name = "BW"
3548BW.Parent = Color_2
3549BW.BackgroundColor3 = Color3.new(1, 1, 1)
3550BW.Position = UDim2.new(0.0432443172, 0, 0.248605117, 0)
3551BW.Size = UDim2.new(0, 73, 0, 50)
3552BW.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3553BW.Font = Enum.Font.SourceSans
3554BW.Text = "Black and White"
3555BW.TextColor3 = Color3.new(0, 0, 0)
3556BW.TextSize = 12
3557BW.MouseButton1Down:connect(function()
3558-- there are lots of colors to choose from, like "Hot pink", "Really black" and more!
3559while wait(0.1) do
3560workspace.RemoteServer.changecolorevent:FireServer("White")
3561wait(0.1)
3562workspace.RemoteServer.changecolorevent:FireServer("Really black")
3563end
3564end)
3565
3566White.Name = "White"
3567White.Parent = Color_2
3568White.BackgroundColor3 = Color3.new(1, 1, 1)
3569White.Position = UDim2.new(0.72416538, 0, 0.248605117, 0)
3570White.Size = UDim2.new(0, 73, 0, 50)
3571White.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3572White.Font = Enum.Font.SourceSans
3573White.Text = "White"
3574White.TextColor3 = Color3.new(0, 0, 0)
3575White.TextSize = 14
3576White.MouseButton1Down:connect(function()
3577workspace.RemoteServer.changecolorevent:FireServer("White")
3578end)
3579
3580RGB.Name = "RGB"
3581RGB.Parent = Color_2
3582RGB.BackgroundColor3 = Color3.new(1, 1, 1)
3583RGB.Position = UDim2.new(0.378858864, 0, 0.248605117, 0)
3584RGB.Size = UDim2.new(0, 73, 0, 50)
3585RGB.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3586RGB.Font = Enum.Font.SourceSans
3587RGB.Text = "RGB"
3588RGB.TextColor3 = Color3.new(0, 0, 0)
3589RGB.TextSize = 14
3590RGB.MouseButton1Down:connect(function()
3591-- there are lots of colors to choose from, like "Hot pink", "Really black" and more!
3592while wait(0.5) do
3593workspace.RemoteServer.changecolorevent:FireServer("Really red")
3594wait(0.5)
3595workspace.RemoteServer.changecolorevent:FireServer("Really blue")
3596wait(0.5)
3597workspace.RemoteServer.changecolorevent:FireServer("Lime green")
3598end
3599end)
3600
3601Warning.Name = "Warning"
3602Warning.Parent = Color_2
3603Warning.BackgroundColor3 = Color3.new(1, 1, 1)
3604Warning.BackgroundTransparency = 1
3605Warning.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
3606Warning.LayoutOrder = 1
3607Warning.Position = UDim2.new(0.137069598, 0, 0.653811276, 0)
3608Warning.Size = UDim2.new(0, 219, 0, 50)
3609Warning.Text = "If you choose more than one color, then you have to REJOIN the place!"
3610Warning.TextColor3 = Color3.new(0, 0, 0)
3611Warning.TextSize = 6
3612
3613Animal.Name = "Animal"
3614Animal.Parent = WildSavannah
3615Animal.Active = true
3616Animal.BackgroundColor3 = Color3.new(1, 0, 0)
3617Animal.Position = UDim2.new(0.095588237, 0, 0.14538306, 0)
3618Animal.Size = UDim2.new(0, 394, 0, 99)
3619Animal.Visible = false
3620Animal.Draggable = true
3621
3622CloseAnimal.Name = "CloseAnimal"
3623CloseAnimal.Parent = Animal
3624CloseAnimal.BackgroundColor3 = Color3.new(1, 1, 1)
3625CloseAnimal.Position = UDim2.new(-0.00227216538, 0, -0.0184863117, 0)
3626CloseAnimal.Size = UDim2.new(0, 394, 0, 27)
3627CloseAnimal.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3628CloseAnimal.Font = Enum.Font.SourceSans
3629CloseAnimal.Text = "Close"
3630CloseAnimal.TextColor3 = Color3.new(0, 0, 0)
3631CloseAnimal.TextSize = 14
3632CloseAnimal.MouseButton1Down:connect(function()
3633Animal.Visible = false
3634end)
3635
3636Hyena.Name = "Hyena"
3637Hyena.Parent = Animal
3638Hyena.BackgroundColor3 = Color3.new(1, 1, 1)
3639Hyena.Position = UDim2.new(0.788063109, 0, 0.258858562, 0)
3640Hyena.Size = UDim2.new(0, 79, 0, 27)
3641Hyena.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3642Hyena.Font = Enum.Font.SourceSans
3643Hyena.Text = "Hyena"
3644Hyena.TextColor3 = Color3.new(0, 0, 0)
3645Hyena.TextSize = 14
3646Hyena.MouseButton1Down:connect(function()
3647local Lighting = game.Lighting
3648game.Workspace.RemoteServer.LoadChar:FireServer(Lighting.MaleHyena)
3649end)
3650
3651Cheetah.Name = "Cheetah"
3652Cheetah.Parent = Animal
3653Cheetah.BackgroundColor3 = Color3.new(1, 1, 1)
3654Cheetah.Position = UDim2.new(0.585572839, 0, 0.258858562, 0)
3655Cheetah.Size = UDim2.new(0, 79, 0, 27)
3656Cheetah.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3657Cheetah.Font = Enum.Font.SourceSans
3658Cheetah.Text = "Cheetah"
3659Cheetah.TextColor3 = Color3.new(0, 0, 0)
3660Cheetah.TextSize = 14
3661Cheetah.MouseButton1Down:connect(function()
3662local Lighting = game.Lighting
3663game.Workspace.RemoteServer.LoadChar:FireServer(Lighting.MaleCheetah)
3664end)
3665
3666Lion.Name = "Lion"
3667Lion.Parent = Animal
3668Lion.BackgroundColor3 = Color3.new(1, 1, 1)
3669Lion.Position = UDim2.new(0.00117616821, 0, 0.257920653, 0)
3670Lion.Size = UDim2.new(0, 79, 0, 27)
3671Lion.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3672Lion.Font = Enum.Font.SourceSans
3673Lion.Text = "Lion"
3674Lion.TextColor3 = Color3.new(0, 0, 0)
3675Lion.TextSize = 14
3676Lion.MouseButton1Down:connect(function()
3677local Lighting = game.Lighting
3678game.Workspace.RemoteServer.LoadChar:FireServer(Lighting.Lion)
3679end)
3680
3681Impala.Name = "Impala"
3682Impala.Parent = Animal
3683Impala.BackgroundColor3 = Color3.new(1, 1, 1)
3684Impala.Position = UDim2.new(0.201683789, 0, 0.626607537, 0)
3685Impala.Size = UDim2.new(0, 79, 0, 27)
3686Impala.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3687Impala.Font = Enum.Font.SourceSans
3688Impala.Text = "Impala"
3689Impala.TextColor3 = Color3.new(0, 0, 0)
3690Impala.TextSize = 14
3691Impala.MouseButton1Down:connect(function()
3692local Lighting = game.Lighting
3693game.Workspace.RemoteServer.LoadChar:FireServer(Lighting.Impala)
3694end)
3695
3696
3697Croco.Name = "Croco"
3698Croco.Parent = Animal
3699Croco.BackgroundColor3 = Color3.new(1, 1, 1)
3700Croco.Position = UDim2.new(0.201683789, 0, 0.257920653, 0)
3701Croco.Size = UDim2.new(0, 79, 0, 27)
3702Croco.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3703Croco.Font = Enum.Font.SourceSans
3704Croco.Text = "Crocodile"
3705Croco.TextColor3 = Color3.new(0, 0, 0)
3706Croco.TextSize = 14
3707Croco.MouseButton1Down:connect(function()
3708local Lighting = game.Lighting
3709game.Workspace.RemoteServer.LoadChar:FireServer(Lighting.Croc)
3710end)
3711
3712Gnu.Name = "Gnu"
3713Gnu.Parent = Animal
3714Gnu.BackgroundColor3 = Color3.new(1, 1, 1)
3715Gnu.Position = UDim2.new(0.789814293, 0, 0.62018615, 0)
3716Gnu.Size = UDim2.new(0, 79, 0, 27)
3717Gnu.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3718Gnu.Font = Enum.Font.SourceSans
3719Gnu.Text = "Gnu"
3720Gnu.TextColor3 = Color3.new(0, 0, 0)
3721Gnu.TextSize = 14
3722Gnu.MouseButton1Down:connect(function()
3723local Lighting = game.Lighting
3724game.Workspace.RemoteServer.LoadChar:FireServer(Lighting.Gnu)
3725end)
3726
3727Topi.Name = "Topi"
3728Topi.Parent = Animal
3729Topi.BackgroundColor3 = Color3.new(1, 1, 1)
3730Topi.Position = UDim2.new(0.590672135, 0, 0.625597417, 0)
3731Topi.Size = UDim2.new(0, 79, 0, 27)
3732Topi.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3733Topi.Font = Enum.Font.SourceSans
3734Topi.Text = "Topi"
3735Topi.TextColor3 = Color3.new(0, 0, 0)
3736Topi.TextSize = 14
3737Topi.MouseButton1Down:connect(function()
3738local Lighting = game.Lighting
3739game.Workspace.RemoteServer.LoadChar:FireServer(Lighting.Topi)
3740end)
3741
3742Buffalo.Name = "Buffalo"
3743Buffalo.Parent = Animal
3744Buffalo.BackgroundColor3 = Color3.new(1, 1, 1)
3745Buffalo.Position = UDim2.new(0.00117616821, 0, 0.62271148, 0)
3746Buffalo.Size = UDim2.new(0, 79, 0, 27)
3747Buffalo.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3748Buffalo.Font = Enum.Font.SourceSans
3749Buffalo.Text = "Buffalo"
3750Buffalo.TextColor3 = Color3.new(0, 0, 0)
3751Buffalo.TextSize = 14
3752Buffalo.MouseButton1Down:connect(function()
3753local Lighting = game.Lighting
3754game.Workspace.RemoteServer.LoadChar:FireServer(Lighting.BuffaloBull)
3755end)
3756
3757Tommie.Name = "Tommie"
3758Tommie.Parent = Animal
3759Tommie.BackgroundColor3 = Color3.new(1, 1, 1)
3760Tommie.Position = UDim2.new(0.395217478, 0, 0.630070686, 0)
3761Tommie.Size = UDim2.new(0, 79, 0, 27)
3762Tommie.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3763Tommie.Font = Enum.Font.SourceSans
3764Tommie.Text = "Tommie"
3765Tommie.TextColor3 = Color3.new(0, 0, 0)
3766Tommie.TextSize = 14
3767Tommie.MouseButton1Down:connect(function()
3768local Lighting = game.Lighting
3769game.Workspace.RemoteServer.LoadChar:FireServer(Lighting.Tommie)
3770end)
3771
3772Leopard.Name = "Leopard"
3773Leopard.Parent = Animal
3774Leopard.BackgroundColor3 = Color3.new(1, 1, 1)
3775Leopard.Position = UDim2.new(0.395217508, 0, 0.258858562, 0)
3776Leopard.Size = UDim2.new(0, 79, 0, 27)
3777Leopard.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
3778Leopard.Font = Enum.Font.SourceSans
3779Leopard.Text = "Leopard"
3780Leopard.TextColor3 = Color3.new(0, 0, 0)
3781Leopard.TextSize = 14
3782Leopard.MouseButton1Down:connect(function()
3783local Lighting = game.Lighting
3784game.Workspace.RemoteServer.LoadChar:FireServer(Lighting.Leopard)
3785end)
3786
3787RAW Paste Data
3788
3789
3790
3791
3792We 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
3793
3794create new paste / dealsnew! / syntax languages / archive / faq / tools / night mode / api / scraping api
3795privacy statement / cookies policy / terms of service / security disclosure / dmca / contact
3796
3797By using Pastebin.com you agree to our cookies policy to enhance your experience.
3798Site design & logo © 2020 Pastebin; user contributions (pastes) licensed under cc by-sa 3.0 -- FavPNG -- Dedicated Server Hosting by Steadfast