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