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