· 5 years ago · Mar 27, 2020, 10:02 PM
1-- Constraints: -----------------------
2local ver = "0.6.9"
3local nextupd = "9-10/03/2020 GMT"
4local Devs = {"pigeoncult","Curvn","goldboy1313","TbhSxnful"}
5local changeLog = {
6 UP1 = "e/emote no longer randomly stops unless you purposely move and dosent create a buggy effect after.";
7 UP2 = "sd/saydiscord now actually saves (sorry).";
8 UP3 = "ranim/removeanim now uses .Disabled instead of :Destroy()";
9 UP4 = "reanim/restoreanim = Restores your characters animations.";
10 UP5 = "unanim/unanimation = Stops all animations.";
11 I = ""
12}
13getParent = nil
14if game:GetService("CoreGui"):FindFirstChild("RobloxGui") then
15 getParent = game:GetService("CoreGui").RobloxGui
16else
17 game:GetService("CoreGui")
18end
19for i,GUI in pairs(getParent:GetChildren()) do
20 if GUI.Name == "Unnamed" then
21 GUI:Destroy()
22 end
23end
24---------------------------------------
25
26--[[
27 ▄▀▄▄▄▄ ▄▀▀▄ ▄▀▄ ▄▀▀█▄▄ ▄▀▀▄ ▄▀▄
28 █ █ ▌ █ █ ▀ █ █ ▄▀ █ █ █ █
29 ▐ █ ▐ █ █ ▐ █ █ ▐ ▀▄▀
30 █ █ █ █ █ ▄▀ █
31 ▄▀▄▄▄▄▀ ▄▀ ▄▀ ▄▀▄▄▄▄▀ █ ▄▀
32 █ ▐ █ █ █ ▐ ▄▀ ▄▀
33 ▐ ▐ ▐ ▐ █ ▐
34
35 -----------------------------------------------------------------------------------
36 Credits:
37 -----------------------------------------------------------------------------------
38 Creator - pigeon#1818
39 Co-Creator - hz#4777
40 Devs - 6033#6033, Mew#0003, Curvn#2646,
41 Former Devs - nathan#0005
42 -----------------------------------------------------------------------------------
43 Extras:
44 -----------------------------------------------------------------------------------
45 Contributor - Bannable#5005
46 @ animpack
47 -----------------------------------------------------------------------------------
48 Info:
49 -----------------------------------------------------------------------------------
50 Key U - Open/Closes output
51 Key Q - Open/Closes CMD-X
52 Key ; - Auto Focuses CMDBar
53 CMDList - https://pastebin.com/sdVNW5LN
54 Loadstring - loadstring(game:HttpGet("https://pastebin.com/raw/HFkyyd1H",true))()
55 -----------------------------------------------------------------------------------
56 --Credit to IY for some functions within CMD-X--
57]]--
58-- Variables: ------------------------
59local On = Instance.new("StringValue")
60local player = game.Players.LocalPlayer
61local mouse = game.Players.LocalPlayer:GetMouse()
62local cmdws = game:GetService("Workspace")
63local cmdp = game:GetService("Players")
64local cmdl = game:GetService("Lighting")
65local cmdrs = game:GetService("ReplicatedStorage")
66local cmdrs2 = game:GetService("RunService")
67local cmdts = game:GetService("TweenService")
68local cmdvu = game:GetService("VirtualUser")
69local cmduis = game:GetService("UserInputService")
70local cmdteams = game:GetService("Teams")
71local cmdlp = cmdp.LocalPlayer
72local cmdc = cmdlp.Character
73local cmdh = cmdc.Humanoid
74local cmdhrp = cmdc.HumanoidRootPart
75local cmdpg = cmdlp.PlayerGui
76local cmdm = cmdlp:GetMouse()
77---------------------------------------
78-- Writefile: -------------------------
79
80function writefileExploit()
81 if writefile then
82 return true
83 end
84end
85
86local cooldown = false
87function writefileCooldown(name,data)
88 spawn(function()
89 if not cooldown then
90 cooldown = true
91 writefile(name, data)
92 else
93 repeat wait() until cooldown == false
94 writefileCooldown(name,data)
95 end
96 wait(3)
97 cooldown = false
98 end)
99end
100
101defaultsettings = {
102 text2 = false;
103 hotkeyopen = 'q';
104 hotkeyopx = 'u';
105 hotkeyfocus = ';';
106 hotkeyfly = '';
107 hotkeyxray = '';
108 hotkeyesp = '';
109 hotkeyaimbot = '';
110 prefix = '.';
111 prompt = 'CMD-X Prompt >';
112 enterCMD = {};
113 gotoPos = 0;
114 gotoPosSide = 0;
115 gotoPosHead = 0;
116 WPs = {};
117 loadCustoms = {};
118 discordTag = '';
119 permflyspeed = 1;
120 permwalkspeed = 50;
121 permjumppower = 150;
122 permhipheight = 20;
123 permgravity = 50;
124 Adm = {};
125 hkBinds = {};
126 dStyle = "rounded";
127 conFly = true;
128 suggestions = true
129}
130
131defaults = game:GetService("HttpService"):JSONEncode(defaultsettings)
132
133local nosaves = false
134
135function saves()
136 if writefileExploit() then
137 if pcall(function() readfile("CMD-X.lua") end) then
138 if readfile("CMD-X.lua") ~= nil then
139 local json = game:GetService("HttpService"):JSONDecode(readfile("CMD-X.lua"))
140 if json.text2 ~= nil then text2 = json.text2 else text2 = {} end
141 if json.hotkeyopen ~= nil then hotkeyopen = json.hotkeyopen else hotkeyopen = 'q' end
142 if json.hotkeyopx ~= nil then hotkeyopx = json.hotkeyopx else hotkeyopx = 'u' end
143 if json.hotkeyfocus ~= nil then hotkeyfocus = json.hotkeyfocus else hotkeyfocus = ';' end
144 if json.hotkeyfly ~= nil then hotkeyfly = json.hotkeyfly else hotkeyfly = '' end
145 if json.hotkeyxray ~= nil then hotkeyxray = json.hotkeyxray else hotkeyxray = '' end
146 if json.prefix ~= nil then prefix = json.prefix else prefix = '.' end
147 if json.prompt ~= nil then prompt = json.prompt else prompt = 'CMD-X Prompt >' end
148 if json.enterCMD ~= nil then enterCMD = json.enterCMD else enterCMD = {} end
149 if json.gotoPos ~= nil then gotoPos = json.gotoPos else gotoPos = 0 end
150 if json.gotoPosSide ~= nil then gotoPosSide = json.gotoPosSide else gotoPosSide = 0 end
151 if json.gotoPosHead ~= nil then gotoPosHead = json.gotoPosHead else gotoPosHead = 0 end
152 if json.WPs ~= nil then WPs = json.WPs else WPs = {} end
153 if json.loadCustoms ~= nil then loadCustoms = json.loadCustoms else loadCustoms = {} end
154 if json.discordTag ~= nil then discordTag = json.discordTag else discordTag = '' end
155 if json.hotkeyaimbot ~= nil then hotkeyaimbot = json.hotkeyaimbot else hotkeyaimbot = '' end
156 if json.hotkeyesp ~= nil then hotkeyesp = json.hotkeyesp else hotkeyesp = '' end
157 if json.permflyspeed ~= nil then permflyspeed = json.permflyspeed else permflyspeed = 1 end
158 if json.permwalkspeed ~= nil then permwalkspeed = json.permwalkspeed else permwalkspeed = 50 end
159 if json.permjumppower ~= nil then permjumppower = json.permjumppower else permjumppower = 150 end
160 if json.permhipheight ~= nil then permhipheight = json.permhipheight else permhipheight = 20 end
161 if json.permgravity ~= nil then permgravity = json.permgravity else permgravity = 50 end
162 if json.Adm ~= nil then Adm = json.Adm else Adm = {} end
163 if json.hkBinds ~= nil then hkBinds = json.hkBinds else hkBinds = {} end
164 if json.dStyle ~= nil then dStyle = json.dStyle else dStyle = "rounded" end
165 if json.conFly ~= nil then conFly = json.conFly else conFly = true end
166 if json.suggestions ~= nil then suggestions = json.suggestions else suggestions = true end
167 else
168 writefileCooldown("CMD-X.lua", defaults)
169 wait()
170 saves()
171 end
172 else
173 writefileCooldown("CMD-X.lua", defaults)
174 wait()
175 if pcall(function() readfile("CMD-X.lua") end) then
176 saves()
177 else
178 nosaves = true
179 text2 = false
180 hotkeyopen = 'q'
181 hotkeyopx = 'u'
182 hotkeyfocus = ';'
183 hotkeyfly = ''
184 hotkeyxray = ''
185 hotkeyesp = ''
186 hotkeyaimbot = ''
187 prefix = '.'
188 prompt = 'CMD-X Prompt >'
189 enterCMD = {}
190 gotoPos = 0
191 gotoPosSide = 0
192 gotoPosHead = 0
193 WPs = {}
194 loadCustoms = {}
195 discordTag = ''
196 permflyspeed = 1
197 permwalkspeed = 50
198 permjumppower = 150
199 permhipheight = 20
200 permgravity = 50
201 Adm = {}
202 hkBinds = {}
203 dStyle = "rounded"
204 conFly = true
205 suggestions = true
206 end
207 end
208 else
209 nosaves = true
210 text2 = false
211 hotkeyopen = 'q'
212 hotkeyopx = 'u'
213 hotkeyfocus = ';'
214 hotkeyfly = ''
215 hotkeyxray = ''
216 hotkeyesp = ''
217 hotkeyaimbot = ''
218 prefix = '.'
219 prompt = 'CMD-X Prompt >'
220 enterCMD = {}
221 gotoPos = 0
222 gotoPosSide = 0
223 gotoPosHead = 0
224 WPs = {}
225 loadCustoms = {}
226 discordTag = ''
227 permflyspeed = 1
228 permwalkspeed = 50
229 permjumppower = 150
230 permhipheight = 20
231 permgravity = 50
232 Adm = {}
233 hkBinds = {}
234 dStyle = "rounded"
235 conFly = true
236 suggestions = false
237 end
238end
239
240saves()
241
242function updatesaves()
243 if nosaves == false and writefileExploit() then
244 local update = {
245 text2 = text2;
246 hotkeyopen = hotkeyopen;
247 hotkeyopx = hotkeyopx;
248 hotkeyfocus = hotkeyfocus;
249 hotkeyfly = hotkeyfly;
250 hotkeyxray = hotkeyxray;
251 hotkeyesp = hotkeyesp;
252 hotkeyaimbot = hotkeyaimbot;
253 prefix = prefix;
254 prompt = prompt;
255 enterCMD = enterCMD;
256 gotoPos = gotoPos;
257 gotoPosSide = gotoPosSide;
258 gotoPosHead = gotoPosHead;
259 WPs = WPs;
260 loadCustoms = loadCustoms;
261 discordTag = discordTag;
262 permflyspeed = permflyspeed;
263 permwalkspeed = permwalkspeed;
264 permjumppower = permjumppower;
265 permhipheight = permhipheight;
266 permgravity = permgravity;
267 Adm = Adm;
268 hkBinds = hkBinds;
269 dStyle = dStyle;
270 conFly = conFly;
271 suggestions = suggestions
272 }
273 writefileCooldown("CMD-X.lua", game:GetService("HttpService"):JSONEncode(update))
274 end
275end
276
277AdmIG = {}
278
279for i,x in pairs(Adm) do
280 for _,v in pairs(game:GetService("Players"):GetChildren()) do
281 if Adm[i] == v.Name then
282 AdmIG[#AdmIG+1] = Adm[i]
283 end
284 end
285end
286
287---------------------------------------
288-- GUI Variables: ---------------------
289
290-- Holder --
291local Unnamed = Instance.new("ScreenGui")
292local holder = Instance.new("Frame")
293-- Output --
294local output = Instance.new("Frame")
295local output1 = Instance.new("TextLabel")
296local output2 = Instance.new("TextLabel")
297local output3 = Instance.new("TextLabel")
298local output4 = Instance.new("TextLabel")
299local output5 = Instance.new("TextLabel")
300local output6 = Instance.new("TextLabel")
301local output7 = Instance.new("TextLabel")
302local output8 = Instance.new("TextLabel")
303local output9 = Instance.new("TextLabel")
304-- CMDBar --
305local entry = Instance.new("Frame")
306local user = Instance.new("TextLabel")
307local cmd = Instance.new("TextBox")
308local cmdsu = Instance.new("TextLabel")
309-- Random --
310local Frame = Instance.new("Frame")
311local TextLabel = Instance.new("TextLabel")
312local TextButton = Instance.new("TextButton")
313local TextButton_2 = Instance.new("TextButton")
314local TextButton_3 = Instance.new("TextButton")
315local TextButton_4 = Instance.new("TextButton")
316local TextButton_5 = Instance.new("TextButton")
317local TextButton_6 = Instance.new("TextButton")
318local name = Instance.new("Frame")
319local ehcmdshit = Instance.new("ScrollingFrame")
320local cmdslool = Instance.new("TextLabel")
321local shitlabeljpeg = Instance.new("TextLabel")
322local ScreenGuipoo = Instance.new("ScreenGui")
323local TextButtonpoo = Instance.new("TextButton")
324-- Command GUIs --
325local ScrollingFrame = Instance.new("ScrollingFrame")
326local logsframe = Instance.new("Frame")
327local logstitle = Instance.new("TextButton")
328local Scrollingcmdi = Instance.new("ScrollingFrame")
329local cmdiframe = Instance.new("Frame")
330local cmdititle = Instance.new("TextButton")
331local xcmdi = Instance.new("TextButton")
332local CMDlist = Instance.new("Frame")
333local cmdstitle = Instance.new("TextButton")
334local profile = Instance.new("TextLabel")
335local avatarframe = Instance.new("Frame")
336local avatartitle = Instance.new("TextButton")
337local avatarimage = Instance.new("ImageLabel")
338local profileview = Instance.new("TextLabel")
339local accountage = Instance.new("TextLabel")
340local userid = Instance.new("TextLabel")
341local fecheck = Instance.new("TextLabel")
342local operatingsystem = Instance.new("TextLabel")
343local vrheadset = Instance.new("TextLabel")
344local creditsavatar = Instance.new("TextLabel")
345local hs = Instance.new("TextButton")
346local at = Instance.new("TextButton")
347local ab = Instance.new("TextButton")
348local hss = Instance.new("TextButton")
349local gameframe = Instance.new("Frame")
350local gametitle = Instance.new("TextButton")
351local gameimage = Instance.new("ImageLabel")
352local gameview = Instance.new("TextLabel")
353local gameid = Instance.new("TextLabel")
354local uptime = Instance.new("TextLabel")
355local creditsgame = Instance.new("TextLabel")
356local textl = Instance.new("TextLabel")
357local xgameinfo = Instance.new("TextButton")
358local configframe = Instance.new("Frame")
359local configtitle = Instance.new("TextButton")
360local af2 = Instance.new("ScrollingFrame")
361local osconfigtext = Instance.new("TextButton")
362local osconfigtext2 = Instance.new("TextButton")
363local oscheck2 = Instance.new("TextLabel")
364local oscheck = Instance.new("TextLabel")
365local xlogs = Instance.new("TextButton")
366local xconfig = Instance.new("TextButton")
367local xavatar = Instance.new("TextButton")
368local xcmds = Instance.new("TextButton")
369local tabs = Instance.new("Frame")
370local tabsbar = Instance.new("TextButton")
371local cmdsbar = Instance.new("TextButton")
372local logsbar = Instance.new("TextButton")
373local avatarbar = Instance.new("TextButton")
374local gamebar = Instance.new("TextButton")
375local incomingbar = Instance.new("TextButton")
376local incomingbar2 = Instance.new("TextButton")
377local Scrollingad = Instance.new("ScrollingFrame")
378local adframe = Instance.new("Frame")
379local adtitle = Instance.new("TextButton")
380local xad = Instance.new("TextButton")
381local adbar = Instance.new("TextButton")
382---------------------------------------
383-- GUI Objects: -----------------------
384output.Name = "output"
385output.Parent = holder
386output.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
387output.BorderSizePixel = 0
388output.Position = UDim2.new(0, -8, 0, 19)
389output.Size = UDim2.new(0, 525, 0, 253)
390output.Style = Enum.FrameStyle.RobloxRound
391output.Visible = false
392
393Unnamed.Name = "Unnamed"
394Unnamed.Parent = getParent
395Unnamed.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
396Unnamed.ResetOnSpawn = false
397
398Frame.Parent = Unnamed
399Frame.BackgroundColor3 = Color3.new(0.0313726, 0.0313726, 0.0313726)
400Frame.Position = UDim2.new(0.896417439, 0, 0.791154742, 0)
401Frame.Size = UDim2.new(0, 125, 0, 163)
402Frame.Style = Enum.FrameStyle.RobloxRound
403Frame.Visible = false
404
405ScrollingFrame.Parent = logsframe
406ScrollingFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
407ScrollingFrame.BackgroundTransparency = 0.30000001192093
408ScrollingFrame.BorderSizePixel = 0
409ScrollingFrame.Position = UDim2.new(0, 0, 0.0680000037, 0)
410ScrollingFrame.Size = UDim2.new(0, 300, 0, 404)
411
412logsframe.Name = "logsframe"
413logsframe.Parent = Unnamed
414logsframe.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
415logsframe.BackgroundTransparency = 1
416logsframe.BorderSizePixel = 0
417logsframe.Position = UDim2.new(0.28193146, 0, 0.0159704965, 0)
418logsframe.Size = UDim2.new(0, 300, 0, 433)
419logsframe.Visible = false
420logsframe.Active = true
421logsframe.Draggable = true
422
423logstitle.Name = "logstitle"
424logstitle.Parent = logsframe
425logstitle.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
426logstitle.BorderColor3 = Color3.new(1, 1, 1)
427logstitle.Position = UDim2.new(-1.1920929e-07, 0, 0, 0)
428logstitle.Size = UDim2.new(0, 300, 0, 29)
429logstitle.Font = Enum.Font.GothamBlack
430logstitle.Text = "CMD-X LOGS VIEWER"
431logstitle.TextColor3 = Color3.new(1, 1, 1)
432logstitle.TextSize = 14
433
434Scrollingcmdi.Parent = cmdiframe
435Scrollingcmdi.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
436Scrollingcmdi.BackgroundTransparency = 0.30000001192093
437Scrollingcmdi.BorderSizePixel = 0
438Scrollingcmdi.Position = UDim2.new(0, 0, 0.0680000037, 0)
439Scrollingcmdi.Size = UDim2.new(0, 300, 0, 404)
440
441function findCmd(cmd_name)
442 for i,v in pairs(CMDN)do
443 for _,x in pairs(CMDN[i].A) do
444 if CMDN[i].N:lower() == cmd_name:lower() or CMDN[i].A[_]:lower() == cmd_name:lower() then
445 v = CMDN[i].N
446 return v
447 end
448 end
449 end
450end
451
452local Cmdsearch = Instance.new("TextBox")
453
454Cmdsearch.Name = "Cmdsearch"
455Cmdsearch.Parent = cmdiframe
456Cmdsearch.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
457Cmdsearch.BorderSizePixel = 0
458Cmdsearch.Position = UDim2.new(0, 0, 1.00000012, 0)
459Cmdsearch.Size = UDim2.new(0, 300, 0, 29)
460Cmdsearch.Font = Enum.Font.Code
461Cmdsearch.PlaceholderColor3 = Color3.new(1, 1, 1)
462Cmdsearch.PlaceholderText = "Search CMDs..."
463Cmdsearch.Text = ""
464Cmdsearch.TextColor3 = Color3.new(1, 1, 1)
465Cmdsearch.TextSize = 15
466
467cmdiframe.Name = "cmdiframe"
468cmdiframe.Parent = Unnamed
469cmdiframe.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
470cmdiframe.BackgroundTransparency = 1
471cmdiframe.BorderSizePixel = 0
472cmdiframe.Position = UDim2.new(0.28193146, 0, 0.0159704965, 0)
473cmdiframe.Size = UDim2.new(0, 300, 0, 433)
474cmdiframe.Visible = false
475cmdiframe.Active = true
476cmdiframe.Draggable = true
477
478Scrollingad.Parent = adframe
479Scrollingad.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
480Scrollingad.BackgroundTransparency = 0.30000001192093
481Scrollingad.BorderSizePixel = 0
482Scrollingad.Position = UDim2.new(0, 0, 0.0680000037, 0)
483Scrollingad.Size = UDim2.new(0, 300, 0, 404)
484
485adframe.Name = "adframe"
486adframe.Parent = Unnamed
487adframe.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
488adframe.BackgroundTransparency = 1
489adframe.BorderSizePixel = 0
490adframe.Position = UDim2.new(0.28193146, 0, 0.0159704965, 0)
491adframe.Size = UDim2.new(0, 300, 0, 433)
492adframe.Visible = false
493adframe.Active = true
494adframe.Draggable = true
495
496adtitle.Name = "adtitle"
497adtitle.Parent = adframe
498adtitle.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
499adtitle.BorderColor3 = Color3.new(1, 1, 1)
500adtitle.Position = UDim2.new(-1.1920929e-07, 0, 0, 0)
501adtitle.Size = UDim2.new(0, 300, 0, 29)
502adtitle.Font = Enum.Font.GothamBlack
503adtitle.Text = "CMD-X ADMIN DETECTOR"
504adtitle.TextColor3 = Color3.new(1, 1, 1)
505adtitle.TextSize = 14
506
507xad.Name = "xad"
508xad.Parent = adtitle
509xad.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
510xad.BorderColor3 = Color3.new(1, 1, 1)
511xad.Position = UDim2.new(0.903333306, 0, 0, 0)
512xad.Size = UDim2.new(0, 29, 0, 29)
513xad.Font = Enum.Font.GothamBlack
514xad.Text = "X"
515xad.TextColor3 = Color3.new(1, 1, 1)
516xad.TextSize = 20
517xad.MouseButton1Down:connect(function()
518 adframe:TweenSize(UDim2.new(0,0,0,0), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, .5, false, function() adframe.Visible = false end)
519end)
520
521adframe:TweenSize(UDim2.new(0,0,0,0), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, .5, false, function() adframe.Visible = false end)
522
523cmdititle.Name = "cmdititle"
524cmdititle.Parent = cmdiframe
525cmdititle.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
526cmdititle.BorderColor3 = Color3.new(1, 1, 1)
527cmdititle.Position = UDim2.new(-1.1920929e-07, 0, 0, 0)
528cmdititle.Size = UDim2.new(0, 300, 0, 29)
529cmdititle.Font = Enum.Font.GothamBlack
530cmdititle.Text = "CMD-X CMDS VIEWER"
531cmdititle.TextColor3 = Color3.new(1, 1, 1)
532cmdititle.TextSize = 14
533
534CMDlist.Name = "CMDlist"
535CMDlist.Parent = Unnamed
536CMDlist.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
537CMDlist.BackgroundTransparency = 0.30000001192093
538CMDlist.BorderSizePixel = 0
539CMDlist.Position = UDim2.new(0.28193146, 0, 0.0159704965, 0)
540CMDlist.Size = UDim2.new(0, 300, 0, 433)
541CMDlist.Visible = false
542CMDlist.Active = true
543CMDlist.Draggable = true
544
545cmdstitle.Name = "cmdstitle"
546cmdstitle.Parent = CMDlist
547cmdstitle.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
548cmdstitle.BorderColor3 = Color3.new(1, 1, 1)
549cmdstitle.Position = UDim2.new(-1.1920929e-07, 0, 0, 0)
550cmdstitle.Size = UDim2.new(0, 300, 0, 29)
551cmdstitle.Font = Enum.Font.GothamBlack
552cmdstitle.Text = "CMD-X CMD LIST"
553cmdstitle.TextColor3 = Color3.new(1, 1, 1)
554cmdstitle.TextSize = 14
555
556configframe.Name = "configframe"
557configframe.Parent = Unnamed
558configframe.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
559configframe.BackgroundTransparency = 1
560configframe.BorderSizePixel = 0
561configframe.Position = UDim2.new(0.28193146, 0, 0.0159704965, 0)
562configframe.Size = UDim2.new(0, 300, 0, 433)
563configframe.Active = true
564configframe.Draggable = true
565configframe.Visible = false
566
567configtitle.Name = "configtitle"
568configtitle.Parent = configframe
569configtitle.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
570configtitle.BorderColor3 = Color3.new(1, 1, 1)
571configtitle.Position = UDim2.new(-1.1920929e-07, 0, 0, 0)
572configtitle.Size = UDim2.new(0, 300, 0, 29)
573configtitle.Font = Enum.Font.GothamBlack
574configtitle.Text = "CMD-X CONFIG"
575configtitle.TextColor3 = Color3.new(1, 1, 1)
576configtitle.TextSize = 14
577
578af2.Name = "af2"
579af2.Parent = configframe
580af2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
581af2.BackgroundTransparency = 0.30000001192093
582af2.BorderSizePixel = 0
583af2.Position = UDim2.new(0, 0, 0.0680000037, 0)
584af2.Size = UDim2.new(0, 300, 0, 404)
585
586osconfigtext.Name = "osconfigtext"
587osconfigtext.Parent = configframe
588osconfigtext.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
589osconfigtext.BorderColor3 = Color3.new(1, 1, 1)
590osconfigtext.Position = UDim2.new(0.226666674, 0, 0.129330248, 0)
591osconfigtext.Size = UDim2.new(0, 76, 0, 29)
592osconfigtext.Font = Enum.Font.GothamBlack
593osconfigtext.Text = "Text (Scientific)"
594osconfigtext.TextColor3 = Color3.new(1, 1, 1)
595
596osconfigtext2.Name = "osconfigtext2"
597osconfigtext2.Parent = configframe
598osconfigtext2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
599osconfigtext2.BorderColor3 = Color3.new(1, 1, 1)
600osconfigtext2.Position = UDim2.new(0.51666671, 0, 0.129330248, 0)
601osconfigtext2.Size = UDim2.new(0, 76, 0, 29)
602osconfigtext2.Font = Enum.Font.GothamBlack
603osconfigtext2.Text = "Text (Simple)"
604osconfigtext2.TextColor3 = Color3.new(1, 1, 1)
605osconfigtext2.TextSize = 9
606
607oscheck2.Name = "oscheck2"
608oscheck2.Parent = configframe
609oscheck2.BackgroundColor3 = Color3.new(1, 1, 1)
610oscheck2.BackgroundTransparency = 1
611oscheck2.BorderSizePixel = 0
612oscheck2.Position = UDim2.new(0.183333278, 0, 0.221708983, 0)
613oscheck2.Size = UDim2.new(0, 190, 0, 19)
614oscheck2.Font = Enum.Font.Gotham
615oscheck2.Text = "Win32 Windows"
616oscheck2.TextColor3 = Color3.new(1, 1, 1)
617oscheck2.TextSize = 14
618
619oscheck.Name = "oscheck"
620oscheck.Parent = configframe
621oscheck.BackgroundColor3 = Color3.new(1, 1, 1)
622oscheck.BackgroundTransparency = 1
623oscheck.BorderSizePixel = 0
624oscheck.Position = UDim2.new(0.180000007, 0, 0.0669745803, 0)
625oscheck.Size = UDim2.new(0, 190, 0, 30)
626oscheck.Font = Enum.Font.GothamBlack
627oscheck.Text = "Operating System"
628oscheck.TextColor3 = Color3.new(1, 1, 1)
629oscheck.TextSize = 14
630
631profile.Name = "profile"
632profile.Parent = CMDlist
633profile.BackgroundColor3 = Color3.new(1, 1, 1)
634profile.BackgroundTransparency = 1
635profile.BorderSizePixel = 0
636profile.Position = UDim2.new(0.0233333334, 0, 0.0877597779, 0)
637profile.Size = UDim2.new(0, 286, 0, 388)
638profile.Font = Enum.Font.GothamBlack
639profile.Text = "The CMD-X CMD LIST is currently under construction please navigate to the .LUA file for the pastebin containing them."
640profile.TextColor3 = Color3.new(1, 1, 1)
641profile.TextScaled = true
642profile.TextSize = 14
643profile.TextWrapped = true
644profile.TextXAlignment = Enum.TextXAlignment.Left
645profile.TextYAlignment = Enum.TextYAlignment.Top
646
647avatarframe.Name = "avatarframe"
648avatarframe.Parent = Unnamed
649avatarframe.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
650avatarframe.BackgroundTransparency = 0.30000001192093
651avatarframe.BorderSizePixel = 0
652avatarframe.Position = UDim2.new(0.28193146, 0, 0.0159704965, 0)
653avatarframe.Size = UDim2.new(0, 300, 0, 433)
654avatarframe.Visible = false
655avatarframe.Active = true
656avatarframe.Draggable = true
657
658gameframe.Name = "gameframe"
659gameframe.Parent = Unnamed
660gameframe.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
661gameframe.BackgroundTransparency = 0.30000001192093
662gameframe.BorderSizePixel = 0
663gameframe.Position = UDim2.new(0.28193146, 0, 0.0159704965, 0)
664gameframe.Size = UDim2.new(0, 300, 0, 433)
665gameframe.Visible = false
666gameframe.Active = true
667gameframe.Draggable = true
668
669gametitle.Name = "gametitle"
670gametitle.Parent = gameframe
671gametitle.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
672gametitle.BorderColor3 = Color3.new(1, 1, 1)
673gametitle.Size = UDim2.new(0, 300, 0, 29)
674gametitle.Font = Enum.Font.GothamBlack
675gametitle.Text = "CMD-X GAME VIEWER"
676gametitle.TextColor3 = Color3.new(1, 1, 1)
677gametitle.TextSize = 14
678
679fecheck.Name = "fecheck"
680fecheck.Parent = gameframe
681fecheck.BackgroundColor3 = Color3.new(1, 1, 1)
682fecheck.BackgroundTransparency = 1
683fecheck.BorderSizePixel = 0
684fecheck.Position = UDim2.new(0.183333337, 0, 0.725173175, 0)
685fecheck.Size = UDim2.new(0, 190, 0, 19)
686fecheck.Font = Enum.Font.Gotham
687fecheck.Text = "Filtering:.."
688fecheck.TextColor3 = Color3.new(1, 1, 1)
689fecheck.TextSize = 14
690
691gameimage.Name = "gameimage"
692gameimage.Parent = gameframe
693gameimage.BackgroundColor3 = Color3.new(1, 1, 1)
694gameimage.BackgroundTransparency = 1
695gameimage.BorderSizePixel = 0
696gameimage.Position = UDim2.new(0.183333337, 0, 0.104622021, 0)
697gameimage.Size = UDim2.new(0, 190, 0, 190)
698gameimage.Image = "rbxasset://textures/ui/GuiImagePlaceholder.png"
699
700gameview.Name = "gameview"
701gameview.Parent = gameframe
702gameview.BackgroundColor3 = Color3.new(1, 1, 1)
703gameview.BackgroundTransparency = 1
704gameview.BorderSizePixel = 0
705gameview.Position = UDim2.new(0.183333337, 0, 0.568129301, 0)
706gameview.Size = UDim2.new(0, 190, 0, 30)
707gameview.Font = Enum.Font.GothamBlack
708gameview.Text = "You are playing.."
709gameview.TextColor3 = Color3.new(1, 1, 1)
710gameview.TextSize = 14
711
712gameid.Name = "gameid"
713gameid.Parent = gameframe
714gameid.BackgroundColor3 = Color3.new(1, 1, 1)
715gameid.BackgroundTransparency = 1
716gameid.BorderSizePixel = 0
717gameid.Position = UDim2.new(0.183333337, 0, 0.637413383, 0)
718gameid.Size = UDim2.new(0, 190, 0, 19)
719gameid.Font = Enum.Font.Gotham
720gameid.Text = "ID of game:.."
721gameid.TextColor3 = Color3.new(1, 1, 1)
722gameid.TextSize = 14
723
724uptime.Name = "uptime"
725uptime.Parent = gameframe
726uptime.BackgroundColor3 = Color3.new(1, 1, 1)
727uptime.BackgroundTransparency = 1
728uptime.BorderSizePixel = 0
729uptime.Position = UDim2.new(0.183333337, 0, 0.681293309, 0)
730uptime.Size = UDim2.new(0, 190, 0, 19)
731uptime.Font = Enum.Font.Gotham
732uptime.Text = "uptime..workspace.DistributedGameTime"
733uptime.TextColor3 = Color3.new(1, 1, 1)
734uptime.TextSize = 14
735
736creditsgame.Name = "creditsgame"
737creditsgame.Parent = gameframe
738creditsgame.BackgroundColor3 = Color3.new(1, 1, 1)
739creditsgame.BackgroundTransparency = 1
740creditsgame.BorderSizePixel = 0
741creditsgame.Position = UDim2.new(0.183333337, 0, 0.889145553, 0)
742creditsgame.Size = UDim2.new(0, 190, 0, 19)
743creditsgame.Font = Enum.Font.GothamBlack
744creditsgame.Text = "Made by pigeon#1818"
745creditsgame.TextColor3 = Color3.new(1, 1, 1)
746creditsgame.TextSize = 14
747
748xconfig.Name = "xconfig"
749xconfig.Parent = configtitle
750xconfig.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
751xconfig.BorderColor3 = Color3.new(1, 1, 1)
752xconfig.Position = UDim2.new(0.903333306, 0, 0, 0)
753xconfig.Size = UDim2.new(0, 29, 0, 29)
754xconfig.Font = Enum.Font.GothamBlack
755xconfig.Text = "X"
756xconfig.TextColor3 = Color3.new(1, 1, 1)
757xconfig.TextSize = 20
758xconfig.MouseButton1Down:connect(function()
759 configframe:TweenSize(UDim2.new(0,0,0,0), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, .5, false, function() configframe.Visible = false end)
760end)
761
762xgameinfo.Name = "xgameinfo"
763xgameinfo.Parent = gametitle
764xgameinfo.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
765xgameinfo.BorderColor3 = Color3.new(1, 1, 1)
766xgameinfo.Position = UDim2.new(0.903333306, 0, 0, 0)
767xgameinfo.Size = UDim2.new(0, 29, 0, 29)
768xgameinfo.Font = Enum.Font.GothamBlack
769xgameinfo.Text = "X"
770xgameinfo.TextColor3 = Color3.new(1, 1, 1)
771xgameinfo.TextSize = 20
772xgameinfo.MouseButton1Down:connect(function()
773 gameframe:TweenSize(UDim2.new(0,0,0,0), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, .5, false, function() gameframe.Visible = false end)
774end)
775
776xlogs.Name = "xlogs"
777xlogs.Parent = logstitle
778xlogs.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
779xlogs.BorderColor3 = Color3.new(1, 1, 1)
780xlogs.Position = UDim2.new(0.903333306, 0, 0, 0)
781xlogs.Size = UDim2.new(0, 29, 0, 29)
782xlogs.Font = Enum.Font.GothamBlack
783xlogs.Text = "X"
784xlogs.TextColor3 = Color3.new(1, 1, 1)
785xlogs.TextSize = 20
786xlogs.MouseButton1Down:connect(function()
787 logsframe:TweenSize(UDim2.new(0,0,0,0), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, .5, false, function() logsframe.Visible = false end)
788 logsEnabled = false
789end)
790
791xcmdi.Name = "xcmdi"
792xcmdi.Parent = cmdititle
793xcmdi.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
794xcmdi.BorderColor3 = Color3.new(1, 1, 1)
795xcmdi.Position = UDim2.new(0.903333306, 0, 0, 0)
796xcmdi.Size = UDim2.new(0, 29, 0, 29)
797xcmdi.Font = Enum.Font.GothamBlack
798xcmdi.Text = "X"
799xcmdi.TextColor3 = Color3.new(1, 1, 1)
800xcmdi.TextSize = 20
801xcmdi.MouseButton1Down:connect(function()
802 cmdiframe:TweenSize(UDim2.new(0,0,0,0), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, .5, false, function() cmdiframe.Visible = false end)
803end)
804
805xavatar.Name = "xavatar"
806xavatar.Parent = avatartitle
807xavatar.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
808xavatar.BorderColor3 = Color3.new(1, 1, 1)
809xavatar.Position = UDim2.new(0.903333306, 0, 0, 0)
810xavatar.Size = UDim2.new(0, 29, 0, 29)
811xavatar.Font = Enum.Font.GothamBlack
812xavatar.Text = "X"
813xavatar.TextColor3 = Color3.new(1, 1, 1)
814xavatar.TextSize = 20
815xavatar.MouseButton1Down:connect(function()
816 avatarframe:TweenSize(UDim2.new(0,0,0,0), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, .5, false, function() avatarframe.Visible = false end)
817end)
818
819xcmds.Name = "xcmds"
820xcmds.Parent = cmdstitle
821xcmds.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
822xcmds.BorderColor3 = Color3.new(1, 1, 1)
823xcmds.Position = UDim2.new(0.903333306, 0, 0, 0)
824xcmds.Size = UDim2.new(0, 29, 0, 29)
825xcmds.Font = Enum.Font.GothamBlack
826xcmds.Text = "X"
827xcmds.TextColor3 = Color3.new(1, 1, 1)
828xcmds.TextSize = 20
829xcmds.MouseButton1Down:connect(function()
830 CMDlist:TweenSize(UDim2.new(0,0,0,0), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, .5, false, function() CMDlist.Visible = false end)
831end)
832
833CMDlist:TweenSize(UDim2.new(0,0,0,0), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, .5, false, function() CMDlist.Visible = false end)
834avatarframe:TweenSize(UDim2.new(0,0,0,0), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, .5, false, function() avatarframe.Visible = false end)
835logsframe:TweenSize(UDim2.new(0,0,0,0), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, .5, false, function() logsframe.Visible = false end)
836gameframe:TweenSize(UDim2.new(0,0,0,0), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, .5, false, function() gameframe.Visible = false end)
837configframe:TweenSize(UDim2.new(0,0,0,0), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, .5, false, function() configframe.Visible = false end)
838cmdiframe:TweenSize(UDim2.new(0,0,0,0), Enum.EasingDirection.Out, Enum.EasingStyle.Quad, .5, false, function() cmdiframe.Visible = false end)
839
840avatartitle.Name = "avatartitle"
841avatartitle.Parent = avatarframe
842avatartitle.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
843avatartitle.BorderColor3 = Color3.new(1, 1, 1)
844avatartitle.Size = UDim2.new(0, 300, 0, 29)
845avatartitle.Font = Enum.Font.GothamBlack
846avatartitle.Text = "CMD-X PROFILE VIEWER"
847avatartitle.TextColor3 = Color3.new(1, 1, 1)
848avatartitle.TextSize = 14
849
850avatarimage.Name = "avatarimage"
851avatarimage.Parent = avatarframe
852avatarimage.BackgroundColor3 = Color3.new(1, 1, 1)
853avatarimage.BackgroundTransparency = 1
854avatarimage.BorderSizePixel = 0
855avatarimage.Position = UDim2.new(0.183333337, 0, 0.104622021, 0)
856avatarimage.Size = UDim2.new(0, 190, 0, 190)
857avatarimage.Image = "rbxasset://textures/ui/GuiImagePlaceholder.png"
858
859hs.Name = "hs"
860hs.Parent = avatarframe
861hs.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
862hs.BorderColor3 = Color3.new(1, 1, 1)
863hs.Position = UDim2.new(0.183333337, 0, 0.524249375, 0)
864hs.Size = UDim2.new(0, 62, 0, 18)
865hs.Font = Enum.Font.GothamBlack
866hs.Text = "HS"
867hs.TextColor3 = Color3.new(1, 1, 1)
868hs.TextSize = 14
869
870hss.Name = "hs"
871hss.Parent = avatarframe
872hss.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
873hss.BorderColor3 = Color3.new(1, 1, 1)
874hss.Position = UDim2.new(0.183333337, 0, 0.524249375, 0)
875hss.Size = UDim2.new(0, 62, 0, 18)
876hss.Font = Enum.Font.GothamBlack
877hss.Text = "HS"
878hss.TextColor3 = Color3.new(1, 1, 1)
879hss.TextSize = 14
880hss.Visible = false
881
882at.Name = "at"
883at.Parent = avatarframe
884at.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
885at.BorderColor3 = Color3.new(1, 1, 1)
886at.Position = UDim2.new(0.390000045, 0, 0.524249434, 0)
887at.Size = UDim2.new(0, 65, 0, 18)
888at.Font = Enum.Font.GothamBlack
889at.Text = "AT"
890at.TextColor3 = Color3.new(1, 1, 1)
891at.TextSize = 14
892
893ab.Name = "ab"
894ab.Parent = avatarframe
895ab.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
896ab.BorderColor3 = Color3.new(1, 1, 1)
897ab.Position = UDim2.new(0.610000014, 0, 0.524249434, 0)
898ab.Size = UDim2.new(0, 62, 0, 18)
899ab.Font = Enum.Font.GothamBlack
900ab.Text = "AB"
901ab.TextColor3 = Color3.new(1, 1, 1)
902ab.TextSize = 14
903
904profileview.Name = "profileview"
905profileview.Parent = avatarframe
906profileview.BackgroundColor3 = Color3.new(1, 1, 1)
907profileview.BackgroundTransparency = 1
908profileview.BorderSizePixel = 0
909profileview.Position = UDim2.new(0.183333337, 0, 0.568129301, 0)
910profileview.Size = UDim2.new(0, 190, 0, 30)
911profileview.Font = Enum.Font.GothamBlack
912profileview.Text = "target's profile..:"
913profileview.TextColor3 = Color3.new(1, 1, 1)
914profileview.TextSize = 14
915
916accountage.Name = "accountage"
917accountage.Parent = avatarframe
918accountage.BackgroundColor3 = Color3.new(1, 1, 1)
919accountage.BackgroundTransparency = 1
920accountage.BorderSizePixel = 0
921accountage.Position = UDim2.new(0.183333337, 0, 0.637413383, 0)
922accountage.Size = UDim2.new(0, 190, 0, 19)
923accountage.Font = Enum.Font.Gotham
924accountage.Text = "target.AccountAge"
925accountage.TextColor3 = Color3.new(1, 1, 1)
926accountage.TextSize = 14
927
928userid.Name = "userid"
929userid.Parent = avatarframe
930userid.BackgroundColor3 = Color3.new(1, 1, 1)
931userid.BackgroundTransparency = 1
932userid.BorderSizePixel = 0
933userid.Position = UDim2.new(0.183333337, 0, 0.681293309, 0)
934userid.Size = UDim2.new(0, 190, 0, 19)
935userid.Font = Enum.Font.Gotham
936userid.Text = "target.UserID"
937userid.TextColor3 = Color3.new(1, 1, 1)
938userid.TextSize = 14
939
940operatingsystem.Name = "operatingsystem"
941operatingsystem.Parent = avatarframe
942operatingsystem.BackgroundColor3 = Color3.new(1, 1, 1)
943operatingsystem.BackgroundTransparency = 1
944operatingsystem.BorderSizePixel = 0
945operatingsystem.Position = UDim2.new(0.183333337, 0, 0.725173235, 0)
946operatingsystem.Size = UDim2.new(0, 190, 0, 19)
947operatingsystem.Font = Enum.Font.Gotham
948operatingsystem.Text = "target.OperatingSystem"
949operatingsystem.TextColor3 = Color3.new(1, 1, 1)
950operatingsystem.TextSize = 14
951
952vrheadset.Name = "vrheadset"
953vrheadset.Parent = avatarframe
954vrheadset.BackgroundColor3 = Color3.new(1, 1, 1)
955vrheadset.BackgroundTransparency = 1
956vrheadset.BorderSizePixel = 0
957vrheadset.Position = UDim2.new(0.183333337, 0, 0.769053161, 0)
958vrheadset.Size = UDim2.new(0, 190, 0, 19)
959vrheadset.Font = Enum.Font.Gotham
960vrheadset.Text = "target.VRHeadset"
961vrheadset.TextColor3 = Color3.new(1, 1, 1)
962vrheadset.TextSize = 14
963
964creditsavatar.Name = "creditsavatar"
965creditsavatar.Parent = avatarframe
966creditsavatar.BackgroundColor3 = Color3.new(1, 1, 1)
967creditsavatar.BackgroundTransparency = 1
968creditsavatar.BorderSizePixel = 0
969creditsavatar.Position = UDim2.new(0.183333337, 0, 0.889145553, 0)
970creditsavatar.Size = UDim2.new(0, 190, 0, 19)
971creditsavatar.Font = Enum.Font.GothamBlack
972creditsavatar.Text = "Made by pigeon#1818"
973creditsavatar.TextColor3 = Color3.new(1, 1, 1)
974creditsavatar.TextSize = 14
975
976TextLabel.Parent = Frame
977TextLabel.BackgroundColor3 = Color3.new(0.0941177, 0.0941177, 0.0941177)
978TextLabel.BackgroundTransparency = 1
979TextLabel.BorderSizePixel = 0
980TextLabel.Position = UDim2.new(-0.064000003, 0, -0.0490797535, 0)
981TextLabel.Size = UDim2.new(0, 125, 0, 22)
982TextLabel.Font = Enum.Font.GothamBold
983TextLabel.Text = "Phrases pigeon#1818"
984TextLabel.TextColor3 = Color3.new(0, 0, 0)
985TextLabel.TextScaled = true
986TextLabel.TextSize = 14
987TextLabel.TextWrapped = true
988
989TextButton.Parent = Frame
990TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
991TextButton.Position = UDim2.new(0.05049707, 0, 0.112004369, 0)
992TextButton.Size = UDim2.new(0, 99, 0, 16)
993TextButton.Style = Enum.ButtonStyle.RobloxRoundButton
994TextButton.Font = Enum.Font.SourceSans
995TextButton.Text = "I'm not dying! YOU ARE!"
996TextButton.TextColor3 = Color3.new(0, 0, 0)
997TextButton.TextScaled = true
998TextButton.TextSize = 14
999TextButton.TextWrapped = true
1000TextButton.MouseButton1Click:connect(function()
1001 game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(TextButton.Text, "All")
1002end)
1003
1004TextButton_2.Parent = Frame
1005TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
1006TextButton_2.Position = UDim2.new(0.05049707, 0, 0.246973693, 0)
1007TextButton_2.Size = UDim2.new(0, 99, 0, 16)
1008TextButton_2.Style = Enum.ButtonStyle.RobloxRoundButton
1009TextButton_2.Font = Enum.Font.SourceSans
1010TextButton_2.Text = "Die die die! I'll play GOD!"
1011TextButton_2.TextColor3 = Color3.new(0, 0, 0)
1012TextButton_2.TextScaled = true
1013TextButton_2.TextSize = 14
1014TextButton_2.TextWrapped = true
1015TextButton_2.MouseButton1Click:connect(function()
1016 game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(TextButton_2.Text, "All")
1017end)
1018
1019TextButton_3.Parent = Frame
1020TextButton_3.BackgroundColor3 = Color3.new(1, 1, 1)
1021TextButton_3.Position = UDim2.new(0.05049707, 0, 0.388077974, 0)
1022TextButton_3.Size = UDim2.new(0, 99, 0, 16)
1023TextButton_3.Style = Enum.ButtonStyle.RobloxRoundButton
1024TextButton_3.Font = Enum.Font.SourceSans
1025TextButton_3.Text = "You tried to test me? EAT MY DUST!"
1026TextButton_3.TextColor3 = Color3.new(0, 0, 0)
1027TextButton_3.TextScaled = true
1028TextButton_3.TextSize = 14
1029TextButton_3.TextWrapped = true
1030TextButton_3.MouseButton1Click:connect(function()
1031 game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(TextButton_3.Text, "All")
1032end)
1033
1034TextButton_4.Parent = Frame
1035TextButton_4.BackgroundColor3 = Color3.new(1, 1, 1)
1036TextButton_4.Position = UDim2.new(0.0424970686, 0, 0.535317242, 0)
1037TextButton_4.Size = UDim2.new(0, 99, 0, 16)
1038TextButton_4.Style = Enum.ButtonStyle.RobloxRoundButton
1039TextButton_4.Font = Enum.Font.SourceSans
1040TextButton_4.Text = "You messed up, kid."
1041TextButton_4.TextColor3 = Color3.new(0, 0, 0)
1042TextButton_4.TextScaled = true
1043TextButton_4.TextSize = 14
1044TextButton_4.TextWrapped = true
1045TextButton_4.MouseButton1Click:connect(function()
1046 game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(TextButton_4.Text, "All")
1047end)
1048
1049TextButton_5.Parent = Frame
1050TextButton_5.BackgroundColor3 = Color3.new(1, 1, 1)
1051TextButton_5.Position = UDim2.new(0.0424970686, 0, 0.688691497, 0)
1052TextButton_5.Size = UDim2.new(0, 99, 0, 16)
1053TextButton_5.Style = Enum.ButtonStyle.RobloxRoundButton
1054TextButton_5.Font = Enum.Font.SourceSans
1055TextButton_5.Text = "You sinned, pay with your blood!"
1056TextButton_5.TextColor3 = Color3.new(0, 0, 0)
1057TextButton_5.TextScaled = true
1058TextButton_5.TextSize = 14
1059TextButton_5.TextWrapped = true
1060TextButton_5.MouseButton1Click:connect(function()
1061 game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(TextButton_5.Text, "All")
1062end)
1063
1064TextButton_6.Parent = Frame
1065TextButton_6.BackgroundColor3 = Color3.new(1, 1, 1)
1066TextButton_6.Position = UDim2.new(0.0424970686, 0, 0.829795778, 0)
1067TextButton_6.Size = UDim2.new(0, 99, 0, 16)
1068TextButton_6.Style = Enum.ButtonStyle.RobloxRoundButton
1069TextButton_6.Font = Enum.Font.SourceSans
1070TextButton_6.Text = "E Girl down!"
1071TextButton_6.TextColor3 = Color3.new(0, 0, 0)
1072TextButton_6.TextScaled = true
1073TextButton_6.TextSize = 14
1074TextButton_6.TextWrapped = true
1075TextButton_6.MouseButton1Click:connect(function()
1076 game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(TextButton_6.Text, "All")
1077end)
1078
1079holder.Name = "holder"
1080holder.Parent = Unnamed
1081holder.BackgroundColor3 = Color3.new(1, 1, 1)
1082holder.BackgroundTransparency = 1
1083holder.Position = UDim2.new(0, 800, 0, 300)
1084holder.Size = UDim2.new(0, 525, 0, 277)
1085holder.Active = false
1086
1087entry.Name = "entry"
1088entry.Parent = holder
1089entry.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
1090entry.BorderSizePixel = 0
1091entry.Position = UDim2.new(-0.0152380951, 0, 0.965582669, 0)
1092entry.Size = UDim2.new(0, 525, 0, 38)
1093
1094user.Name = "user"
1095user.Parent = entry
1096user.BackgroundColor3 = Color3.new(1, 1, 1)
1097user.BackgroundTransparency = 1
1098user.Position = UDim2.new(-0.0152380941, 0, 0, 0)
1099user.Size = UDim2.new(0, 137, 0, 36)
1100user.Font = Enum.Font.Code
1101user.Text = prompt
1102user.TextColor3 = Color3.new(1, 0.333333, 0)
1103user.TextSize = 16
1104user.TextXAlignment = Enum.TextXAlignment.Right
1105
1106cmd.Name = "cmd"
1107cmd.Parent = cmdsu
1108cmd.BackgroundColor3 = Color3.new(1, 1, 1)
1109cmd.BackgroundTransparency = 1
1110cmd.BorderSizePixel = 0
1111cmd.Position = UDim2.new(-0, 0, 0, 0)
1112cmd.Size = UDim2.new(0, 341, 0, 35)
1113cmd.Font = Enum.Font.Code
1114cmd.PlaceholderText = "Enter CMD here"
1115cmd.Text = ""
1116cmd.TextWrapped = true
1117cmd.TextColor3 = Color3.fromRGB(255,255,255)
1118cmd.PlaceholderColor3 = Color3.fromRGB(255,255,255)
1119cmd.TextSize = 14
1120cmd.TextXAlignment = Enum.TextXAlignment.Left
1121cmd.ClearTextOnFocus = false
1122
1123cmdsu.Name = "cmdsu"
1124cmdsu.Parent = entry
1125cmdsu.BackgroundColor3 = Color3.new(1, 1, 1)
1126cmdsu.BackgroundTransparency = 1
1127cmdsu.BorderSizePixel = 0
1128cmdsu.Position = UDim2.new(0.274285644, 0, 0, 0)
1129cmdsu.Size = UDim2.new(0, 341, 0, 35)
1130cmdsu.Font = Enum.Font.Code
1131cmdsu.Text = ""
1132cmdsu.TextWrapped = true
1133cmdsu.TextColor3 = Color3.fromRGB(100,100,100)
1134cmdsu.TextSize = 14
1135cmdsu.TextXAlignment = Enum.TextXAlignment.Left
1136
1137output1.Name = "output1"
1138output1.Parent = output
1139output1.BackgroundColor3 = Color3.new(1, 1, 1)
1140output1.BackgroundTransparency = 1
1141output1.Position = UDim2.new(0.0157605428, 0, 0.849240005, 0)
1142output1.Size = UDim2.new(0, 500, 0, 27)
1143output1.Font = Enum.Font.Code
1144output1.Text = "To use chat commands use the prefix '"..prefix.."'"
1145output1.TextColor3 = Color3.new(0.698039, 0.698039, 0.698039)
1146output1.TextSize = 16
1147output1.TextXAlignment = Enum.TextXAlignment.Left
1148output1.TextWrapped = true
1149
1150output2.Name = "output2"
1151output2.Parent = output
1152output2.BackgroundColor3 = Color3.new(1, 1, 1)
1153output2.BackgroundTransparency = 1
1154output2.Position = UDim2.new(0.0157605428, 0, 0.74252063, 0)
1155output2.Size = UDim2.new(0, 500, 0, 27)
1156output2.Font = Enum.Font.Code
1157output2.Text = "Current version: "..ver
1158output2.TextColor3 = Color3.new(0.698039, 0.698039, 0.698039)
1159output2.TextSize = 16
1160output2.TextXAlignment = Enum.TextXAlignment.Left
1161output2.TextWrapped = true
1162
1163output3.Name = "output3"
1164output3.Parent = output
1165output3.BackgroundColor3 = Color3.new(1, 1, 1)
1166output3.BackgroundTransparency = 1
1167output3.Position = UDim2.new(0.0157605428, 0, 0.639753819, 0)
1168output3.Size = UDim2.new(0, 500, 0, 27)
1169output3.Font = Enum.Font.Code
1170output3.Text = "Made by pigeon#1818 and hz#4777"
1171output3.TextColor3 = Color3.new(0.698039, 0.698039, 0.698039)
1172output3.TextSize = 16
1173output3.TextXAlignment = Enum.TextXAlignment.Left
1174output3.TextWrapped = true
1175
1176output4.Name = "output4"
1177output4.Parent = output
1178output4.BackgroundColor3 = Color3.new(1, 1, 1)
1179output4.BackgroundTransparency = 1
1180output4.Position = UDim2.new(0.0157605428, 0, 0.533034444, 0)
1181output4.Size = UDim2.new(0, 500, 0, 27)
1182output4.Font = Enum.Font.Code
1183output4.TextColor3 = Color3.new(0.698039, 0.698039, 0.698039)
1184output4.TextSize = 16
1185output4.TextXAlignment = Enum.TextXAlignment.Left
1186output4.TextWrapped = true
1187
1188output5.Name = "output5"
1189output5.Parent = output
1190output5.BackgroundColor3 = Color3.new(1, 1, 1)
1191output5.BackgroundTransparency = 1
1192output5.Position = UDim2.new(0.0157605428, 0, 0.430267632, 0)
1193output5.Size = UDim2.new(0, 500, 0, 27)
1194output5.Font = Enum.Font.Code
1195output5.Text = ""
1196output5.TextColor3 = Color3.new(0.698039, 0.698039, 0.698039)
1197output5.TextSize = 16
1198output5.TextXAlignment = Enum.TextXAlignment.Left
1199output5.TextWrapped = true
1200
1201output6.Name = "output6"
1202output6.Parent = output
1203output6.BackgroundColor3 = Color3.new(1, 1, 1)
1204output6.BackgroundTransparency = 1
1205output6.Position = UDim2.new(0.0157605428, 0, 0.323548257, 0)
1206output6.Size = UDim2.new(0, 500, 0, 27)
1207output6.Font = Enum.Font.Code
1208output6.Text = ""
1209output6.TextColor3 = Color3.new(0.698039, 0.698039, 0.698039)
1210output6.TextSize = 16
1211output6.TextXAlignment = Enum.TextXAlignment.Left
1212output6.TextWrapped = true
1213
1214output7.Name = "output7"
1215output7.Parent = output
1216output7.BackgroundColor3 = Color3.new(1, 1, 1)
1217output7.BackgroundTransparency = 1
1218output7.Position = UDim2.new(0.0157605428, 0, 0.22078146, 0)
1219output7.Size = UDim2.new(0, 500, 0, 27)
1220output7.Font = Enum.Font.Code
1221output7.Text = ""
1222output7.TextColor3 = Color3.new(0.698039, 0.698039, 0.698039)
1223output7.TextSize = 16
1224output7.TextXAlignment = Enum.TextXAlignment.Left
1225output7.TextWrapped = true
1226
1227output8.Name = "output8"
1228output8.Parent = output
1229output8.BackgroundColor3 = Color3.new(1, 1, 1)
1230output8.BackgroundTransparency = 1
1231output8.Position = UDim2.new(0.0157605428, 0, 0.114062086, 0)
1232output8.Size = UDim2.new(0, 500, 0, 27)
1233output8.Font = Enum.Font.Code
1234output8.Text = ""
1235output8.TextColor3 = Color3.new(0.698039, 0.698039, 0.698039)
1236output8.TextSize = 16
1237output8.TextXAlignment = Enum.TextXAlignment.Left
1238output8.TextWrapped = true
1239
1240output9.Name = "output9"
1241output9.Parent = output
1242output9.BackgroundColor3 = Color3.new(1, 1, 1)
1243output9.BackgroundTransparency = 1
1244output9.Position = UDim2.new(0.0157605428, 0, 0.0112952888, 0)
1245output9.Size = UDim2.new(0, 500, 0, 27)
1246output9.Font = Enum.Font.Code
1247output9.Text = ""
1248output9.TextColor3 = Color3.new(0.698039, 0.698039, 0.698039)
1249output9.TextSize = 16
1250output9.TextXAlignment = Enum.TextXAlignment.Left
1251output9.TextWrapped = true
1252
1253name.Name = "name"
1254name.Parent = Unnamed
1255name.Active = true
1256name.Draggable = true
1257name.BackgroundColor3 = Color3.new(0.0823529, 0.0823529, 0.0823529)
1258name.BorderSizePixel = 0
1259name.Position = UDim2.new(0.683800638, 0, 0.119778864, 0)
1260name.Size = UDim2.new(0, 214, 0, 30)
1261name.Visible = false
1262
1263ehcmdshit.Name = "ehcmdshit"
1264ehcmdshit.Parent = name
1265ehcmdshit.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
1266ehcmdshit.BorderSizePixel = 0
1267ehcmdshit.Position = UDim2.new(0, 0, 1.00000024, 0)
1268ehcmdshit.Size = UDim2.new(0, 214, 0, 263)
1269
1270cmdslool.Name = "cmdslool"
1271cmdslool.Parent = ehcmdshit
1272cmdslool.BackgroundColor3 = Color3.new(1, 1, 1)
1273cmdslool.BackgroundTransparency = 1
1274cmdslool.Position = UDim2.new(0.0420560762, 0, 0.0418250933, 0)
1275cmdslool.Size = UDim2.new(0, 177, 0, 675)
1276cmdslool.Font = Enum.Font.Gotham
1277cmdslool.Text =
1278"-Jp or jumppower - changes\
1279jumppower\
1280-Ws or walkspeed - changes\
1281walkspeed\
1282-Infjump or ij or infinite jump -\
1283fly method that abuses sitting\
1284-loadcustoms - lists custom\
1285dev scripts\
1286-loadcustom (script) - loads\
1287custom dev script\
1288-djp or defaultjumppower\
1289-dws or defaultwalkspeed\
1290-goto or to - tps to player\
1291-btools - building tools\
1292-sit - s i t\
1293-ragdoll - ragdolls player\
1294-gearmesh - turns gear into mesh"
1295cmdslool.TextColor3 = Color3.new(1, 1, 1)
1296cmdslool.TextSize = 13
1297cmdslool.TextXAlignment = Enum.TextXAlignment.Left
1298cmdslool.TextYAlignment = Enum.TextYAlignment.Top
1299
1300shitlabeljpeg.Name = "shitlabeljpeg"
1301shitlabeljpeg.Parent = name
1302shitlabeljpeg.BackgroundColor3 = Color3.new(1, 1, 1)
1303shitlabeljpeg.BackgroundTransparency = 1
1304shitlabeljpeg.BorderSizePixel = 0
1305shitlabeljpeg.Size = UDim2.new(0, 214, 0, 29)
1306shitlabeljpeg.Font = Enum.Font.GothamSemibold
1307shitlabeljpeg.Text = "Commands"
1308shitlabeljpeg.TextColor3 = Color3.new(1, 1, 1)
1309shitlabeljpeg.TextSize = 14
1310
1311ScreenGuipoo.Parent = getParent
1312
1313TextButtonpoo.Parent = ScreenGuipoo
1314TextButtonpoo.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
1315TextButtonpoo.BorderSizePixel = 0
1316TextButtonpoo.Position = UDim2.new(0, 0, 0.455743879, 0)
1317TextButtonpoo.Size = UDim2.new(0, 186, 0, 35)
1318TextButtonpoo.Font = Enum.Font.SourceSans
1319TextButtonpoo.Text = "Btools (Off)"
1320TextButtonpoo.TextColor3 = Color3.new(0.27451, 0.27451, 0.27451)
1321TextButtonpoo.TextScaled = true
1322TextButtonpoo.TextSize = 14
1323TextButtonpoo.TextWrapped = true
1324TextButtonpoo.Visible = false
1325
1326
1327On.Parent = TextButtonpoo
1328On.Value = "Off"
1329
1330-- Scripts
1331
1332changeLog.I = "For more info please refer to the discord: discord.gg/TdYXqSw"
1333
1334TextButtonpoo.MouseButton1Up:Connect(function()
1335 if On.Value == "Off" then
1336 On.Value = "On"
1337 TextButtonpoo.Text = "Btools (On)"
1338 else
1339 On.Value = "Off"
1340 TextButtonpoo.Text = "Btools (Off)"
1341 end
1342end)
1343
1344mouse.Button1Up:Connect(function()
1345 if On.Value == "Off" then
1346 else
1347 if mouse.Target.Locked == true then
1348 mouse.Target:Destroy()
1349 else
1350 mouse.Target:Destroy()
1351 end
1352 end
1353end)
1354---------------------------------------
1355-- Fly: -------------------------------
1356function sFLY(vfly)
1357 FLYING = false
1358 speedofthefly = 1
1359 speedofthevfly = 1
1360 repeat wait() until cmdlp and cmdlp.Character and cmdlp.Character:FindFirstChild('HumanoidRootPart') and cmdlp.Character:FindFirstChild('Humanoid')
1361 repeat wait() until cmdm
1362 local T = cmdlp.Character.HumanoidRootPart
1363 local CONTROL = {F = 0, B = 0, L = 0, R = 0, Q = 0, E = 0}
1364 local lCONTROL = {F = 0, B = 0, L = 0, R = 0, Q = 0, E = 0}
1365 local SPEED = 0
1366 local function FLY()
1367 FLYING = true
1368 local BG = Instance.new('BodyGyro', T)
1369 local BV = Instance.new('BodyVelocity', T)
1370 BG.P = 9e4
1371 BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
1372 BG.cframe = T.CFrame
1373 BV.velocity = Vector3.new(0, 0, 0)
1374 BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
1375 spawn(function()
1376 repeat wait()
1377 if not vfly then
1378 cmdlp.Character:FindFirstChild("Humanoid").PlatformStand = true
1379 end
1380 if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 or CONTROL.Q + CONTROL.E ~= 0 then
1381 SPEED = 50
1382 elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 or CONTROL.Q + CONTROL.E ~= 0) and SPEED ~= 0 then
1383 SPEED = 0
1384 end
1385 if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 or (CONTROL.Q + CONTROL.E) ~= 0 then
1386 BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B + CONTROL.Q + CONTROL.E) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
1387 lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
1388 elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and (CONTROL.Q + CONTROL.E) == 0 and SPEED ~= 0 then
1389 BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B + CONTROL.Q + CONTROL.E) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
1390 else
1391 BV.velocity = Vector3.new(0, 0, 0)
1392 end
1393 BG.cframe = workspace.CurrentCamera.CoordinateFrame
1394 until not FLYING
1395 CONTROL = {F = 0, B = 0, L = 0, R = 0, Q = 0, E = 0}
1396 lCONTROL = {F = 0, B = 0, L = 0, R = 0, Q = 0, E = 0}
1397 SPEED = 0
1398 BG:destroy()
1399 BV:destroy()
1400 cmdlp.Character.Humanoid.PlatformStand = false
1401 end)
1402 end
1403 cmdm.KeyDown:connect(function(KEY)
1404 if KEY:lower() == 'w' then
1405 if vfly then
1406 CONTROL.F = speedofthevfly
1407 else
1408 CONTROL.F = speedofthefly
1409 end
1410 elseif KEY:lower() == 's' then
1411 if vfly then
1412 CONTROL.B = - speedofthevfly
1413 else
1414 CONTROL.B = - speedofthefly
1415 end
1416 elseif KEY:lower() == 'a' then
1417 if vfly then
1418 CONTROL.L = - speedofthevfly
1419 else
1420 CONTROL.L = - speedofthefly
1421 end
1422 elseif KEY:lower() == 'd' then
1423 if vfly then
1424 CONTROL.R = speedofthevfly
1425 else
1426 CONTROL.R = speedofthefly
1427 end
1428 elseif KEY:lower() == 'y' then
1429 if vfly then
1430 CONTROL.Q = speedofthevfly*2
1431 else
1432 CONTROL.Q = speedofthefly*2
1433 end
1434 elseif KEY:lower() == 't' then
1435 if vfly then
1436 CONTROL.E = -speedofthevfly*2
1437 else
1438 CONTROL.E = -speedofthefly*2
1439 end
1440 end
1441 end)
1442 cmdm.KeyUp:connect(function(KEY)
1443 if KEY:lower() == 'w' then
1444 CONTROL.F = 0
1445 elseif KEY:lower() == 's' then
1446 CONTROL.B = 0
1447 elseif KEY:lower() == 'a' then
1448 CONTROL.L = 0
1449 elseif KEY:lower() == 'd' then
1450 CONTROL.R = 0
1451 elseif KEY:lower() == 'y' then
1452 CONTROL.Q = 0
1453 elseif KEY:lower() == 't' then
1454 CONTROL.E = 0
1455 end
1456 end)
1457 FLY()
1458end
1459---------------------------------------
1460-- Aimbot Whitelist: ------------------
1461PlayersWLsystem = {}
1462
1463for i,p in pairs(cmdp:GetPlayers()) do
1464 PlayersWLsystem[p.Name] = false
1465end
1466
1467cmdp.PlayerAdded:Connect(function(plr)
1468 PlayersWLsystem[plr.Name] = false
1469 for n,p in pairs(Devs) do
1470 for i,d in pairs(PlayersWLsystem) do
1471 if p == d then
1472 p = true
1473 end
1474 end
1475 end
1476end)
1477
1478cmdp.PlayerRemoving:Connect(function(plr)
1479 for i,a in pairs(PlayersWLsystem) do
1480 if a == plr.Name then
1481 table.remove(PlayersWLsystem,i)
1482 end
1483 end
1484end)
1485cmdlp.Character:FindFirstChildWhichIsA("Humanoid").Died:Connect(function()
1486 if conFly == true then
1487 if FLYING == true then
1488 repeat wait() until cmdlp.Character ~= nil and cmdlp.Character:FindFirstChild('HumanoidRootPart') and cmdlp.Character:FindFirstChild('Humanoid')
1489 wait(2)
1490 FLYING = false
1491 cmdlp.Character.Humanoid.PlatformStand = false
1492 sFLY()
1493 speedofthefly = permflyspeed
1494 end
1495 end
1496 Enabledaimbot = false
1497 if Clip == false then
1498 Clip = true
1499 wait(1)
1500 Clip = false
1501 end
1502end)
1503cmdlp.CharacterAdded:Connect(function(char)
1504 wait(2)
1505 char:FindFirstChildWhichIsA("Humanoid").Died:Connect(function()
1506 if conFly == true then
1507 if FLYING == true then
1508 repeat wait() until cmdlp.Character ~= nil and cmdlp.Character:FindFirstChild('HumanoidRootPart') and cmdlp.Character:FindFirstChild('Humanoid')
1509 wait(.1)
1510 FLYING = false
1511 cmdlp.Character.Humanoid.PlatformStand = false
1512 sFLY()
1513 speedofthefly = permflyspeed
1514 end
1515 end
1516 Enabledaimbot = false
1517 if Clip == false then
1518 Clip = true
1519 wait(1)
1520 Clip = false
1521 end
1522 end)
1523end)
1524
1525function autofriendwl(dowhitelistfriends)
1526 local function iterPageItems(pages)
1527 return coroutine.wrap(function()
1528 local pagenum = 1
1529 while true do
1530 for _, user in ipairs(pages:GetCurrentPage()) do
1531 coroutine.yield(user, pagenum)
1532 end
1533 if pages.IsFinished then
1534 break
1535 end
1536 pages:AdvanceToNextPageAsync()
1537 pagenum = pagenum + 1
1538 end
1539 end)
1540 end
1541
1542 local FP = cmdp:GetFriendsAsync(cmdlp.UserId)
1543
1544 if dowhitelistfriends then
1545 for user, pageNo in iterPageItems(FP) do
1546 PlayersWLsystem[user.Username] = true
1547 for a,e in pairs(Devs) do
1548 for i,t in pairs(PlayersWLsystem) do
1549 if t == e then
1550 t = true
1551 end
1552 end
1553 end
1554 end
1555 elseif not dowhitelistfriends then
1556 for user, pageNo in iterPageItems(FP) do
1557 for a,e in pairs(Devs) do
1558 for i,t in pairs(PlayersWLsystem) do
1559 if t == e then
1560 t = true
1561 elseif t == user.Username then
1562 t = false
1563 end
1564 end
1565 end
1566 end
1567 end
1568end
1569
1570function Wl(playerrequested,does)
1571 if does then
1572 PlayersWLsystem[playerrequested.Name] = true
1573 elseif not does then
1574 PlayersWLsystem[playerrequested.Name] = false
1575 for n,p in pairs(Devs) do
1576 for i,d in pairs(PlayersWLsystem) do
1577 if p == d then
1578 p = true
1579 end
1580 end
1581 end
1582 end
1583end
1584---------------------------------------
1585-- Functions: -------------------------
1586function findplr(args)
1587 if args == "me" then
1588 return cmdlp
1589 elseif args == "random" then
1590 return cmdp:GetPlayers()[math.random(1,#cmdp:GetPlayers())]
1591 elseif args == "new" then
1592 local vAges = {}
1593 for _,v in pairs(cmdp:GetPlayers()) do
1594 if v.AccountAge < 30 then
1595 vAges[#vAges+1] = v
1596 end
1597 end
1598 return vAges[math.random(1,#vAges)]
1599 elseif args == "old" then
1600 local vAges = {}
1601 for _,v in pairs(cmdp:GetPlayers()) do
1602 if v.AccountAge > 30 then
1603 vAges[#vAges+1] = v
1604 end
1605 end
1606 return vAges[math.random(1,#vAges)]
1607 elseif args == "bacon" then
1608 local vAges = {}
1609 for _,v in pairs(cmdp:GetChildren()) do
1610 if v.Character:FindFirstChild("Pal Hair") or v.Character:FindFirstChild("Kate Hair") then
1611 vAges[#vAges+1] = v
1612 end
1613 end
1614 return vAges[math.random(1,#vAges)]
1615 elseif args == "friend" then
1616 local vAges = {}
1617 for _,v in pairs(cmdp:GetChildren()) do
1618 if v:IsFriendsWith(cmdlp.UserId) and v ~= cmdlp then
1619 vAges[#vAges+1] = v
1620 end
1621 end
1622 return vAges[math.random(1,#vAges)]
1623 elseif args == "notfriend" then
1624 local vAges = {}
1625 for _,v in pairs(cmdp:GetChildren()) do
1626 if not v:IsFriendsWith(cmdlp.UserId) and v ~= cmdlp then
1627 vAges[#vAges+1] = v
1628 end
1629 end
1630 return vAges[math.random(1,#vAges)]
1631 elseif args == "ally" then
1632 local vAges = {}
1633 for _,v in pairs(cmdp:GetChildren()) do
1634 if v.Team == cmdlp.Team then
1635 vAges[#vAges+1] = v
1636 end
1637 end
1638 return vAges[math.random(1,#vAges)]
1639 elseif args == "enemy" then
1640 local vAges = {}
1641 for _,v in pairs(cmdp:GetChildren()) do
1642 if v.Team ~= cmdlp.Team then
1643 vAges[#vAges+1] = v
1644 end
1645 end
1646 return vAges[math.random(1,#vAges)]
1647 elseif args == "near" then
1648 local vAges = {}
1649 for _,v in pairs(cmdp:GetChildren()) do
1650 if v ~= cmdlp then
1651 local math = (v.Character:FindFirstChild("HumanoidRootPart").Position - cmdlp.Character.HumanoidRootPart.Position).magnitude
1652 if math < 30 then
1653 vAges[#vAges+1] = v
1654 end
1655 end
1656 end
1657 return vAges[math.random(1,#vAges)]
1658 elseif args == "far" then
1659 local vAges = {}
1660 for _,v in pairs(cmdp:GetChildren()) do
1661 if v ~= cmdlp then
1662 local math = (v.Character:FindFirstChild("HumanoidRootPart").Position - cmdlp.Character.HumanoidRootPart.Position).magnitude
1663 if math > 30 then
1664 vAges[#vAges+1] = v
1665 end
1666 end
1667 end
1668 return vAges[math.random(1,#vAges)]
1669 else
1670 local potentialplayer = ""
1671 local target = ""
1672 local z = ""
1673 local potentialtarget = ""
1674 for i,v in pairs(cmdp:GetPlayers()) do
1675 potentialplayer = string.lower(v.Name)
1676 potentialtarget = string.lower(args)
1677 local z = string.find(potentialplayer,potentialtarget)
1678 if z ~= nil then
1679 return v
1680 end
1681 end
1682 end
1683end
1684
1685function cmdnum(str)
1686 return tonumber(str) ~= nil
1687end
1688function cmd15(plr)
1689 if plr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
1690 return true
1691 end
1692end
1693osconfigtext.MouseButton1Down:connect(function()
1694 text1 = true
1695 text2 = false
1696 updatesaves()
1697end)
1698osconfigtext2.MouseButton1Down:connect(function()
1699 text2 = true
1700 text1 = false
1701 updatesaves()
1702end)
1703function cmd6(plr)
1704 if plr.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
1705 return true
1706 end
1707end
1708function x(v)
1709 if v then
1710 for _,i in pairs(cmdws:GetDescendants()) do
1711 if i:IsA("BasePart") and not i.Parent:FindFirstChild("Humanoid") and not i.Parent.Parent:FindFirstChild("Humanoid") then
1712 i.LocalTransparencyModifier = 0.5
1713 end
1714 end
1715 else
1716 for _,i in pairs(cmdws:GetDescendants()) do
1717 if i:IsA("BasePart") and not i.Parent:FindFirstChild("Humanoid") and not i.Parent.Parent:FindFirstChild("Humanoid") then
1718 i.LocalTransparencyModifier = 0
1719 end
1720 end
1721 end
1722end
1723cmdlp.CharacterAdded:connect(function()
1724 if spawning and sppos ~= nil then
1725 repeat wait() until cmdlp.Character ~= nil and cmdlp.Character:FindFirstChild('HumanoidRootPart')
1726 cmdlp.Character.HumanoidRootPart.CFrame = sppos
1727 end
1728end)
1729function CreateLabel(Name, Text)
1730 local plr = cmdp:GetChildren()
1731 local sf = ScrollingFrame
1732 if #sf:GetChildren() >= 2546 then
1733 sf:ClearAllChildren()
1734 end
1735 local alls = 0
1736 for i,v in pairs(sf:GetChildren()) do
1737 if v then
1738 alls = v.Size.Y.Offset + alls
1739 end
1740 if not v then
1741 alls = 0
1742 end
1743 end
1744 local tl = Instance.new('TextLabel', sf)
1745 local il = Instance.new('Frame', tl)
1746 tl.Name = Name
1747 tl.ZIndex = 6
1748 tl.Text = "["..Name.."] "..Text
1749 tl.Size = UDim2.new(0,322,0,60)
1750 tl.BackgroundTransparency = 1
1751 tl.BorderSizePixel = 0
1752 tl.Font = "SourceSansBold"
1753 tl.Position = UDim2.new(-1,0,0,alls)
1754 tl.TextTransparency = 1
1755 tl.TextScaled = false
1756 tl.TextSize = 14
1757 tl.TextWrapped = true
1758 tl.TextXAlignment = "Left"
1759 tl.TextYAlignment = "Top"
1760 il.BackgroundTransparency = 1
1761 il.BorderSizePixel = 0
1762 il.Size = UDim2.new(0,12,1,0)
1763 il.Position = UDim2.new(0,316,0,0)
1764 tl.TextColor3 = Color3.fromRGB(255,255,255)
1765 tl.Size = UDim2.new(0,322,0,tl.TextBounds.Y)
1766 sf.CanvasSize = UDim2.new(0,0,0,alls+tl.TextBounds.Y)
1767 sf.CanvasPosition = Vector2.new(0,sf.CanvasPosition.Y+tl.TextBounds.Y)
1768 local size2 = sf.CanvasSize.Y.Offset
1769 tl:TweenPosition(UDim2.new(0,3,0,alls), 'In', 'Quint', 0.5)
1770 for i = 0,50 do wait(0.05)
1771 tl.TextTransparency = tl.TextTransparency - 0.05
1772 end
1773 tl.TextTransparency = 0
1774end
1775function CreateADLabel(name,rank)
1776 local sf3 = Scrollingad
1777 if #sf3:GetChildren() >= 2546 then
1778 sf3:ClearAllChildren()
1779 end
1780 local alls3 = 0
1781 for i,v in pairs(sf3:GetChildren()) do
1782 if v then
1783 alls3 = v.Size.Y.Offset + alls3
1784 end
1785 if not v then
1786 alls3 = 0
1787 end
1788 end
1789 local tl3 = Instance.new('TextLabel', sf3)
1790 local il3 = Instance.new('Frame', tl3)
1791 tl3.Name = name
1792 tl3.ZIndex = 6
1793 tl3.Text = name.." "..rank
1794 tl3.Size = UDim2.new(0,322,0,50)
1795 tl3.BackgroundTransparency = 1
1796 tl3.BorderSizePixel = 0
1797 tl3.Font = "SourceSansBold"
1798 tl3.Position = UDim2.new(-1,0,0,alls3)
1799 tl3.TextTransparency = 1
1800 tl3.TextScaled = false
1801 tl3.TextSize = 14
1802 tl3.TextWrapped = true
1803 tl3.TextXAlignment = "Left"
1804 tl3.TextYAlignment = "Top"
1805 il3.BackgroundTransparency = 1
1806 il3.BorderSizePixel = 0
1807 il3.Size = UDim2.new(0,12,1,0)
1808 il3.Position = UDim2.new(0,316,0,0)
1809 tl3.TextColor3 = Color3.fromRGB(255,255,255)
1810 tl3.Size = UDim2.new(0,322,0,tl3.TextBounds.Y)
1811 sf3.CanvasSize = UDim2.new(0,0,0,alls3+tl3.TextBounds.Y)
1812 sf3.CanvasPosition = Vector2.new(0,sf3.CanvasPosition.Y+tl3.TextBounds.Y)
1813 local size33 = sf3.CanvasSize.Y.Offset
1814 tl3:TweenPosition(UDim2.new(0,3,0,alls3), 'In', 'Quint', 0.5)
1815 tl3.TextTransparency = 0
1816end
1817--local OP = {}
1818--OP[#OP+1] = {N = "1", W = "2 arguments are needed for t"}
1819--wait()
1820function getWarn(S,A,P)
1821 if S == "AC" then
1822 return "You need "..A.." arguments for this command!"
1823 elseif S == "NIL" then
1824 return "There is no "..P.." named that!"
1825 end
1826end
1827local CMDN = {}
1828local CS = {}
1829local matches = {}
1830CMDN[#CMDN+1] = {N = "prefix", A = {""}, CMD = "1,prefix,,Shows you the chat prefix."}
1831CMDN[#CMDN+1] = {N = "promptnew", A = {""}, CMD = "2,promptnew,(str/name),Changes your prompt text to something else."}
1832CMDN[#CMDN+1] = {N = "prefixnew", A = {""}, CMD = "3,prefixnew,(str),Changes chat prefix."}
1833CMDN[#CMDN+1] = {N = "hotkeyopen", A = {""}, CMD = "4,hotkeyopen,(str),Changes your hotkey for opening the GUI."}
1834CMDN[#CMDN+1] = {N = "hotkeyoutput", A = {""}, CMD = "5,hotkeyoutput,(str),Changes your hotkey for opening the output GUI."}
1835CMDN[#CMDN+1] = {N = "hotkeyfocus", A = {""}, CMD = "6,hotkeyfocus,(str),Changes your hotkey for focusing on the cmdbar."}
1836CMDN[#CMDN+1] = {N = "spawncmdnew", A = {""}, CMD = "7,spawncmdnew,(str),Adds a new command to the list of commands that are activated when you first execute CMD-X."}
1837CMDN[#CMDN+1] = {N = "spawncmds", A = {""}, CMD = "8,spawncmds,,Lists spawncmds."}
1838CMDN[#CMDN+1] = {N = "spawncmddel", A = {""}, CMD = "9,spawncmddel,(str),Deletes a command in the spawncmds list."}
1839CMDN[#CMDN+1] = {N = "spawncmdsclr", A = {""}, CMD = "10,spawncmdsclr,,Clears the spawncmds."}
1840CMDN[#CMDN+1] = {N = "eightballpu", A = {"8ballpu"}, CMD = "11,eightballpu/8ballpu,(str),Ask 8Ball a question publicly."}
1841CMDN[#CMDN+1] = {N = "eightballpr", A = {"8ballpr"}, CMD = "12,eightballpr/8ballpr,(str),Ask 8Ball a question privately."}
1842CMDN[#CMDN+1] = {N = "pi", A = {""}, CMD = "13,pi,,Shows the number of pi."}
1843CMDN[#CMDN+1] = {N = "support", A = {"help"}, CMD = "14,support/help,(CB/COPY),If you need support while using CMD-X use this command!"}
1844CMDN[#CMDN+1] = {N = "commands", A = {"cmds"}, CMD = "15,cmds/commands,,Shows this page."}
1845CMDN[#CMDN+1] = {N = "config", A = {"settings"}, CMD = "16,config/settings,,Configure CMD-X."}
1846CMDN[#CMDN+1] = {N = "advertise", A = {"adv"}, CMD = "17,adv/advertise,,Help spread CMD-X by doing this cmd in game! (<3)"}
1847CMDN[#CMDN+1] = {N = "unadvertise", A = {"unadv"}, CMD = "18,unadv/unadvertise,,()"}
1848CMDN[#CMDN+1] = {N = "version", A = {"ver","v"}, CMD = "19,version/ver/v,,Shows version."}
1849CMDN[#CMDN+1] = {N = "nextupdate", A = {""}, CMD = "20,nextupdate,,Shows you when the next update may be coming out."}
1850CMDN[#CMDN+1] = {N = "walkspeed", A = {"ws"}, CMD = "21,ws/walkspeed,(num),Sets your characters walkspeed."}
1851CMDN[#CMDN+1] = {N = "defaultwalkspeed", A = {"dws"}, CMD = "22,dws/defaultwalkspeed,,()"}
1852CMDN[#CMDN+1] = {N = "jumppower", A = {"jp"}, CMD = "23,jp/jumppower,(num),Sets your characters jumppower."}
1853CMDN[#CMDN+1] = {N = "defaultjumppower", A = {"djp"}, CMD = "24,djp/deafultjumppower,,()"}
1854CMDN[#CMDN+1] = {N = "hipheight", A = {"hh"}, CMD = "25,hh/hipheight,(num),Sets your characters hipheight."}
1855CMDN[#CMDN+1] = {N = "defaulthipheight", A = {"dhh"}, CMD = "26,dhh/defaulthipheight,,()"}
1856CMDN[#CMDN+1] = {N = "gravity", A = {"grav"}, CMD = "27,gravity/grav,(num),Sets your characters gravity."}
1857CMDN[#CMDN+1] = {N = "defaultgravity", A = {"dgrav"}, CMD = "28,dgrav/defaultgravity,,()"}
1858CMDN[#CMDN+1] = {N = "bodypositionwalkspeed", A = {"bpws"}, CMD = "29,bpws/bodypositionwalkspeed,(num),Modifies your characters bodyposition walkspeed. (R6 ONLY) (AC BYPASS)"}
1859CMDN[#CMDN+1] = {N = "halve", A = {"decapitate"}, CMD = "30,halve/decapitate,,Splits your character into two. (R15 ONLY)"}
1860CMDN[#CMDN+1] = {N = "removehands", A = {"rhands"}, CMD = "31,rhands/removehands,,Removes your characters hands. (R15 ONLY)"}
1861CMDN[#CMDN+1] = {N = "removefeet", A = {"rfeet"}, CMD = "32,rfeet/removefeet,,Removes your characters feet. (R15 ONLY)"}
1862CMDN[#CMDN+1] = {N = "removeleftleg", A = {"rlleg"}, CMD = "33,rlleg/removeleftleg,,Removes your left leg."}
1863CMDN[#CMDN+1] = {N = "removerightleg", A = {"rrleg"}, CMD = "34,rrleg/removerightleg,,Removes your right leg."}
1864CMDN[#CMDN+1] = {N = "removeleftarm", A = {"rlarm"}, CMD = "35,rlarm/removeleftarm,,Removes your left arm."}
1865CMDN[#CMDN+1] = {N = "removerightarm", A = {"rrarm"}, CMD = "36,rrarm/removerightarm,,Removes your right arm."}
1866CMDN[#CMDN+1] = {N = "removearms", A = {"rarms"}, CMD = "37,rarms/removearms,,Removes your characters arms."}
1867CMDN[#CMDN+1] = {N = "removelegs", A = {"rlegs"}, CMD = "38,rlegs/removelegs,,Removes your characters legs."}
1868CMDN[#CMDN+1] = {N = "removelimbs", A = {"rlimbs"}, CMD = "39,rlimbs/removelimbs,,Removes your characters limbs."}
1869CMDN[#CMDN+1] = {N = "removeanim", A = {"ranim"}, CMD = "40,ranim/removeanim,,Removes your characters animations."}
1870CMDN[#CMDN+1] = {N = "restoreanim", A = {"reanim"}, CMD = "41,reanim/restoreanim,,Restores your characters animations."}
1871CMDN[#CMDN+1] = {N = "removeshirt", A = {"rshirt"}, CMD = "42,rshirt/removeshirt,,Removes your characters shirt."}
1872CMDN[#CMDN+1] = {N = "removetshirt", A = {"rtshirt"}, CMD = "43,rtshirt/removetshirt,,Removes your characters tshirt"}
1873CMDN[#CMDN+1] = {N = "removepants", A = {"rpants"}, CMD = "44,rpants/removepants,,Removes your characters pants."}
1874CMDN[#CMDN+1] = {N = "removeclothes", A = {"naked","rclothes"}, CMD = "45,naked/rclothes/removeclothes,,Removes your character clothes."}
1875CMDN[#CMDN+1] = {N = "removehatsmesh", A = {"rhatsmesh","rhm"}, CMD = "46,rhatsmesh/rhm/removehatsmesh,,Removes your characters hat meshes."}
1876CMDN[#CMDN+1] = {N = "removegearmesh", A = {"rgearmesh","rgm","rtoolmesh","rtm","removetoolmesh"}, CMD = "47,rgearmesh/rgm/rtoolmesh/rtm/removetoolmesh/removegearmesh,,Removes your current characters gear mesh."}
1877CMDN[#CMDN+1] = {N = "hatgear", A = {"hattool"}, CMD = "48,hatgear/hattool,,Turns your characters hats into gears."}
1878CMDN[#CMDN+1] = {N = "drophats", A = {""}, CMD = "49,drophats,,Drops your characters hats on the map."}
1879CMDN[#CMDN+1] = {N = "dropgears", A = {"droptools"}, CMD = "50,dropgears/droptools,,Drops your characters gears on the map."}
1880CMDN[#CMDN+1] = {N = "hatspam", A = {""}, CMD = "51,hatspam,,Spams your hats onto the map."}
1881CMDN[#CMDN+1] = {N = "unhatspam", A = {""}, CMD = "52,unhatspam,,()"}
1882CMDN[#CMDN+1] = {N = "removeface", A = {"rface"}, CMD = "53,rface/removeface,,Removes your characters face."}
1883CMDN[#CMDN+1] = {N = "removehats", A = {"rhats"}, CMD = "54,rhats/removehats,,Removes your characters hats."}
1884CMDN[#CMDN+1] = {N = "rheadmesh", A = {"rhdm"}, CMD = "55,rheadmesh/rhdm,,Removes the mesh of your characters head."}
1885CMDN[#CMDN+1] = {N = "equip", A = {"equipall"}, CMD = "56,equip/equipall,,Equips all gears in your characters backpack."}
1886CMDN[#CMDN+1] = {N = "banlands", A = {""}, CMD = "57,banlands,(plr),Teleports player to banlands (NEED A HAT AND TOOL)."}
1887CMDN[#CMDN+1] = {N = "flip", A = {""}, CMD = "58,flip,,Allows your character to flip."}
1888CMDN[#CMDN+1] = {N = "unflip", A = {""}, CMD = "59,unflip,,()"}
1889CMDN[#CMDN+1] = {N = "doubleflip", A = {"duoflip"}, CMD = "60,duoflip/doubleflip,,Allows your character to double flip."}
1890CMDN[#CMDN+1] = {N = "undoubleflip", A = {"unduoflip"}, CMD = "61,unduoflip/undoubleflip,,()"}
1891CMDN[#CMDN+1] = {N = "glue", A = {"stick"}, CMD = "62,glue/stick,(plr),Sticks your character to the target."}
1892CMDN[#CMDN+1] = {N = "unglue", A = {"unstick"}, CMD = "63,unglue/unstick,,()"}
1893CMDN[#CMDN+1] = {N = "nugget", A = {""}, CMD = "64,nugget,,Makes your character look like a nugget."}
1894CMDN[#CMDN+1] = {N = "cartwheel", A = {""}, CMD = "65,cartwheel,,Makes your character do a cartwheel."}
1895CMDN[#CMDN+1] = {N = "uncartwheel", A = {""}, CMD = "66,uncartwheel,,()"}
1896CMDN[#CMDN+1] = {N = "seizure", A = {"juicewrld"}, CMD = "67,seizure/juicewrld,,Makes your character have a seizure."}
1897CMDN[#CMDN+1] = {N = "unseizure", A = {"unjuicewrld"}, CMD = "68,unseizure/unjuicewrld,,()"}
1898CMDN[#CMDN+1] = {N = "fling", A = {""}, CMD = "69,fling,(plr),Flings player. (COLLISION ONLY)"}
1899CMDN[#CMDN+1] = {N = "invisiblefling", A = {"invisfling","ifling"}, CMD = "70,invisiblefling/invisfling/ifling,,Invisibly flings players. (COLLISION ONLY)"}
1900CMDN[#CMDN+1] = {N = "freefling", A = {"ffling"}, CMD = "71,freefling/ffling,,Flings players. (COLLISION ONLY)"}
1901CMDN[#CMDN+1] = {N = "unfling", A = {""}, CMD = "72,unfling,,()"}
1902CMDN[#CMDN+1] = {N = "cleanfling", A = {"cfling"}, CMD = "73,cleanfling/cfling,,Flings players in an undetected way. (COLLISION ONLY)"}
1903CMDN[#CMDN+1] = {N = "lag", A = {"stutter"}, CMD = "74,lag/stutter,,Appears like your character is stuttering or lagging."}
1904CMDN[#CMDN+1] = {N = "unlag", A = {"unstutter"}, CMD = "75,unlag/unstutter,,()"}
1905CMDN[#CMDN+1] = {N = "annoy", A = {""}, CMD = "76,annoy,(plr),Annoys the player."}
1906CMDN[#CMDN+1] = {N = "unannoy", A = {""}, CMD = "77,unannoy,,()"}
1907CMDN[#CMDN+1] = {N = "weaken", A = {"weak"}, CMD = "78,weak/weaken,,Weakens your character."}
1908CMDN[#CMDN+1] = {N = "strengthen", A = {"strong"}, CMD = "79,strong/strengthen,,Strengthens your character."}
1909CMDN[#CMDN+1] = {N = "noresult", A = {" "," ",""}, CMD = "80,,,Saved CMD NUM"}
1910CMDN[#CMDN+1] = {N = "unweak", A = {"unstrong"}, CMD = "81,unweak/unstrong,,()"}
1911CMDN[#CMDN+1] = {N = "sparkles", A = {""}, CMD = "82,sparkles,,Emits sparkles from your character. (Spring Fairy HAT NEEDED)"}
1912CMDN[#CMDN+1] = {N = "sword", A = {""}, CMD = "83,sword,,Holds your characters sword. (UGC Demonic Greatsword HAT NEEDED)"}
1913CMDN[#CMDN+1] = {N = "scythe", A = {""}, CMD = "84,scythe,,Holds your character scythe. (UGC Scythe HAT NEEDED)"}
1914CMDN[#CMDN+1] = {N = "leash", A = {""}, CMD = "85,leash,(plr),Leashes player. (HATS NEEDED: https://www.roblox.com/catalog/170892848/Grey-Cat-Tail + https://www.roblox.com/catalog/4489579014/Spike-Necklace)"}
1915CMDN[#CMDN+1] = {N = "penis", A = {""}, CMD = "86,penis,,Gives your character a penis. (HATS NEEDED: https://www.roblox.com/catalog/4566855273/Deal-With-It-5 + https://www.roblox.com/catalog/4524777577/Deal-With-It-4 + https://www.roblox.com/catalog/4391173687/Pet-Stack)"}
1916CMDN[#CMDN+1] = {N = "animation", A = {"anim"}, CMD = "87,anim/animation,(num1) (num2),Plays the AnimationID you state in num1 and speeds it up in num2. (R6 ONLY)"}
1917CMDN[#CMDN+1] = {N = "unanimation", A = {"unanim"}, CMD = "88,unanim/unanimation,,Stops all animations."}
1918CMDN[#CMDN+1] = {N = "uninsane", A = {"unspas"}, CMD = "89,uninsane/unspas,,()"}
1919CMDN[#CMDN+1] = {N = "monstermash", A = {"mashdance"}, CMD = "90,monstermash/mashdance,,Monster mashes your character. (R6 ONLY)"}
1920CMDN[#CMDN+1] = {N = "ragdoll", A = {"stun"}, CMD = "91,ragdoll/stun,,Stuns your character."}
1921CMDN[#CMDN+1] = {N = "unragdoll", A = {"unstun"}, CMD = "92,unragdoll/unstun,,()"}
1922CMDN[#CMDN+1] = {N = "animpack", A = {""}, CMD = "93,animpack,(animation),Loads the animation you state; toy/ pirate/ knight/ astronaut/ vampire/ robot/ levitation/ bubbly/ werewolf/ stylish/ mage/ cartoony/ zombie/ superhero/ ninja/ elder/ old. (R15 ONLY)"}
1923CMDN[#CMDN+1] = {N = "spin", A = {"beybladeletitrip"}, CMD = "94,spin/baybladeletitrip,(num),Spins your character around like a beyblade."}
1924CMDN[#CMDN+1] = {N = "unspin", A = {""}, CMD = "95,unspin,,()"}
1925CMDN[#CMDN+1] = {N = "hatspin", A = {""}, CMD = "96,hatspin,,Spins your characters hats around your head."}
1926CMDN[#CMDN+1] = {N = "unhatspin", A = {""}, CMD = "97,unhatspin,,()"}
1927CMDN[#CMDN+1] = {N = "facefuck", A = {"facerape"}, CMD = "98,facefuck/facerape,(plr),Sits your character in front of their face to create the illusion of facefucking."}
1928CMDN[#CMDN+1] = {N = "unfacefuck", A = {"unfacerape"}, CMD = "99,unfacefuck/unfacerape,,()"}
1929CMDN[#CMDN+1] = {N = "facefuckanim", A = {"facerapeanim"}, CMD = "100,facefuckanim/facerapeanim,(plr),Places your character in front of their face with an animation to create the illusion of facefucking."}
1930CMDN[#CMDN+1] = {N = "unfacefuckanim", A = {"unfacerapeanim"}, CMD = "101,unfacefuckanim/unfacerapeanim,,()"}
1931CMDN[#CMDN+1] = {N = "piggyback", A = {"ride"}, CMD = "102,piggyback/ride,(plr),Sits your character behind their head to create the illusion of a piggy back."}
1932CMDN[#CMDN+1] = {N = "unpiggyback", A = {"unride"}, CMD = "103,unpiggyback/unride,,()"}
1933CMDN[#CMDN+1] = {N = "fuck", A = {"rape"}, CMD = "104,fuck/rape,(plr),Rapes player you stated using an animation."}
1934CMDN[#CMDN+1] = {N = "unfuck", A = {"unrape"}, CMD = "105,unfuck/unrape,,()"}
1935CMDN[#CMDN+1] = {N = "follow", A = {"stalk"}, CMD = "106,follow/stalk,(plr),Follows player you stated at a safe distance."}
1936CMDN[#CMDN+1] = {N = "unfollow", A = {"unstalk"}, CMD = "107,unfollow/unstalk,,()"}
1937CMDN[#CMDN+1] = {N = "oldroblox", A = {"oldrblx"}, CMD = "108,oldrblx/oldroblox,,Makes your game look like old roblox."}
1938CMDN[#CMDN+1] = {N = "savegame", A = {"sg"}, CMD = "109,savegame/sg,,Saves the current game instance to your workspace folder. (SYNAPSE ONLY)"}
1939CMDN[#CMDN+1] = {N = "btools", A = {"bt"}, CMD = "110,btools/bt,,Gives you building tools. (CLIENT SIDED)"}
1940CMDN[#CMDN+1] = {N = "fex", A = {"f3x"}, CMD = "111,f3x/fex,,Gives you advanced building tools. (CLIENT SIDED) (GUI)"}
1941CMDN[#CMDN+1] = {N = "remotespy", A = {"r2s"}, CMD = "112,r2s/remotespy,,Spies remotes. (GUI)"}
1942CMDN[#CMDN+1] = {N = "badger", A = {""}, CMD = "113,badger,,Opens badger V2. (GUI) (<3)"}
1943CMDN[#CMDN+1] = {N = "explorer", A = {"dex"}, CMD = "114,explorer/dex,,Spies workspace. (GUI)"}
1944CMDN[#CMDN+1] = {N = "removeeffects", A = {"reffects"}, CMD = "115,reffects/removeeffects,,Removes all effects in the game. (CLIENT SIDED)"}
1945CMDN[#CMDN+1] = {N = "removeseats", A = {"rseats"}, CMD = "116,rseats/removeseats,,Removes all seats in game. (CLIENT SIDED)"}
1946CMDN[#CMDN+1] = {N = "removelocalscripts", A = {"rls"}, CMD = "117,removelocalscripts/rls,,Removes all local scripts, useful for bypassing anti exploits. (CLIENT SIDED)"}
1947CMDN[#CMDN+1] = {N = "xray", A = {"x"}, CMD = "118,xray/x,,Changes all items to 0.5 Transparency."}
1948CMDN[#CMDN+1] = {N = "unxray", A = {"unx"}, CMD = "119,unxray/unx,,()"}
1949CMDN[#CMDN+1] = {N = "lockws", A = {"lws"}, CMD = "120,lockws/lws,,Locks all of workspace."}
1950CMDN[#CMDN+1] = {N = "unlockws", A = {"uws"}, CMD = "121,unlockws/uws,,Unlocks all of workspace."}
1951CMDN[#CMDN+1] = {N = "day", A = {"time14"}, CMD = "122,day/time14,,Turns the skybox time to day (18:00). (CLIENT SIDED)"}
1952CMDN[#CMDN+1] = {N = "night", A = {"time0"}, CMD = "123,night/time0,,Turns the skybox time to night (00:00). (CLIENT SIDED)"}
1953CMDN[#CMDN+1] = {N = "removesky", A = {"rsky"}, CMD = "124,rsky/removesky,,Removes the games skybox. (CLIENT SIDED)"}
1954CMDN[#CMDN+1] = {N = "restorelighting", A = {"relighting"}, CMD = "125,relighting/restorelighting,,Restores games lighting. (CLIENT SIDED)"}
1955CMDN[#CMDN+1] = {N = "restorecamera", A = {"recamera"}, CMD = "126,recamera/restorecamera,,Restores your characters camera."}
1956CMDN[#CMDN+1] = {N = "unscramble", A = {""}, CMD = "127,unscramble,,Unscrambles games variable names."}
1957CMDN[#CMDN+1] = {N = "removeinviswalls", A = {"riw"}, CMD = "128,riw/removeinviswalls,,Removes invisible walls in game. (CLIENT SIDED)"}
1958CMDN[#CMDN+1] = {N = "gameinfo", A = {"placeinfo"}, CMD = "129,gameinfo/placeinfo,,Provides various information on the game you are playing in."}
1959CMDN[#CMDN+1] = {N = "closegameinfo", A = {""}, CMD = "130,closegameinfo,,()"}
1960CMDN[#CMDN+1] = {N = "math", A = {"calc","calculate"}, CMD = "131,math/calc/calculate,(num) (+,-,/,*) (num) (CB/COPY),Multiplicates numbers together."}
1961CMDN[#CMDN+1] = {N = "hidechat", A = {""}, CMD = "132,hidechat,,Turns off chat."}
1962CMDN[#CMDN+1] = {N = "showchat", A = {""}, CMD = "133,showchat,,Turns on chat."}
1963CMDN[#CMDN+1] = {N = "switchteam", A = {""}, CMD = "134,switchteam,(str),Switches your team to str if it exists."}
1964CMDN[#CMDN+1] = {N = "ping", A = {""}, CMD = "135,ping,,Shows your ping."}
1965CMDN[#CMDN+1] = {N = "fps", A = {""}, CMD = "136,fps,,Shows your FPS."}
1966CMDN[#CMDN+1] = {N = "unfps", A = {""}, CMD = "137,unfps,,()"}
1967CMDN[#CMDN+1] = {N = "fuckoff", A = {"killgui"}, CMD = "138,killgui/fuckoff,,Closes the GUI."}
1968CMDN[#CMDN+1] = {N = "messagebox", A = {"message","msg"}, CMD = "139,message/messagebox/msg,(str),Makes a message box appear containing the string you entered. (SYNAPSE ONLY)"}
1969CMDN[#CMDN+1] = {N = "fe", A = {"filter"}, CMD = "140,fe/filter,,Checks if a game is filtered or not."}
1970CMDN[#CMDN+1] = {N = "gameid", A = {"placeid"}, CMD = "141,gameid/placeid,,Lets you know the GameID of the game you are in."}
1971CMDN[#CMDN+1] = {N = "error", A = {""}, CMD = "142,error,(str),Tests error in F9."}
1972CMDN[#CMDN+1] = {N = "print", A = {""}, CMD = "143,print,(str),Tests print in F9."}
1973CMDN[#CMDN+1] = {N = "warn", A = {""}, CMD = "144,warn,(str),Tests warn in F9."}
1974CMDN[#CMDN+1] = {N = "output", A = {""}, CMD = "145,output,(str),Tests output."}
1975CMDN[#CMDN+1] = {N = "forceshiftlock", A = {"sl","shiftlock"}, CMD = "146,sl/shiftlock/forceshiftlock,,If the developer of the game your playing on has disabled Shift Lock this will enable it for your character."}
1976CMDN[#CMDN+1] = {N = "maxcamunlock", A = {"camunlock"}, CMD = "147,maxcamunlock/camunlock,,Unlocks your characters max zooming distance."}
1977CMDN[#CMDN+1] = {N = "position", A = {"pos"}, CMD = "148,pos/position,(CB/COPY),Sends your characters position to output."}
1978CMDN[#CMDN+1] = {N = "audiolog", A = {"audioid"}, CMD = "149,audiolog/audioid,(plr) (CB/COPY),Logs what a user is playing."}
1979CMDN[#CMDN+1] = {N = "cambobble", A = {""}, CMD = "150,cambobble,,Bobbles camera when you walk."}
1980CMDN[#CMDN+1] = {N = "uncambobble", A = {""}, CMD = "151,uncambobble,,()"}
1981CMDN[#CMDN+1] = {N = "grapple", A = {"spiderman"}, CMD = "152,grapple/spiderman,,Grapples to your mouse."}
1982CMDN[#CMDN+1] = {N = "ungrapple", A = {"unspiderman"}, CMD = "153,ungrapple/unspiderman,,()"}
1983CMDN[#CMDN+1] = {N = "remind", A = {""}, CMD = "154,remind,(num) (h/m/s) (str),Reminds you of str when num is done counting."}
1984CMDN[#CMDN+1] = {N = "step", A = {""}, CMD = "155,step,,Allows you to walk up a building."}
1985CMDN[#CMDN+1] = {N = "unstep", A = {""}, CMD = "156,unstep,,()"}
1986CMDN[#CMDN+1] = {N = "antiafk", A = {"afk"}, CMD = "157,antiafk/afk,,Prevents you from idling."}
1987CMDN[#CMDN+1] = {N = "nosit", A = {""}, CMD = "158,nosit,,Stops your character from being sat down."}
1988CMDN[#CMDN+1] = {N = "yessit", A = {""}, CMD = "159,yessit,,()"}
1989CMDN[#CMDN+1] = {N = "nostun", A = {""}, CMD = "160,nostun,,Stops your character from being PlatformStood."}
1990CMDN[#CMDN+1] = {N = "yesstun", A = {""}, CMD = "161,yesstun,,()"}
1991CMDN[#CMDN+1] = {N = "badges", A = {""}, CMD = "162,badges,,Gets all badges if there are any named (Default: BadgeAwarder)."}
1992CMDN[#CMDN+1] = {N = "spawnpoint", A = {"spawn"}, CMD = "163,spawnpoint/spawn,,Sets spawnpoint to your current position."}
1993CMDN[#CMDN+1] = {N = "bunnyhop", A = {"bhop"}, CMD = "164,bhop/bunnyhop,,Bunny hops your character."}
1994CMDN[#CMDN+1] = {N = "unbunnyhop", A = {"unbhop"}, CMD = "165,unbhop/unbunnyhop,,()"}
1995CMDN[#CMDN+1] = {N = "invisible", A = {"invis"}, CMD = "166,invisible/invis,,Makes your character invisible."}
1996CMDN[#CMDN+1] = {N = "sit", A = {"seat"}, CMD = "167,sit/seat,,Sits your character."}
1997CMDN[#CMDN+1] = {N = "sitwalk", A = {"seatwalk"}, CMD = "168,sitwalk/seatwalk,,Sits your character but allows your character to move around.,"}
1998CMDN[#CMDN+1] = {N = "freeze", A = {"anchored"}, CMD = "169,freeze/anchored,,Freezes your character."}
1999CMDN[#CMDN+1] = {N = "thaw", A = {"unfreeze","unanchored"}, CMD = "170,thaw/unfreeze/unanchored,,()"}
2000CMDN[#CMDN+1] = {N = "goto", A = {"to","tp"}, CMD = "171,goto/to/tp,(plr),Teleports your character to the player."}
2001CMDN[#CMDN+1] = {N = "walkto", A = {"moveto"}, CMD = "172,walkto/moveto,(plr),Walks your character to the player."}
2002CMDN[#CMDN+1] = {N = "unwalkto", A = {"unmoveto"}, CMD = "173,unwalkto/unmoveto,,()"}
2003CMDN[#CMDN+1] = {N = "refresh", A = {"re"}, CMD = "174,refresh/re,,Respawns your character on the location of entering this command."}
2004CMDN[#CMDN+1] = {N = "reset", A = {"r"}, CMD = "175,reset/r,,Resets your character."}
2005CMDN[#CMDN+1] = {N = "savepos", A = {"spos"}, CMD = "176,savepos/spos,(str),Saves your characters position."}
2006CMDN[#CMDN+1] = {N = "loadpos", A = {"lpos"}, CMD = "177,loadpos/lpos,(str),()"}
2007CMDN[#CMDN+1] = {N = "platform", A = {"pf"}, CMD = "178,platform/pf,,Allows your character to walk on an invisible platform."}
2008CMDN[#CMDN+1] = {N = "unplatform", A = {"unpf"}, CMD = "179,unplatform/unpf,,()"}
2009CMDN[#CMDN+1] = {N = "clicktp", A = {"ctrltp"}, CMD = "180,clicktp/ctrltp,,Press CTRL to teleport your character to your cursor."}
2010CMDN[#CMDN+1] = {N = "infjump", A = {"ij"}, CMD = "181,infjump/ij,,Allows you to infinitely go higher by pressing space."}
2011CMDN[#CMDN+1] = {N = "uninfjump", A = {"unij"}, CMD = "182,uninfjump/unij,,()"}
2012CMDN[#CMDN+1] = {N = "fly", A = {""}, CMD = "183,fly,,Allows your character to fly."}
2013CMDN[#CMDN+1] = {N = "vehiclefly", A = {"vfly"}, CMD = "184,vehiclefly/vfly,,Allows your character to fly around in vehicles."}
2014CMDN[#CMDN+1] = {N = "unfly", A = {""}, CMD = "185,unfly,,()"}
2015CMDN[#CMDN+1] = {N = "flyspeed", A = {"fs"}, CMD = "186,flyspeed/fs,(num),Changes fly speed."}
2016CMDN[#CMDN+1] = {N = "rejoin", A = {"rj"}, CMD = "187,rejoin/rj,,Rejoins the game."}
2017CMDN[#CMDN+1] = {N = "game", A = {"place"}, CMD = "188,game/place,(num),Joins the GameID you stated in num."}
2018CMDN[#CMDN+1] = {N = "reach", A = {""}, CMD = "189,reach,(num),Edits your tools size value."}
2019CMDN[#CMDN+1] = {N = "boxreach", A = {"breach"}, CMD = "190,boxreach/breach,(num),Edits your tools size value in a box formation."}
2020CMDN[#CMDN+1] = {N = "unreach", A = {""}, CMD = "191,unreach,,()"}
2021CMDN[#CMDN+1] = {N = "noclip", A = {"nc"}, CMD = "192,noclip/nc,,Allows your character to walk through anything, also blocks most flings."}
2022CMDN[#CMDN+1] = {N = "light", A = {"brightness"}, CMD = "193,light/brightness,(num),Gives your character a light. (CLIENT SIDED)"}
2023CMDN[#CMDN+1] = {N = "unlight", A = {"unbrightness"}, CMD = "194,unlight/unbrightness,,()"}
2024CMDN[#CMDN+1] = {N = "esp", A = {""}, CMD = "195,esp,,Shows where all the players are on your screen."}
2025CMDN[#CMDN+1] = {N = "unesp", A = {""}, CMD = "196,unesp,,()"}
2026CMDN[#CMDN+1] = {N = "aimbot", A = {"ab"}, CMD = "197,aimbot/ab,,Finds the closest player to you."}
2027CMDN[#CMDN+1] = {N = "unaimbot", A = {"unab"}, CMD = "198,unaimbot/unab,,()"}
2028CMDN[#CMDN+1] = {N = "whitelistfriends", A = {"wlf"}, CMD = "199,wlf/whitelistfriends,,Whitelists friends for aimbot."}
2029CMDN[#CMDN+1] = {N = "unwhitelistfriends", A = {"unwlf"}, CMD = "200,unwlf/unwhitelistfriends,,Unwhitelists friends for aimbot."}
2030CMDN[#CMDN+1] = {N = "whitelist", A = {"wl"}, CMD = "201,wl/whitelist,(plr),Whitelists player for aimbot."}
2031CMDN[#CMDN+1] = {N = "unwhitelist", A = {"unwl"}, CMD = "202,unwl/unwhitelist,(plr),Unwhitelists player for aimbot."}
2032CMDN[#CMDN+1] = {N = "showwhitelist", A = {"swl"}, CMD = "203,swl/showwhitelist,,Shows whitelist for aimbot."}
2033CMDN[#CMDN+1] = {N = "spectate", A = {"view"}, CMD = "204,view/spectate,(plr),Switches your camera view to the player you stated."}
2034CMDN[#CMDN+1] = {N = "unspectate", A = {"unview"}, CMD = "205,unview/unspectate,,()"}
2035CMDN[#CMDN+1] = {N = "osprivate", A = {"ospr"}, CMD = "206,ospr/osprivate,(plr),Says stated users Operating System privately."}
2036CMDN[#CMDN+1] = {N = "ospublic", A = {"ospu"}, CMD = "207,ospu/ospublic,(plr),Says stated users Operating System publicly."}
2037CMDN[#CMDN+1] = {N = "ageprivate", A = {"agepr"}, CMD = "208,agepr/ageprivate,(plr),Says stated users Account Age privately."}
2038CMDN[#CMDN+1] = {N = "agepublic", A = {"agepu"}, CMD = "209,agepu/agepublic,(plr),Says stated users Account Age publicly."}
2039CMDN[#CMDN+1] = {N = "idprivate", A = {"idpr"}, CMD = "210,idpr/idprivate,(plr),Says stated users ID privately."}
2040CMDN[#CMDN+1] = {N = "idpublic", A = {"idpu"}, CMD = "211,idpu/idpublic,(plr),Says stated users ID publicly."}
2041CMDN[#CMDN+1] = {N = "vrprivate", A = {"vrpr"}, CMD = "212,vrpr/vrprivate,(plr),Says stated users Virtual Reality System privately."}
2042CMDN[#CMDN+1] = {N = "vrpublic", A = {"vrpu"}, CMD = "213,vrpu/vrpublic,(plr),Says stated users Virtual Reality System publicly."}
2043CMDN[#CMDN+1] = {N = "profileinfo", A = {"profile"}, CMD = "214,profileinfo/profile,(plr),Lists various information of the player stated and shows a bodyshot of the player."}
2044CMDN[#CMDN+1] = {N = "closeprofileinfo", A = {"closeprofile"}, CMD = "215,closeprofile/closeprofileinfo,,()"}
2045CMDN[#CMDN+1] = {N = "nazispam", A = {"asciinazi"}, CMD = "216,nazispam/asciinazi,,Spams nazi signs in the chat."}
2046CMDN[#CMDN+1] = {N = "unnazispam", A = {"unasciinazi"}, CMD = "217,unnazispam/unasciinazi,,()"}
2047CMDN[#CMDN+1] = {N = "spam", A = {"s"}, CMD = "218,spam/s,(str),Spams the text you entered."}
2048CMDN[#CMDN+1] = {N = "unspam", A = {"uns"}, CMD = "219,unspam/uns,,()"}
2049CMDN[#CMDN+1] = {N = "pmspam", A = {""}, CMD = "220,pmspam,(plr) (str),Spams the text you entered in someones PM."}
2050CMDN[#CMDN+1] = {N = "unpmspam", A = {""}, CMD = "221,unpmspam,,()"}
2051CMDN[#CMDN+1] = {N = "spamspeed", A = {"ss"}, CMD = "222,spamspeed/ss,(num),Changes the speed of the spam."}
2052CMDN[#CMDN+1] = {N = "dicepublic", A = {"dicepu"}, CMD = "223,dicepu/dicepublic,,Rolls a dice publicly."}
2053CMDN[#CMDN+1] = {N = "diceprivate", A = {"dicepr"}, CMD = "224,dicepr/diceprivate,,Rolls a dice privately."}
2054CMDN[#CMDN+1] = {N = "numberpublic", A = {"numberpu"}, CMD = "225,numberpu/numberpublic,(num1) (num2),Calls a random number you stated between 2 numbers publicly."}
2055CMDN[#CMDN+1] = {N = "numberprivate", A = {"numberpr"}, CMD = "226,numberpr/numberprivate,(num1) (num2),Calls a random number you stated between 2 numbers privately."}
2056CMDN[#CMDN+1] = {N = "loadcustoms", A = {""}, CMD = "227,loadcustoms,,Lists custom scripts."}
2057CMDN[#CMDN+1] = {N = "loadcustom", A = {"pluginload","p_"}, CMD = "228,loadcustom/pluginload/p_,(name),Loads custom script that you stated."}
2058CMDN[#CMDN+1] = {N = "find", A = {""}, CMD = "229,find,(plr),Locates where your stated user is using the ESP command - (WARNING: May cause log spam.)."}
2059CMDN[#CMDN+1] = {N = "unfind", A = {""}, CMD = "230,unfind,(plr),()"}
2060CMDN[#CMDN+1] = {N = "clickdelete", A = {"clickdel"}, CMD = "231,clickdel/clickdelete,,Deletes any part you click on. (WARNING: Broken :/ )"}
2061CMDN[#CMDN+1] = {N = "logs", A = {""}, CMD = "232,logs,,Logs all chats including whispers in a GUI."}
2062CMDN[#CMDN+1] = {N = "test", A = {""}, CMD = "233,test,,Old ESP test. (WARNING: Will literally lag your game please don't use this lol)"}
2063CMDN[#CMDN+1] = {N = "testa", A = {"test-1"}, CMD = "234,testa/test-1,,DHBaby morph remover."}
2064CMDN[#CMDN+1] = {N = "time", A = {""}, CMD = "235,time,(timezone),Lists the current time of this timezone."}
2065CMDN[#CMDN+1] = {N = "removeforces", A = {"rforces"}, CMD = "236,rforces/removeforces,,Removes forces from your character."}
2066CMDN[#CMDN+1] = {N = "audiologger", A = {""}, CMD = "237,audiologger,,Logs all audios it finds from players in a loop."}
2067CMDN[#CMDN+1] = {N = "audiologgersave", A = {""}, CMD = "238,audiologgersave,,Saves all logged audios fromk audiologger."}
2068CMDN[#CMDN+1] = {N = "antilag", A = {"lowgraphics"}, CMD = "239,lowgraphics/antilag,,Attempts to minimize lag as much as possible best works with Graphics set to 1."}
2069CMDN[#CMDN+1] = {N = "clear", A = {"clr"}, CMD = "240,clr/clear,,Deletes all hats and gears dropped into the workspace."}
2070CMDN[#CMDN+1] = {N = "removeterrain", A = {"rterrain"}, CMD = "241,rterrain/removeterrain,,Removes all terrain."}
2071CMDN[#CMDN+1] = {N = "phone", A = {""}, CMD = "242,phone,,Makes your phone holdable (HATS NEEDED: https://www.roblox.com/catalog/4623463946/RoCell-11)"}
2072CMDN[#CMDN+1] = {N = "compliment", A = {""}, CMD = "243,compliment,(plr),Compliments player"}
2073CMDN[#CMDN+1] = {N = "roast", A = {""}, CMD = "244,roast,(plr),Roasts player"}
2074CMDN[#CMDN+1] = {N = "singinfo", A = {""}, CMD = "245,singinfo,,Lists how to make your own song compatible with sing command."}
2075CMDN[#CMDN+1] = {N = "sing", A = {""}, CMD = "246,sing,(link/preset),Makes your character sing a song (Presets: genocide/animethighs/babyshark/evilfantasy/$harkattack/dora/introversion/lucy/tyler/methhead/superfuntime/haha/diamonds)"}
2076CMDN[#CMDN+1] = {N = "deletepos", A = {"dpos"}, CMD = "247,dpos/deletepos,(str),Deletes specified waypoint."}
2077CMDN[#CMDN+1] = {N = "clearpos", A = {"cpos"}, CMD = "248,cpos/clearpos,,Clears all waypoints."}
2078CMDN[#CMDN+1] = {N = "gotopos", A = {""}, CMD = "249,gotopos,(behind/infront/left/right/above/under),Modifies how and where you tp to the character."}
2079CMDN[#CMDN+1] = {N = "autokey", A = {""}, CMD = "250,autokey,(key),Auto key presses the key you enter (SYNAPSE ONLY)."}
2080CMDN[#CMDN+1] = {N = "unautokey", A = {""}, CMD = "251,unautokey,,()"}
2081CMDN[#CMDN+1] = {N = "swimwalk", A = {"swim"}, CMD = "252,swim/swimwalk,,Allows you to swim on land."}
2082CMDN[#CMDN+1] = {N = "instances", A = {""}, CMD = "253,instances,,Shows you how many instances are in the game."}
2083CMDN[#CMDN+1] = {N = "plugin", A = {""}, CMD = "254,plugin,,Shows plugin GUI so you can add plugins to CMD-X."}
2084CMDN[#CMDN+1] = {N = "loadcustomsclr", A = {""}, CMD = "255,loadcustomsclr,,Clears all loadcustoms."}
2085CMDN[#CMDN+1] = {N = "antiwrldsgui", A = {""}, CMD = "256,antiwrldsgui,,Loads antiwrlds gui."}
2086CMDN[#CMDN+1] = {N = "knife", A = {""}, CMD = "257,knife,,Gives you a knife (HATS NEEDED:https://www.roblox.com/catalog/4684948729/Kawaii-Knife)"}
2087CMDN[#CMDN+1] = {N = "sai", A = {""}, CMD = "258,sai,,Gives you a sai (HATS NEEDED:https://www.roblox.com/catalog/4505987292/Dual-Sai)"}
2088CMDN[#CMDN+1] = {N = "present", A = {""}, CMD = "259,present,,Gives you a present (HATS NEEDED: a present)"}
2089CMDN[#CMDN+1] = {N = "boombox", A = {""}, CMD = "260,boombox,,Gives you a boombox (HATS NEEDED:https://www.roblox.com/catalog/4584753034/Boomblox-Back-Boombox)"}
2090CMDN[#CMDN+1] = {N = "gearhat", A = {"toolhat"}, CMD = "261,gearhat/toolhat,,Makes your gears into hats."}
2091CMDN[#CMDN+1] = {N = "bypass", A = {"bp"}, CMD = "262,bp/bypass,(str),Bypasses text you enter into chat."}
2092CMDN[#CMDN+1] = {N = "emote", A = {"e"}, CMD = "263,e/emote,(id),Plays the emote you enter by name (R15 ONLY)."}
2093CMDN[#CMDN+1] = {N = "printcommands", A = {"pcmds"}, CMD = "262,pcmds/printcommands,,Prints commands."}
2094CMDN[#CMDN+1] = {N = "chatframe", A = {"cf"}, CMD = "263,chatframe/cf,(plr/str),Forces player to chat something so you can frame them (CLIENT SIDED)."}
2095CMDN[#CMDN+1] = {N = "forcebubblechat", A = {"fbc"}, CMD = "264,forcebubblechat/fbc,,Forces bubble chat to appear for players chatting (CLIENT SIDED)."}
2096CMDN[#CMDN+1] = {N = "unforcebubblechat", A = {"unfbc"}, CMD = "265,unforcebubblechat/unfbc,,()"}
2097CMDN[#CMDN+1] = {N = "itemesp", A = {"iesp"}, CMD = "266,itemesp/iesp,,Creates ESP's for in-game items as best as possible."}
2098CMDN[#CMDN+1] = {N = "unitemesp", A = {"uniesp"}, CMD = "267,unitemesp/uniesp,,()"}
2099CMDN[#CMDN+1] = {N = "setdiscord", A = {""}, CMD = "268,setdiscord,(str),Put your discord name in here for use of the command saydiscord."}
2100CMDN[#CMDN+1] = {N = "saydiscord", A = {"sd"}, CMD = "269,saydiscord/sd,(cb/copy),Says your discord name in chat."}
2101CMDN[#CMDN+1] = {N = "removecustombodyparts", A = {"rcbp","rcustombp"}, CMD = "270,rcbp/rcustombp/removecustombodyparts,,Removes custom body parts set by games."}
2102CMDN[#CMDN+1] = {N = "insane", A = {"spas"}, CMD = "271,insane/spas,,Makes your character spas out. (R6 ONLY)"}
2103CMDN[#CMDN+1] = {N = "hotkeyaimbot", A = {""}, CMD = "272,hotkeyaimbot,(key),Changes your hotkey for activating aimbot."}
2104CMDN[#CMDN+1] = {N = "hotkeyesp", A = {""}, CMD = "273,hotkeyesp,(key),Changes your hotkey for activating ESP."}
2105CMDN[#CMDN+1] = {N = "admindetect", A = {"ad"}, CMD = "274,admindetect/ad,,Detects admins in the game (If the game has HDAdmin do ;admins before running the command)(SUPPORTS: HD/KOHLS)"}
2106CMDN[#CMDN+1] = {N = "streamermode", A = {"hidenames"}, CMD = "275,streamermode/hidenames,,Hides all names in games (Suitable for streamers or people showcasing CMD-X <3)."}
2107CMDN[#CMDN+1] = {N = "permflyspeed", A = {"pfs"}, CMD = "276,permflyspeed/pfs,(num),Fly speed is set to this every time you fly."}
2108CMDN[#CMDN+1] = {N = "loopgoto", A = {"loopto","looptp"}, CMD = "277,loopgoto/loopto/looptp,(plr),Loop teleports to the player."}
2109CMDN[#CMDN+1] = {N = "unloopgoto", A = {"unloopto","unlooptp"}, CMD = "278,unloopgoto/unloopto/unlooptp,,()"}
2110CMDN[#CMDN+1] = {N = "dupegears", A = {"dupetools"}, CMD = "279,dupetools/dupegears,(num),Dupes tools until it reaches the set amount."}
2111CMDN[#CMDN+1] = {N = "permwalkspeed", A = {"pws"}, CMD = "280,permwalkspeed/pws,(num),Walk speed is set to this every time you use walkspeed."}
2112CMDN[#CMDN+1] = {N = "permjumppower", A = {"pjp"}, CMD = "281,permjumppower/pjp,(num),Jump power is set to this every time you use jumppower."}
2113CMDN[#CMDN+1] = {N = "permhipheight", A = {"phh"}, CMD = "282,permhipheight/phh,(num),Hip height is set to this every time you use hipheight."}
2114CMDN[#CMDN+1] = {N = "permgravity", A = {"pgrav"}, CMD = "283,permgravity/pgrav,(num),Gravity is set to this every time you use gravity."}
2115CMDN[#CMDN+1] = {N = "gotobp", A = {"tobp","tpbp"}, CMD = "284,gotobp/tobp/tpbp,(plr),Teleports to a player while bypassing any anti-teleport."}
2116CMDN[#CMDN+1] = {N = "mute", A = {""}, CMD = "285,mute,,Mutes players sounds in a loop including radios."}
2117CMDN[#CMDN+1] = {N = "unmute", A = {""}, CMD = "286,unmute,,()"}
2118CMDN[#CMDN+1] = {N = "vgoto", A = {"vto","vtp"}, CMD = "287,vgoto/vto/vtp,(plr),Teleports to a player while in a vehicle."}
2119CMDN[#CMDN+1] = {N = "admin", A = {""}, CMD = "288,admin,(plr),Allows a player to run commands on you (RE-EXECUTE AFTER RUNNING)."}
2120CMDN[#CMDN+1] = {N = "unadmin", A = {""}, CMD = "289,unadmin,(plr),() (RE-EXECUTE AFTER RUNNING)"}
2121CMDN[#CMDN+1] = {N = "admins", A = {""}, CMD = "290,admins,,Lists all admins."}
2122CMDN[#CMDN+1] = {N = "adminclr", A = {""}, CMD = "291,adminclr,,Removes all admins (RE-EXECUTE AFTER RUNNING)."}
2123CMDN[#CMDN+1] = {N = "hotkeynew", A = {""}, CMD = "292,hotkeynew,(key/cmd),Adds a new hotkey to the list of hotkeys that are activated when you press the keybind."}
2124CMDN[#CMDN+1] = {N = "hotkeys", A = {""}, CMD = "293,hotkeys,,Lists hotkeys."}
2125CMDN[#CMDN+1] = {N = "hotkeydel", A = {""}, CMD = "294,hotkeydel,(cmd),Deletes a hotkey in the hotkeys list."}
2126CMDN[#CMDN+1] = {N = "hotkeysclr", A = {""}, CMD = "295,hotkeysclr,,Clears the hotkeys."}
2127CMDN[#CMDN+1] = {N = "changestyle", A = {"cs"}, CMD = "296,cs/changestyle,(style),Changes the style of your CMD-X refer to csinfo for more info on this command."}
2128CMDN[#CMDN+1] = {N = "csinfo", A = {""}, CMD = "297,csinfo,,Lists info about changestyle/cs."}
2129CMDN[#CMDN+1] = {N = "chat", A = {""}, CMD = "298,chat,(str),Forces you to chat whatever you put in str (Bypasses any mute)."}
2130CMDN[#CMDN+1] = {N = "curvetools", A = {""}, CMD = "299,curvetools,,Curves your tools."}
2131CMDN[#CMDN+1] = {N = "spiraltools", A = {""}, CMD = "300,spiraltools,,Spirals your tools."}
2132CMDN[#CMDN+1] = {N = "toggleconfly", A = {"tcfly"}, CMD = "301,tcfly/toggleconfly,(on/off),Toggles if your fly starts again after a reset."}
2133CMDN[#CMDN+1] = {N = "audioglitch", A = {"aglitch"}, CMD = "302,aglitch/audioglitch,(plr/all/othersnum),Glitches players audios."}
2134CMDN[#CMDN+1] = {N = "unaudioglitch", A = {"unaglitch"}, CMD = "303,unaglitch/unaudioglitch,,()"}
2135CMDN[#CMDN+1] = {N = "lagchat", A = {""}, CMD = "304,lagchat,,Lags chat using _'s."}
2136CMDN[#CMDN+1] = {N = "trollchat", A = {"tc"}, CMD = "305,trollchat/tc,,Picks a random trolly/ annoying chat."}
2137CMDN[#CMDN+1] = {N = "unbodypositionwalkspeed", A = {"unbpws"}, CMD = "306,unbpws/unbodypositionwalkspeed,,()bpws"}
2138CMDN[#CMDN+1] = {N = "removegears", A = {"rgears","removetools","rtools"}, CMD = "307,removegears/rgears/removetools/rtools,,Removes all your tools."}
2139CMDN[#CMDN+1] = {N = "unclicktp", A = {"unctrltp"}, CMD = "308,unclicktp/unctrltp,,()"}
2140CMDN[#CMDN+1] = {N = "unswimwalk", A = {"unswim"}, CMD = "309,unswim/unswimwalk,,()"}
2141CMDN[#CMDN+1] = {N = "unlagchat", A = {""}, CMD = "310,unlagchat,,()"}
2142CMDN[#CMDN+1] = {N = "rocket", A = {""}, CMD = "311,rocket,,Holds the robux rocket launcher or any kind of sniper etc on your back."}
2143CMDN[#CMDN+1] = {N = "clip", A = {"c"}, CMD = "312,clip/c,,()noclip"}
2144CMDN[#CMDN+1] = {N = "orbit", A = {"orb"}, CMD = "313,orbit/orb,(plr),Orbits a player."}
2145CMDN[#CMDN+1] = {N = "closeorbit", A = {"corb"}, CMD = "314,closeorbit/corb,(plr),Close orbits a player."}
2146CMDN[#CMDN+1] = {N = "unorbit", A = {"unorb"}, CMD = "315,unorbit/unorb,,()"}
2147CMDN[#CMDN+1] = {N = "suggestions", A = {""}, CMD = "316,suggestions,(on/off),Turns CMD suggestions on or off."}
2148CMDN[#CMDN+1] = {N = "clientbring", A = {"cbring"}, CMD = "317,clientbring/cbring,(plr),Brings user to you (CLIENT SIDED)."}
2149CMDN[#CMDN+1] = {N = "unclientbring", A = {"uncbring"}, CMD = "318,unclientbring/uncbring,,()"}
2150CMDN[#CMDN+1] = {N = "bring", A = {""}, CMD = "319,bring,(plr),Brings the player to you (NEED A HAT AND TOOL)."}
2151CMDN[#CMDN+1] = {N = "kill", A = {""}, CMD = "320,kill,(plr),Kills the player (NEED A HAT AND TOOL)."}
2152CMDN[#CMDN+1] = {N = "give", A = {""}, CMD = "321,give,(plr),Gives the player your tool."}
2153CMDN[#CMDN+1] = {N = "using", A = {"script","iuse"}, CMD = "322,using/script/iuse,,Specifies that you are using CMD-X. <3"}
2154CMDN[#CMDN+1] = {N = "playercases", A = {""}, CMD = "323,playercases,,Lists player cases you can use in your second argument."}
2155CMDN[#CMDN+1] = {N = "coronavirus", A = {""}, CMD = "324,coronavirus,(country/none),Provides information about coronavirus using an API."}
2156CMDN[#CMDN+1] = {N = "joindateprivate", A = {"jdpr"}, CMD = "325,joindateprivate/jdpr,(plr),Shows players join date privately."}
2157CMDN[#CMDN+1] = {N = "autoobby", A = {""}, CMD = "326,autoobby,,Allows you to complete an obby without pressing spacebar."}
2158CMDN[#CMDN+1] = {N = "unautoobby", A = {""}, CMD = "327,unautoobby,,()"}
2159CMDN[#CMDN+1] = {N = "joindatepublic", A = {"jdpu"}, CMD = "328,joindatepublic/jdpu,(plr),Shows players join date publicly."}
2160CMDN[#CMDN+1] = {N = "ppsize", A = {"pp"}, CMD = "329,ppsize/pp,(plr),Shows players PP size. (RANDOM)"}
2161CMDN[#CMDN+1] = {N = "gaysize", A = {"gay"}, CMD = "330,gaysize/gay,(plr),Shows how gay a player is. (RANDOM)"}
2162CMDN[#CMDN+1] = {N = "matchmake", A = {"match"}, CMD = "330,matchmake/match,(plrplr2),Shows how much of a match 2 players are. (RANDOM)"}
2163CMDN[#CMDN+1] = {N = "height", A = {""}, CMD = "330,height,(plr),Shows how tall a player is. (RANDOM)"}
2164CMDN[#CMDN+1] = {N = "randomchat", A = {"rc"}, CMD = "331,randomchat/rc,,Chats a randomly generated message."}
2165wait()
2166local value = math.random(1,#CMDN)
2167local picked_val = CMDN[value]
2168local phrasesFor = {"Wash your hands!","You have 4 days left on your isolation.","Pigeon is NOT a dove.","Thanks for 40k users!","Welcome to CMD-X!","Welcome to the best admin script.","Hello stranger.","Hello, "..cmdlp.Name..".",picked_val.N.." is the best command!","Want a theme? Use .cs bg (id)!","Want a plugin? Find some in the discord server!","Use 'support' for support!","[CMD-X]","Fun fact: CMD-X does not work on free executors!","Need help?","How are you today?"}
2169local value = math.random(1,#phrasesFor)
2170local picked_value = phrasesFor[value]
2171output4.Text = tostring(picked_value)
2172cmd.Changed:Connect(function()
2173 local checkargs = cmd.Text:split(" ")
2174 if cmd.Text ~= "" and not checkargs[2] and suggestions == true then
2175 for i,v in pairs(CMDN)do
2176 for _,x in pairs(CMDN[i].A) do
2177 local z = string.match(CMDN[i].N,cmd.Text)
2178 local m = string.match(CMDN[i].A[_],cmd.Text)
2179 if z ~= nil then
2180 if CMDN[i].N:sub(1,#cmd.Text) == cmd.Text then
2181 cmdsu.Text = CMDN[i].N
2182 --[[cmduis.InputBegan:Connect(function()
2183 if cmduis:IsKeyDown(Enum.KeyCode.LeftShift) then
2184 cmd.Text = CMDN[i].N
2185 end
2186 end)]]
2187 end
2188 end
2189 if m ~= nil then
2190 if CMDN[i].A[_]:sub(1,#cmd.Text) == cmd.Text then
2191 cmdsu.Text = CMDN[i].A[_]
2192 end
2193 end
2194 if cmd.Text == nil or cmd.Text == "Enter CMD here" then
2195 cmdsu.Text = ""
2196 end
2197 end
2198 end
2199 else
2200 cmdsu.Text = ""
2201 end
2202end)
2203cmd.FocusLost:Connect(function()
2204 cmdsu.Text = ""
2205end)
2206function CreateCMDLabel(num,name,arg,func)
2207 local sf2 = Scrollingcmdi
2208 if #sf2:GetChildren() >= 2546 then
2209 sf2:ClearAllChildren()
2210 end
2211 local alls2 = 0
2212 for i,v in pairs(sf2:GetChildren()) do
2213 if v then
2214 alls2 = v.Size.Y.Offset + alls2
2215 end
2216 if not v then
2217 alls2 = 0
2218 end
2219 end
2220 local tl2 = Instance.new('TextLabel', sf2)
2221 local il2 = Instance.new('Frame', tl2)
2222 tl2.Name = name
2223 tl2.ZIndex = 6
2224 tl2.Text = num..". "..name.." "..arg.." = "..func
2225 tl2.Size = UDim2.new(0,322,0,50)
2226 tl2.BackgroundTransparency = 1
2227 tl2.BorderSizePixel = 0
2228 tl2.Font = "SourceSansBold"
2229 tl2.Position = UDim2.new(-1,0,0,alls2)
2230 tl2.TextTransparency = 1
2231 tl2.TextScaled = false
2232 tl2.TextSize = 14
2233 tl2.TextWrapped = true
2234 tl2.TextXAlignment = "Left"
2235 tl2.TextYAlignment = "Top"
2236 il2.BackgroundTransparency = 1
2237 il2.BorderSizePixel = 0
2238 il2.Size = UDim2.new(0,12,1,0)
2239 il2.Position = UDim2.new(0,316,0,0)
2240 tl2.TextColor3 = Color3.fromRGB(255,255,255)
2241 tl2.Size = UDim2.new(0,322,0,tl2.TextBounds.Y)
2242 sf2.CanvasSize = UDim2.new(0,0,0,alls2+tl2.TextBounds.Y)
2243 sf2.CanvasPosition = Vector2.new(0,sf2.CanvasPosition.Y+tl2.TextBounds.Y)
2244 local size22 = sf2.CanvasSize.Y.Offset
2245 tl2:TweenPosition(UDim2.new(0,3,0,alls2), 'In', 'Quint', 0.5)
2246 tl2.TextTransparency = 0
2247end
2248
2249Cmdsearch.FocusLost:Connect(function()
2250 Scrollingcmdi:ClearAllChildren()
2251 if Cmdsearch.Text ~= "" then
2252 for i,v in pairs(CMDN)do
2253 for _,x in pairs(CMDN[i].A) do
2254 local z = string.find(CMDN[i].N,Cmdsearch.Text)
2255 local m = string.find(CMDN[i].A[_],Cmdsearch.Text)
2256 if z ~= nil then
2257 if CMDN[i].N:sub(1,#Cmdsearch.Text) == Cmdsearch.Text then
2258 local CS = CMDN[i].CMD:split(",")
2259 CreateCMDLabel(CS[1],CS[2],CS[3],CS[4])
2260 end
2261 end
2262 if m ~= nil then
2263 if CMDN[i].A[_]:sub(1,#Cmdsearch.Text) == Cmdsearch.Text then
2264 local CS = CMDN[i].CMD:split(",")
2265 CreateCMDLabel(CS[1],CS[2],CS[3],CS[4])
2266 end
2267 end
2268 end
2269 end
2270 else
2271 for i = 1,#CMDN do
2272 local CS = CMDN[i].CMD:split(",")
2273 CreateCMDLabel(CS[1],CS[2],CS[3],CS[4])
2274 end
2275 end
2276end)
2277function refresh()
2278 LPos = cmdlp.Character.HumanoidRootPart.CFrame
2279 cmdlp.Character.Humanoid.PlatformStand = false
2280 cmdlp.Character.Humanoid.Health = 0
2281 cmdlp.Character.Head.CFrame = CFrame.new(1e9,0,1e9)
2282 cmdlp.Character.HumanoidRootPart:Destroy()
2283 repeat wait() until cmdlp.Character ~= nil and cmdlp.Character:FindFirstChild('HumanoidRootPart')
2284 cmdlp.Character.HumanoidRootPart.CFrame = LPos
2285end
2286function IESP(v)
2287 spawn(function()
2288 for i,n in pairs(cmdlp.PlayerGui:GetChildren()) do
2289 if n.Name == v:GetFullName()..'_IESP' then
2290 n:Destroy()
2291 end
2292 end
2293 wait()
2294 IESPholder = Instance.new("Folder", cmdlp.PlayerGui)
2295 IESPholder.Name = v:GetFullName()..'_IESP'
2296 local a = Instance.new("BoxHandleAdornment", IESPholder)
2297 a.Name = v.Name
2298 a.Adornee = v
2299 a.AlwaysOnTop = true
2300 a.ZIndex = 0
2301 a.Size = v.Size
2302 a.Transparency = 0.8
2303 a.Color = v.BrickColor
2304 end)
2305end
2306workspace.DescendantAdded:Connect(function(i)
2307 if IESPenabled then
2308 local pi = i.Name:lower()
2309 local pt = "handle"
2310 local pt1 = "tool"
2311 local pt2 = "item"
2312 local z = string.find(pi,pt)
2313 local z1 = string.find(pi,pt1)
2314 local z2 = string.find(pi,pt2)
2315 if i:IsA("BasePart") and i.Parent.ClassName ~= "Accessory" then
2316 if z ~= nil or z1 ~= nil or z2 ~= nil then
2317 IESP(i)
2318 end
2319 end
2320 end
2321end)
2322workspace.DescendantRemoving:connect(function(i)
2323 if IESPenabled then
2324 for a,v in pairs(cmdlp.PlayerGui:GetChildren()) do
2325 if v.Name == i:GetFullName()..'_IESP' then
2326 v:Destroy()
2327 end
2328 end
2329 end
2330end)
2331function ESP(plr)
2332 spawn(function()
2333 for i,v in pairs(cmdlp.PlayerGui:GetChildren()) do
2334 if v.Name == plr.Name..'_ESP' then
2335 v:Destroy()
2336 end
2337 end
2338 wait()
2339 if plr.Character and plr.Name ~= cmdp.LocalPlayer.Name and not cmdp.LocalPlayer.PlayerGui:FindFirstChild(plr.Name..'_ESP') then
2340 local ESPholder = Instance.new("Folder", cmdlp.PlayerGui)
2341 ESPholder.Name = plr.Name..'_ESP'
2342 for b,n in pairs (plr.Character:GetChildren()) do
2343 if (n:IsA("BasePart")) then
2344 local a = Instance.new("BoxHandleAdornment", ESPholder)
2345 a.Name = plr.Name
2346 a.Adornee = n
2347 a.AlwaysOnTop = true
2348 a.ZIndex = 0
2349 a.Size = n.Size
2350 a.Transparency = 0.8
2351 for i,m in pairs(plr.Character:GetChildren()) do
2352 if m:IsA("Part") or m:IsA("MeshPart") then
2353 if m.Name ~= "HumanoidRootPart" and m.Name ~= "Handle" or (m:IsA("Part")) then
2354 m.Material = "ForceField"
2355 a.Color = m.BrickColor
2356 end
2357 end
2358 end
2359 end
2360 end
2361 if plr.Character and plr.Character:FindFirstChild('Head') then
2362 local BillboardGui = Instance.new("BillboardGui", ESPholder)
2363 local TextLabel = Instance.new("TextLabel")
2364 BillboardGui.Adornee = plr.Character.Head
2365 BillboardGui.Name = plr.Name
2366 BillboardGui.Size = UDim2.new(0, 100, 0, 150)
2367 BillboardGui.StudsOffset = Vector3.new(0, 1, 0)
2368 BillboardGui.AlwaysOnTop = true
2369 TextLabel.Parent = BillboardGui
2370 TextLabel.BackgroundTransparency = 1
2371 TextLabel.Position = UDim2.new(0, 0, 0, -60)
2372 TextLabel.Size = UDim2.new(0, 100, 0, 100)
2373 TextLabel.Font = Enum.Font.SourceSansSemibold
2374 TextLabel.TextSize = 20
2375 TextLabel.TextColor3 = Color3.new(1, 1, 1)
2376 TextLabel.TextStrokeTransparency = 0.6
2377 TextLabel.TextYAlignment = Enum.TextYAlignment.Bottom
2378 plr.CharacterAdded:Connect(function()
2379 if ESPenabled then
2380 espLoopFunc:Disconnect()
2381 ESPholder:Destroy()
2382 repeat wait(1) until plr.Character:FindFirstChild('HumanoidRootPart') and plr.Character:FindFirstChild('Humanoid')
2383 ESP(plr)
2384 end
2385 end)
2386 local function espLoop()
2387 if cmdlp.PlayerGui:FindFirstChild(plr.Name..'_ESP') then
2388 if plr.Character:FindFirstChild('HumanoidRootPart') and plr.Character:FindFirstChild('Humanoid') then
2389 TextLabel.Text = plr.Name.."Studs: ".. math.floor((cmdlp.Character.HumanoidRootPart.Position - plr.Character.HumanoidRootPart.Position).magnitude).."Health: "..plr.Character.Humanoid.Health
2390 end
2391 else
2392 espLoopFunc:Disconnect()
2393 end
2394 end
2395 espLoopFunc = game:GetService("RunService").RenderStepped:Connect(espLoop)
2396 end
2397 end
2398 end)
2399end
2400cmdp.PlayerRemoving:connect(function(player)
2401 for i,v in pairs(cmdlp.PlayerGui:GetChildren()) do
2402 if v.Name == player.Name..'_ESP' or v.Name == player.Name..'_LC' then
2403 v:Destroy()
2404 end
2405 end
2406end)
2407
2408Enabledaimbot = false
2409function BodyAimbot()
2410 if Enabledaimbot == true then
2411 repeat wait() until #cmdp:GetPlayers() > 1
2412 local SPS = .001
2413 local LPCHead = cmdlp.Character:FindFirstChild("Head")
2414 local LPCTorso = cmdlp.Character:FindFirstChild("UpperTorso")
2415 local LPCHRPart = cmdlp.Character:FindFirstChild("HumanoidRootPart")
2416 local Closest = nil
2417 local Camera = cmdws:FindFirstChild("Camera")
2418 local aehl = Instance.new("BoxHandleAdornment", cmdlp.PlayerGui)
2419 aehl.Name = "ESPhelp"
2420 aehl.AlwaysOnTop = true
2421 aehl.ZIndex = 0
2422 aehl.Size = Vector3.new(2, 2.1, 1)
2423 aehl.Transparency = 0.8
2424 aehl.Color3 = Color3.new(255,0,0)
2425 local try = 1
2426 local teamcount = cmdteams:GetTeams()
2427 local teams = false
2428 if #teamcount >= 1 then
2429 teams = true
2430 end
2431 local Launch = false
2432 local launchCFrame = nil
2433 local function searchplr(requestedplr)
2434 if PlayersWLsystem[requestedplr.Name] == true then
2435 return false
2436 elseif PlayersWLsystem[requestedplr.Name] == false then
2437 return true
2438 end
2439 end
2440 while Enabledaimbot == true do
2441 local Distance = 100000
2442 for count,TargetP in pairs(cmdp:GetPlayers()) do
2443 if searchplr(TargetP) then
2444 if (TargetP ~= nil) and TargetP ~= cmdlp then
2445 local TC = TargetP.Character
2446 local TCHRPart = nil
2447 if TC then
2448 TCHRPart = TC:FindFirstChild("HumanoidRootPart")
2449 end
2450 if TCHRPart then
2451 try = 1
2452 local DistanceMAg = (TCHRPart.Position - LPCHRPart.Position).Magnitude
2453 if DistanceMAg < Distance and TCHRPart.Parent.Humanoid.Health > 0 then
2454 if teams then
2455 if TargetP.Team ~= cmdlp.Team then
2456 Closest = TCHRPart
2457 launchCFrame = TCHRPart.CFrame
2458 Distance = DistanceMAg
2459 opx("Target: "..Closest.Parent.Name)
2460 aehl.Adornee = TCHRPart
2461 Camera.CFrame = CFrame.new(LPCHRPart.Position,Closest.Position)
2462 end
2463 elseif not teams then
2464 Closest = TCHRPart
2465 Distance = DistanceMAg
2466 aehl.Adornee = TCHRPart
2467 Camera.CFrame = CFrame.new(LPCHRPart.Position,Closest.Position)
2468 end
2469 end
2470 elseif not TCHRPart then
2471 try = try + 1
2472 break
2473 end
2474 end
2475 elseif not searchplr(TargetP) then
2476 opx("Target is whitelisted!")
2477 end
2478 end
2479 local currentRP = LPCHRPart:FindFirstChild("Launch")
2480 if currentRP ~= nil then
2481 currentRP.Target = Closest
2482 if Noclipping then
2483 currentRP.MaxSpeed = 100
2484 elseif not Noclipping then
2485 currentRP.MaxSpeed = 1000
2486 end
2487 end
2488 cmduis.InputBegan:connect(function(input)
2489 if cmduis:IsKeyDown(Enum.KeyCode.KeypadPlus) and Enabledaimbot then
2490 Launch = not Launch
2491 local ps = cmdlp.Character.Humanoid.PlatformStand
2492 ps = Launch
2493 if Launch then
2494 local rp = Instance.new("RocketPropulsion")
2495 rp.Parent = LPCHRPart
2496 rp.CartoonFactor = 1
2497 rp.MaxThrust = 5000
2498 rp.MaxSpeed = 1000
2499 rp.ThrustP = 5000
2500 rp.Name = "Launch"
2501 currentRP = rp
2502 rp:Fire()
2503 elseif not Launch then
2504 for i,des in pairs(LPCHRPart:GetChildren()) do
2505 if des:IsA("RocketPropulsion") and des.Name == "Launch" then
2506 des:Destroy()
2507 end
2508 end
2509 end
2510 end
2511 end)
2512 cmdrs2.Heartbeat:Wait()
2513 end
2514 elseif not Enabledaimbot then
2515 local findESP = cmdlp.PlayerGui:FindFirstChild("ESPhelp")
2516 if findESP then
2517 findESP:Destroy()
2518 end
2519 end
2520end
2521cmduis.InputBegan:connect(function(input)
2522 if cmduis:IsKeyDown(Enum.KeyCode.KeypadPlus) and not Enabledaimbot then
2523 for i,des in pairs(cmdlp.Character.HumanoidRootPart:GetChildren()) do
2524 if des:IsA("RocketPropulsion") and des.Name == "Launch" then
2525 des:Destroy()
2526 end
2527 end
2528 end
2529end)
2530
2531if Noclipping then
2532 Noclipping:Disconnect()
2533end
2534Clip = true
2535function noclip()
2536 Clip = false
2537 local function NoclipLoop()
2538 if Clip == false and cmdlp.Character ~= nil then
2539 for _, child in pairs(cmdlp.Character:GetDescendants()) do
2540 if child:IsA("BasePart") and child.CanCollide == true then
2541 child.CanCollide = false
2542 end
2543 end
2544 end
2545 end
2546 Noclipping = game:GetService('RunService').Stepped:connect(NoclipLoop)
2547end
2548
2549cmdlp.Character:FindFirstChildWhichIsA("Humanoid").Died:Connect(function()
2550 if conFly == true then
2551 if FLYING == true then
2552 repeat wait() until cmdlp.Character ~= nil and cmdlp.Character:FindFirstChild('HumanoidRootPart') and cmdlp.Character:FindFirstChild('Humanoid')
2553 wait(2)
2554 FLYING = false
2555 cmdlp.Character.Humanoid.PlatformStand = false
2556 sFLY()
2557 speedofthefly = permflyspeed
2558 end
2559 end
2560 Enabledaimbot = false
2561 if Clip == false then
2562 Clip = true
2563 wait(1)
2564 Clip = false
2565 end
2566end)
2567cmdlp.CharacterAdded:Connect(function(char)
2568 wait(2)
2569 char:FindFirstChildWhichIsA("Humanoid").Died:Connect(function()
2570 if conFly == true then
2571 if FLYING == true then
2572 repeat wait() until cmdlp.Character ~= nil and cmdlp.Character:FindFirstChild('HumanoidRootPart') and cmdlp.Character:FindFirstChild('Humanoid')
2573 wait(.1)
2574 FLYING = false
2575 cmdlp.Character.Humanoid.PlatformStand = false
2576 sFLY()
2577 speedofthefly = permflyspeed
2578 end
2579 end
2580 Enabledaimbot = false
2581 if Clip == false then
2582 Clip = true
2583 wait(1)
2584 Clip = false
2585 end
2586 end)
2587end)
2588---------------------------------------
2589-- Commands: --------------------------
2590
2591function opx(f,text)
2592 if f == "*" then
2593 output1.Text = "[*] "..text
2594 elseif f == "-" then
2595 output1.Text = "[-] "..text
2596 end
2597end
2598
2599function alignFunctions(getArgs)
2600 output9.Text = output8.Text
2601 output8.Text = output7.Text
2602 output7.Text = output6.Text
2603 output6.Text = output5.Text
2604 output5.Text = output4.Text
2605 output4.Text = output3.Text
2606 output3.Text = output2.Text
2607 output2.Text = output1.Text
2608 local cmdws = game:GetService("Workspace")
2609 local cmdp = game:GetService("Players")
2610 local cmdl = game:GetService("Lighting")
2611 local cmdrs = game:GetService("ReplicatedStorage")
2612 local cmdrs2 = game:GetService("RunService")
2613 local cmdts = game:GetService("TweenService")
2614 local cmdvu = game:GetService("VirtualUser")
2615 local cmduis = game:GetService("UserInputService")
2616 local cmdteams = game:GetService("Teams")
2617 local cmdlp = cmdp.LocalPlayer
2618 local cmdc = cmdlp.Character
2619 local cmdh = cmdc.Humanoid
2620 local cmdhrp = cmdc.HumanoidRootPart
2621 local cmdm = cmdlp:GetMouse()
2622 arguments = getArgs:split(" ")
2623 function getstring(begin)
2624 local start = begin-1
2625 local AA = '' for i,v in pairs(arguments) do
2626 if i > start then
2627 if AA ~= '' then
2628 AA = AA .. ' ' .. v
2629 else
2630 AA = AA .. v
2631 end
2632 end
2633 end
2634 return AA
2635 end
2636 arguments[1] = arguments[1]:lower()
2637end
2638
2639function findCmd(cmd_name)
2640 for i,v in pairs(CMDN)do
2641 for _,x in pairs(CMDN[i].A) do
2642 if CMDN[i].N:lower() == cmd_name:lower() or CMDN[i].A[_]:lower() == cmd_name:lower() then
2643 v = CMDN[i].N
2644 return v
2645 end
2646 end
2647 end
2648end
2649
2650local History = {}
2651local useCommand = {}
2652cmd.FocusLost:connect(function()
2653 if cmd.Text:lower():sub(1,#prefix) == prefix then
2654 cmd.Text = cmd.Text:sub(#prefix+1,100000)
2655 elseif cmd.Text:lower():sub(1,1) == '.' then
2656 cmd.Text = cmd.Text:sub(2,100000)
2657 end
2658 if cmd.Text ~= "" then
2659 local matchCommand = ""
2660 wait(.1)
2661 alignFunctions(cmd.Text)
2662 local cmdsy = findCmd(arguments[1])
2663 if cmdsy ~= nil then
2664 History[#History+1] = cmd.Text
2665 cmd.Text = ""
2666 --pcall(function()
2667 useCommand[cmdsy]()
2668 --end)
2669 else
2670 local invalidString = getstring(1)
2671 if #invalidString > 38 then
2672 invalidString = invalidString:sub(1,35).."..."
2673 end
2674 opx("*",invalidString.." is not a valid command.")
2675 end
2676 end
2677end)
2678
2679function useCommand.prefix()
2680 opx("-","Your prefix is "..prefix.." or .")
2681end
2682
2683function useCommand.promptnew()
2684 if arguments[2] then
2685 prompt = getstring(2).." >"
2686 updatesaves()
2687 user.Text = getstring(2).." >"
2688 opx("-","Prompt name set to "..getstring(2))
2689 elseif arguments[2] == "name" then
2690 prompt = cmdlp.Name.." >"
2691 updatesaves()
2692 user.Text = cmdlp.Name.." >"
2693 opx("-","Prompt name set to username")
2694 else
2695 opx("*","2 arguments are required for this command!")
2696 end
2697end
2698
2699function useCommand.prefixnew()
2700 if arguments[2] then
2701 prefix = arguments[2]
2702 updatesaves()
2703 opx("-","Prefix set to "..arguments[2])
2704 else
2705 opx("*","2 arguments are required for this command!")
2706 end
2707end
2708
2709function useCommand.hotkeyopen()
2710 if arguments[2] then
2711 hotkeyopen = arguments[2]
2712 updatesaves()
2713 opx("-","Hotkey set to "..arguments[2])
2714 else
2715 opx("*","2 arguments are required for this command!")
2716 end
2717end
2718
2719function useCommand.hotkeyoutput()
2720 if arguments[2] then
2721 hotkeyopx = arguments[2]
2722 updatesaves()
2723 opx("-","Hotkey set to "..arguments[2])
2724 else
2725 opx("*","2 arguments are required for this command!")
2726 end
2727end
2728
2729function useCommand.hotkeyfocus()
2730 if arguments[2] then
2731 hotkeyfocus = arguments[2]
2732 updatesaves()
2733 opx("-","Hotkey set to "..arguments[2])
2734 else
2735 opx("*","2 arguments are required for this command!")
2736 end
2737end
2738
2739function useCommand.spawncmdnew()
2740 if arguments[2] then
2741 enterCMD[#enterCMD+1] = getstring(2)
2742 updatesaves()
2743 opx("-","Added "..getstring(2).." to spawncmds")
2744 else
2745 opx("*","2 arguments are required for this command!")
2746 end
2747end
2748
2749function useCommand.spawncmds()
2750 if #enterCMD ~= 0 then
2751 for i = 1,#enterCMD do
2752 print(enterCMD[i])
2753 end
2754 opx("-","Printed spawn cmds to F9")
2755 else
2756 opx("*","You have no spawn cmds!")
2757 end
2758end
2759
2760function useCommand.spawncmddel()
2761 if arguments[2] then
2762 if #enterCMD ~= 0 then
2763 for i = 1,#enterCMD do
2764 if enterCMD[i] == getstring(2) then
2765 table.remove(enterCMD, i)
2766 updatesaves()
2767 end
2768 end
2769 opx("Removed "..getstring(2).." from spawn cmds")
2770 else
2771 opx("*","You have no spawn cmds!")
2772 end
2773 else
2774 opx("*","2 arguments are required for this command!")
2775 end
2776end
2777
2778function useCommand.spawncmdsclr()
2779 if #enterCMD ~= 0 then
2780 enterCMD = {}
2781 updatesaves()
2782 opx("-","Cleared all spawn cmds")
2783 else
2784 opx("*","You have no spawn cmds!")
2785 end
2786end
2787
2788function useCommand.eightballpu()
2789 local eightball = {"Maybe","Possibly","No","Yes","Never","Don't get your hopes up","100%","0%","50%","Likely","Extremely Likely","Almost Certain","Impossible","Possible","Currently... no","Maybe later on in life","Aha... Good luck on that one","This will definently happen buddy","Stop asking me questions","Hmm..."}
2790 local value = math.random(1,#eightball)
2791 local picked_value = eightball[value]
2792 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("8Ball says: "..tostring(picked_value), "All")
2793 opx("8Ball says: "..tostring(picked_value))
2794end
2795
2796function useCommand.eightballpr()
2797 local eightball = {"Maybe","Possibly","No","Yes","Never","Don't get your hopes up","100%","0%","50%","Likely","Extremely Likely","Almost Certain","Impossible","Possible","Currently... no","Maybe later on in life","Aha... Good luck on that one","This will definently happen buddy","Stop asking me questions","Hmm..."}
2798 local value = math.random(1,#eightball)
2799 local picked_value = eightball[value]
2800 opx("8Ball says: "..tostring(picked_value))
2801end
2802
2803function useCommand.pi()
2804 opx("-","Pi is "..math.pi)
2805end
2806
2807local helpCode = "https://discord.gg/TdYXqSw"
2808function useCommand.support()
2809 if arguments[2] == "cb" or arguments[2] == "copy" then
2810 setclipboard(helpCode)
2811 end
2812 opx("-","The link for support is "..helpCode)
2813end
2814
2815function useCommand.commands()
2816 Scrollingcmdi:ClearAllChildren()
2817 cmdiframe.Visible = true
2818 cmdiframe:TweenSize(UDim2.new(0,300,0,433), Enum.EasingDirection.In, Enum.EasingStyle.Quad, .5)
2819 CreateCMDLabel("","","","")
2820 CreateCMDLabel("","","","")
2821 for i = 1,#CMDN do
2822 local CS = CMDN[i].CMD:split(",")
2823 CreateCMDLabel(CS[1],CS[2],CS[3],CS[4])
2824 end
2825 opx("-","CMDS Loaded")
2826end
2827function useCommand.config()
2828 configframe.Visible = true
2829 configframe:TweenSize(UDim2.new(0,300,0,433), Enum.EasingDirection.In, Enum.EasingStyle.Quad, .5)
2830 opx("-","Config loaded")
2831end
2832
2833local cmdAdvertise = false
2834function useCommand.advertise()
2835 cmdAdvertise = true
2836 while cmdAdvertise == true do
2837 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Get CMD X today! Best admin GUI, supports paid executors: cxrd: TdYXqSw or type in cmd x pxstebxn on google!", "All")
2838 wait(math.random(1, 6))
2839 local randomPlayer = cmdp:GetPlayers()[math.random(1,#cmdp:GetPlayers())]
2840 cmdh:MoveTo(randomPlayer.Character.HumanoidRootPart.Position)
2841 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Get CMD X today! Best admin GUI, supports paid executors: cxrd: TdYXqSw or type in cmd x pxstebxn on google!", "All")
2842 wait(math.random(1, 6))
2843 local randomPlayer = cmdp:GetPlayers()[math.random(1,#cmdp:GetPlayers())]
2844 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/w "..randomPlayer.Name.." Get CMD X today! Best admin GUI, supports paid executors: cxrd: TdYXqSw or type in cmd x pxstebxn on google!", "All")
2845 local randomPlayer = cmdp:GetPlayers()[math.random(1,#cmdp:GetPlayers())]
2846 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/w "..randomPlayer.Name.." Get CMD X today! Best admin GUI, supports paid executors: cxrd: TdYXqSw or type in cmd x pxstebxn on google!", "All")
2847 local randomPlayer = cmdp:GetPlayers()[math.random(1,#cmdp:GetPlayers())]
2848 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/w "..randomPlayer.Name.." Get CMD X today! Best admin GUI, supports paid executors: cxrd: TdYXqSw or type in cmd x pxstebxn on google!", "All")
2849 local randomPlayer = cmdp:GetPlayers()[math.random(1,#cmdp:GetPlayers())]
2850 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/w "..randomPlayer.Name.." Get CMD X today! Best admin GUI, supports paid executors: cxrd: TdYXqSw or type in cmd x pxstebxn on google!", "All")
2851 local randomPlayer = cmdp:GetPlayers()[math.random(1,#cmdp:GetPlayers())]
2852 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Get CMD X today! Best admin GUI, supports paid executors: cxrd: TdYXqSw or type in cmd x pxstebxn on google!", "All")
2853 wait(math.random(1, 6))
2854 local randomPlayer = cmdp:GetPlayers()[math.random(1,#cmdp:GetPlayers())]
2855 cmdh:MoveTo(randomPlayer.Character.HumanoidRootPart.Position)
2856 end
2857 opx("-","Now advertising CMD-X (Thank you!)")
2858end
2859
2860function useCommand.unadvertise()
2861 cmdAdvertise = false
2862 opx("-","Stopped advertising CMD-X (Thank you!)")
2863end
2864
2865function useCommand.version()
2866 opx("-","CMD-X is currently on "..ver)
2867end
2868
2869function useCommand.nextupdate()
2870 opx("-","Next update: "..nextupd)
2871end
2872
2873function useCommand.walkspeed()
2874 if arguments[2] and cmdnum(arguments[2]) then
2875 cmdlp.Character.Humanoid.WalkSpeed = arguments[2]
2876 opx("-","Walkspeed set to "..arguments[2])
2877 else
2878 cmdlp.Character.Humanoid.WalkSpeed = permwalkspeed
2879 opx("-","Walkspeed set to "..permwalkspeed)
2880 end
2881end
2882
2883function useCommand.defaultwalkspeed()
2884 cmdlp.Character.Humanoid.WalkSpeed = 16
2885 opx("-","Walkspeed set to default (16)")
2886end
2887
2888function useCommand.jumppower()
2889 if arguments[2] and cmdnum(arguments[2]) then
2890 cmdlp.Character.Humanoid.JumpPower = arguments[2]
2891 opx("-","Jumppower set to "..arguments[2])
2892 else
2893 cmdlp.Character.Humanoid.JumpPower = permjumppower
2894 opx("-","Jumppower set to "..permjumppower)
2895 end
2896end
2897
2898function useCommand.defaultjumppower()
2899 cmdlp.Character.Humanoid.JumpPower = 50
2900 opx("-","Jumppower set to default (50)")
2901end
2902
2903function useCommand.hipheight()
2904 if arguments[2] and cmdnum(arguments[2]) then
2905 cmdlp.Character.Humanoid.HipHeight = arguments[2]
2906 opx("-","Hipheight set to "..arguments[2])
2907 else
2908 cmdlp.Character.Humanoid.HipHeight = permhipheight
2909 opx("*","Hipheight set to "..permhipheight)
2910 end
2911end
2912
2913function useCommand.defaulthipheight()
2914 cmdlp.Character.Humanoid.HipHeight = saveHip
2915 opx("-","Hipheight set to default ("..saveHip..")")
2916end
2917
2918function useCommand.gravity()
2919 if arguments[2] and cmdnum(arguments[2]) then
2920 workspace.Gravity = arguments[2]
2921 opx("-","Gravity set to "..arguments[2])
2922 else
2923 workspace.Gravity = permgravity
2924 opx("-","Gravity set to "..permgravity)
2925 end
2926end
2927
2928function useCommand.defaultgravity()
2929 workspace.Gravity = saveGrav
2930 opx("-","Hipheight set to default ("..saveGrav..")")
2931end
2932
2933local bodyPos = false
2934for i,v in pairs(cmdlp.Character:GetDescendants()) do
2935 if v.Name == "rocket" then
2936 v:Destroy()
2937 end
2938end
2939function useCommand.bodypositionwalkspeed()
2940 if arguments[2] and cmdnum(arguments[2]) then
2941 local speed = 1 + arguments[2]*0.05
2942 else
2943 local speed = 1 + 10*0.05
2944 end
2945 local rocket = Instance.new("BodyPosition",cmdlp.Character.HumanoidRootPart)
2946 rocket.Name = "rocket"
2947 local upvalue = 0
2948 rocket.maxForce = Vector3.new(12500,12500,12500)
2949 bodyPos = true
2950 opx("-","BodyPositionWalkSpeed activated")
2951 while bodyPos == true do
2952 wait()
2953 if cmdlp.Character.Humanoid.FloorMaterial == Enum.Material.Air then
2954 rocket.Parent = cmdlp.Character
2955 wait(0.5)
2956 else
2957 wait(0.5)
2958 rocket.Parent = cmdlp.Character.HumanoidRootPart
2959 end
2960 end
2961 while bodyPos == true do
2962 wait()
2963 rocket.Position = Vector3.new(cmdlp.Character.Torso.Position.X+cmdlp.Character.Humanoid.MoveDirection.X*speed*5.4,cmdlp.Character.Torso.Position.Y,cmdlp.Character.Torso.Position.Z+cmdlp.Character.Humanoid.MoveDirection.Z*speed*5.4)
2964 end
2965end
2966
2967function useCommand.halve()
2968 if cmd15(cmdlp) then
2969 opx("-","Halved character")
2970 cmdlp.Character.UpperTorso.Waist:Destroy()
2971 else
2972 opx("*","You need to be R15 for this command!")
2973 end
2974end
2975
2976function useCommand.removehands()
2977 if cmd15(cmdlp) then
2978 opx("-","Removed hands")
2979 cmdlp.Character.RightHand:Destroy()
2980 cmdlp.Character.LeftHand:Destroy()
2981 else
2982 opx("*","You need to be R15 for this command!")
2983 end
2984end
2985
2986function useCommand.removefeet()
2987 if cmd15(cmdlp) then
2988 opx("-","Removed feet")
2989 cmdlp.Character.RightFoot:Destroy()
2990 cmdlp.Character.LeftFoot:Destroy()
2991 else
2992 opx("*","You need to be R15 for this command!")
2993 end
2994end
2995
2996function useCommand.removeleftleg()
2997 opx("-","Removed left leg")
2998 if cmd15(cmdlp) then
2999 cmdlp.Character.LeftUpperLeg:Destroy()
3000 else
3001 cmdlp.Character["Left Leg"]:Destroy()
3002 end
3003end
3004
3005function useCommand.removerightleg()
3006 opx("-","Removed right leg")
3007 if cmd15(cmdlp) then
3008 cmdlp.Character.RightUpperLeg:Destroy()
3009 else
3010 cmdlp.Character["Right Leg"]:Destroy()
3011 end
3012end
3013
3014function useCommand.removeleftarm()
3015 opx("-","Removed left arm")
3016 if cmd15(cmdlp) then
3017 cmdlp.Character.LeftUpperArm:Destroy()
3018 else
3019 cmdlp.Character["Left Arm"]:Destroy()
3020 end
3021end
3022
3023function useCommand.removerightarm()
3024 opx("-","Removed right arm")
3025 if cmd15(cmdlp) then
3026 cmdlp.Character.RightUpperArm:Destroy()
3027 else
3028 cmdlp.Character["Right Arm"]:Destroy()
3029 end
3030end
3031
3032function useCommand.removearms()
3033 opx("-","Removed arms")
3034 if cmd15(cmdlp) then
3035 for i,v in pairs(cmdlp.Character:GetChildren()) do
3036 if v.Name == "RightUpperArm" or v.Name == "LeftUpperArm" then
3037 v:Destroy()
3038 end
3039 end
3040 else
3041 for i,v in pairs(cmdlp.Character:GetChildren()) do
3042 if v.Name == "Right Arm" or v.Name == "Left Arm" then
3043 v:Destroy()
3044 end
3045 end
3046 end
3047end
3048
3049function useCommand.removelegs()
3050 opx("-","Removed legs")
3051 if cmd15(cmdlp) then
3052 for i,v in pairs(cmdlp.Character:GetChildren()) do
3053 if v.Name == "RightUpperLeg" or v.Name == "LeftUpperLeg" then
3054 v:Destroy()
3055 end
3056 end
3057 else
3058 for i,v in pairs(cmdlp.Character:GetChildren()) do
3059 if v.Name == "Right Leg" or v.Name == "Left Leg" then
3060 v:Destroy()
3061 end
3062 end
3063 end
3064end
3065
3066function useCommand.removelimbs()
3067 opx("-","Removed limbs")
3068 if cmd15(cmdlp) then
3069 for i,v in pairs(cmdlp.Character:GetChildren()) do
3070 if v.Name == "RightUpperArm" or v.Name == "LeftUpperArm" or v.Name == "RightUpperLeg" or v.Name == "LeftUpperLeg" then
3071 v:Destroy()
3072 end
3073 end
3074 else
3075 for i,v in pairs(cmdlp.Character:GetChildren()) do
3076 if v.Name == "Right Arm" or v.Name == "Left Arm" or v.Name == "Right Leg" or v.Name == "Left Leg" then
3077 v:Destroy()
3078 end
3079 end
3080 end
3081end
3082
3083cmdlp.Character.Animate.Disabled = false
3084function useCommand.removeanim()
3085 opx("-","Removed animation")
3086 cmdlp.Character.Animate.Disabled = true
3087end
3088
3089function useCommand.restoreanim()
3090 opx("-","Restored animation")
3091 cmdlp.Character.Animate.Disabled = false
3092end
3093
3094function useCommand.removeshirt()
3095 opx("-","You have removed your shirt")
3096 cmdlp.Character.Shirt:Destroy()
3097end
3098
3099function useCommand.removetshirt()
3100 opx("-","You have removed your t-shirt")
3101 cmdlp.Character["Shirt Graphic"]:Destroy()
3102end
3103
3104function useCommand.removepants()
3105 opx("-","You have removed your pants")
3106 cmdlp.Character.Pants:Destroy()
3107end
3108
3109function useCommand.removeclothes()
3110 opx("-","You are now naked on a kids game")
3111 for i,v in pairs(cmdlp.Character:GetChildren()) do
3112 if v.Name == "Shirt" or v.Name == "Shirt Graphic" or v.Name == "Pants" then
3113 v:Destroy()
3114 end
3115 end
3116end
3117
3118function useCommand.removehatsmesh()
3119 opx("-","Removed hats meshes")
3120 for _,v in pairs(cmdlp.Character:GetChildren()) do
3121 if v:IsA("Accessory") then
3122 for _,x in pairs(v:GetDescendants()) do
3123 if x.Name == "Mesh" or x.Name == "SpecialMesh" then
3124 x:Destroy()
3125 end
3126 end
3127 end
3128 end
3129end
3130
3131function useCommand.removegearmesh()
3132 opx("-","Removed gears meshes")
3133 for _,v in pairs(cmdlp.Character:GetChildren()) do
3134 if v:IsA("Tool") then
3135 for _,x in pairs(v:GetDescendants()) do
3136 if x.Name == "Mesh" or x.Name == "SpecialMesh" then
3137 x:Destroy()
3138 end
3139 end
3140 end
3141 end
3142end
3143
3144function useCommand.hatgear()
3145 opx("-","Hats are now in your toolbar")
3146 for _, hat in pairs(cmdlp.Character.Humanoid:GetAccessories()) do
3147 if hat.Handle ~= nil then
3148 local tool = Instance.new("Tool", cmdlp.Backpack)
3149 tool.Name = hat.Name
3150 local hathandle = hat.Handle
3151 hathandle:FindFirstChildOfClass("Weld"):Destroy()
3152 hathandle.Parent = tool
3153 hathandle.Massless = true
3154 end
3155 end
3156end
3157
3158function useCommand.bring()
3159 if arguments[2] then
3160 target = findplr(arguments[2])
3161 if target ~= nil then
3162 for _, hat in pairs(cmdlp.Character.Humanoid:GetAccessories()) do
3163 if hat.Handle ~= nil then
3164 local tool = Instance.new("Tool", cmdlp.Backpack)
3165 tool.Name = hat.Name
3166 local hathandle = hat.Handle
3167 hathandle:FindFirstChildOfClass("Weld"):Destroy()
3168 hathandle.Parent = tool
3169 hathandle.Massless = true
3170 tool.Parent = cmdlp.Character
3171 tool.Parent = workspace
3172 end
3173 end
3174 newTool = cmdlp.Backpack:FindFirstChildOfClass("Tool")
3175 newTool.Parent = cmdlp.Character
3176 newTool.Parent = workspace
3177 currentPos = cmdlp.Character.HumanoidRootPart.CFrame
3178 cmdlp.Character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame + target.Character.HumanoidRootPart.CFrame.lookVector * -1
3179 wait(.5)
3180 cmdlp.Character.HumanoidRootPart.CFrame = currentPos
3181 newTool:Destroy()
3182 opx("-","Brung "..target.Name)
3183 wait(1)
3184 refresh()
3185 else
3186 opx("*","Player does not exist!")
3187 end
3188 else
3189 opx("*","2 arguments are needed for this command!")
3190 end
3191end
3192
3193function useCommand.drophats()
3194 opx("-","Dropped your hats")
3195 for i,v in pairs(cmdlp.Character:GetChildren()) do
3196 if v:IsA("Accessory") then
3197 v.Parent = workspace
3198 end
3199 end
3200end
3201
3202function useCommand.dropgears()
3203 opx("-","Dropped your gears")
3204 for i,v in pairs(cmdlp.Character:GetChildren()) do
3205 if v:IsA("Tool") then
3206 v.Parent = workspace
3207 end
3208 end
3209end
3210
3211local hatSpam = false
3212function useCommand.hatspam()
3213 opx("-","Now spamming hats")
3214 hatSpam = true
3215 while hatSpam == true do
3216 refresh()
3217 wait(1)
3218 for _,v in pairs(cmdlp.Character:GetChildren()) do
3219 if v:IsA("Accessory") then
3220 for _,x in pairs(v:GetDescendants()) do
3221 if x.Name == "Mesh" or x.Name == "SpecialMesh" then
3222 x:Destroy()
3223 end
3224 end
3225 end
3226 end
3227 wait(1)
3228 for i,v in pairs(cmdlp.Character:GetChildren()) do
3229 if v:IsA("Accessory") then
3230 v.Parent = workspace
3231 end
3232 end
3233 wait(1)
3234 end
3235end
3236
3237function useCommand.unhatspam()
3238 opx("-","Stopped spamming hats")
3239 hatSpam = false
3240end
3241
3242function useCommand.removeface()
3243 opx("-","Removed face")
3244 cmdlp.Character.Head.face:Destroy()
3245end
3246
3247function useCommand.removehats()
3248 opx("-","Removed hats")
3249 for i,v in pairs(cmdlp.Character:GetChildren()) do
3250 if v:IsA("Accessory") then
3251 v:Destroy()
3252 end
3253 end
3254end
3255
3256function useCommand.rheadmesh()
3257 opx("-","Removed head mesh")
3258 cmdlp.Character.Head.Mesh:Destroy()
3259end
3260
3261function useCommand.equip()
3262 opx("-","Equipped all gears")
3263 for _,v in pairs(cmdlp.Backpack:GetChildren()) do
3264 v.Parent = cmdlp.Character
3265 end
3266end
3267
3268function useCommand.give()
3269 if arguments[2] then
3270 target = findplr(arguments[2])
3271 if target ~= nil then
3272 newTool = cmdlp.Character:FindFirstChildOfClass("Tool")
3273 cmdlp.Character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame + target.Character.HumanoidRootPart.CFrame.lookVector * -7
3274 wait(1)
3275 newTool.Parent = workspace
3276 opx("-","Gave tool to "..target.Name)
3277 else
3278 opx("*","Player does not exist!")
3279 end
3280 else
3281 opx("*","2 arguments are needed for this command!")
3282 end
3283end
3284
3285function useCommand.using()
3286 opx("-","Said script <3")
3287 game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("I am using CMD-X, Version: "..ver, "All")
3288end
3289
3290function useCommand.banlands()
3291 if arguments[2] then
3292 target = findplr(arguments[2])
3293 if target ~= nil then
3294 for _, hat in pairs(cmdlp.Character.Humanoid:GetAccessories()) do
3295 if hat.Handle ~= nil then
3296 local tool = Instance.new("Tool", cmdlp.Backpack)
3297 tool.Name = hat.Name
3298 local hathandle = hat.Handle
3299 hathandle:FindFirstChildOfClass("Weld"):Destroy()
3300 hathandle.Parent = tool
3301 hathandle.Massless = true
3302 tool.Parent = cmdlp.Character
3303 tool.Parent = workspace
3304 end
3305 end
3306 newTool = cmdlp.Backpack:FindFirstChildOfClass("Tool")
3307 newTool.Parent = cmdlp.Character
3308 newTool.Parent = workspace
3309 cmdlp.Character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame + target.Character.HumanoidRootPart.CFrame.lookVector * -1
3310 wait(.5)
3311 cmdlp.Character.HumanoidRootPart.CFrame = cmdlp.Character.HumanoidRootPart.CFrame * CFrame.new(0,1000000,0)
3312 newTool:Destroy()
3313 opx("-","Banished "..target.Name)
3314 wait(1)
3315 cmdlp.Character:BreakJoints()
3316 else
3317 opx("*","Player does not exist!")
3318 end
3319 else
3320 opx("*","2 arguments are needed for this command!")
3321 end
3322end
3323
3324function useCommand.kill()
3325 if arguments[2] then
3326 target = findplr(arguments[2])
3327 if target ~= nil then
3328 for _, hat in pairs(cmdlp.Character.Humanoid:GetAccessories()) do
3329 if hat.Handle ~= nil then
3330 local tool = Instance.new("Tool", cmdlp.Backpack)
3331 tool.Name = hat.Name
3332 local hathandle = hat.Handle
3333 hathandle:FindFirstChildOfClass("Weld"):Destroy()
3334 hathandle.Parent = tool
3335 hathandle.Massless = true
3336 tool.Parent = cmdlp.Character
3337 tool.Parent = workspace
3338 end
3339 end
3340 newTool = cmdlp.Backpack:FindFirstChildOfClass("Tool")
3341 newTool.Parent = cmdlp.Character
3342 newTool.Parent = workspace
3343 cmdlp.Character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame + target.Character.HumanoidRootPart.CFrame.lookVector * -2
3344 wait(.5)
3345 cmdlp.Character.HumanoidRootPart.CFrame = cmdlp.Character.HumanoidRootPart.CFrame * CFrame.new(1000000000,1000000,100000000000)
3346 newTool:Destroy()
3347 opx("-","Killed "..target.Name)
3348 wait(1)
3349 cmdlp.Character:BreakJoints()
3350 else
3351 opx("*","Player does not exist!")
3352 end
3353 else
3354 opx("*","2 arguments are needed for this command!")
3355 end
3356end
3357
3358function useCommand.kill()
3359 if arguments[2] then
3360 target = findplr(arguments[2])
3361 if target ~= nil then
3362 for _, hat in pairs(cmdlp.Character.Humanoid:GetAccessories()) do
3363 if hat.Handle ~= nil then
3364 local tool = Instance.new("Tool", cmdlp.Backpack)
3365 tool.Name = hat.Name
3366 local hathandle = hat.Handle
3367 hathandle:FindFirstChildOfClass("Weld"):Destroy()
3368 hathandle.Parent = tool
3369 hathandle.Massless = true
3370 tool.Parent = cmdlp.Character
3371 tool.Parent = workspace
3372 end
3373 end
3374 newTool = cmdlp.Backpack:FindFirstChildOfClass("Tool")
3375 newTool.Parent = cmdlp.Character
3376 newTool.Parent = workspace
3377 cmdlp.Character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame + target.Character.HumanoidRootPart.CFrame.lookVector * -1
3378 wait(.5)
3379 cmdlp.Character.HumanoidRootPart.CFrame = cmdlp.Character.HumanoidRootPart.CFrame * CFrame.new(1e9,1e9,1e9)
3380 newTool:Destroy()
3381 opx("-","Killed "..target.Name)
3382 wait(1)
3383 cmdlp.Character:BreakJoints()
3384 else
3385 opx("*","Player does not exist!")
3386 end
3387 else
3388 opx("*","2 arguments are needed for this command!")
3389 end
3390end
3391
3392local Flipping = false
3393function useCommand.flip()
3394 opx("-","Now flipping")
3395 Flipping = true
3396 pl=game.Players.LocalPlayer
3397 me=pl.Character
3398 xl=me.Torso['Right Shoulder']
3399 local debounce=false
3400 function _restoreproperties()
3401 Holder = player.Character
3402 Torso = Holder:FindFirstChild("Torso")
3403 RightS = Torso:FindFirstChild("Right Shoulder")
3404 LeftS = Torso:FindFirstChild("Left Shoulder")
3405 RightH = Torso:FindFirstChild("Right Hip")
3406 LeftH = Torso:FindFirstChild("Left Hip")
3407 RightS.MaxVelocity = .15
3408 LeftS.MaxVelocity = .15
3409 RightH.MaxVelocity = .1
3410 LeftH.MaxVelocity = .1
3411 RightS.DesiredAngle = 0
3412 LeftS.DesiredAngle = 0
3413 LeftH.DesiredAngle = 0
3414 RightH.DesiredAngle = 0
3415 end
3416 function ManageAnimation(value)
3417 Holder = player.Character
3418 Player = player
3419 if value == "no anim" then
3420 Anim = Holder:FindFirstChild("Animate")
3421 if Anim~=nil then
3422 Anim.Disabled = true
3423 Anim.Parent = Player
3424 end
3425 elseif value == "re-anim" then
3426 Anim = Player:FindFirstChild("Animate")
3427 if Anim~=nil then
3428 Anim.Disabled = false
3429 Anim.Parent = Holder
3430 end
3431 end
3432 end
3433 function Down(ml)
3434 for i=1, ml.velocity.y/3 do
3435 ml.velocity = ml.velocity+Vector3.new(0,-4.25,0)
3436 wait()
3437 end
3438 ml:Remove()
3439 end
3440 function Flip2()
3441 if debounce==true then return end
3442 debounce=true
3443 Char = player.Character
3444 Human = Char.Humanoid
3445 Torso = Char.Torso
3446 CF = Torso.CFrame
3447 Human.PlatformStand = true
3448 VelUp = Instance.new("BodyVelocity")
3449 VelUp.velocity = Vector3.new(0,60,0)+Torso.CFrame.lookVector*26
3450 VelUp.P = VelUp.P*2
3451 VelUp.maxForce = Vector3.new(10000,10000,10000)*999
3452 VelUp.Parent = Torso
3453 coroutine.resume(coroutine.create(Down),VelUp)
3454 Gyro = Instance.new("BodyGyro")
3455 Gyro.P = Gyro.P*10
3456 Gyro.maxTorque = Vector3.new(100000,100000,100000)*999
3457 Gyro.cframe = CF
3458 Gyro.Parent = Torso
3459 for i=2, 28 do
3460 Gyro.cframe = Gyro.cframe*CFrame.fromEulerAnglesXYZ(math.pi/-16,0,0)
3461 wait()
3462 end
3463 Gyro.cframe = CF
3464 wait()
3465 Gyro:Remove()
3466 Human.PlatformStand = false
3467 _restoreproperties()
3468 debounce=false
3469 end
3470 while Flipping == true do
3471 wait()
3472 Flip2()
3473 end
3474end
3475
3476function useCommand.unflip()
3477 Flipping = false
3478 opx("-","No longer flipping")
3479end
3480
3481local doubleFlipping = false
3482function useCommand.doubleflip()
3483 opx("-","Now double flipping")
3484 doubleFlipping = true
3485 pl=game.Players.LocalPlayer
3486 me=pl.Character
3487 xl=me.Torso['Right Shoulder']
3488 local debounce=false
3489 function _restoreproperties()
3490 Holder = player.Character
3491 Torso = Holder:FindFirstChild("Torso")
3492 RightS = Torso:FindFirstChild("Right Shoulder")
3493 LeftS = Torso:FindFirstChild("Left Shoulder")
3494 RightH = Torso:FindFirstChild("Right Hip")
3495 LeftH = Torso:FindFirstChild("Left Hip")
3496 RightS.MaxVelocity = .15
3497 LeftS.MaxVelocity = .15
3498 RightH.MaxVelocity = .1
3499 LeftH.MaxVelocity = .1
3500 RightS.DesiredAngle = 0
3501 LeftS.DesiredAngle = 0
3502 LeftH.DesiredAngle = 0
3503 RightH.DesiredAngle = 0
3504 end
3505 function ManageAnimation(value)
3506 Holder = player.Character
3507 Player = player
3508 if value == "no anim" then
3509 Anim = Holder:FindFirstChild("Animate")
3510 if Anim~=nil then
3511 Anim.Disabled = true
3512 Anim.Parent = Player
3513 end
3514 elseif value == "re-anim" then
3515 Anim = Player:FindFirstChild("Animate")
3516 if Anim~=nil then
3517 Anim.Disabled = false
3518 Anim.Parent = Holder
3519 end
3520 end
3521 end
3522 function Down(ml)
3523 for i=1, ml.velocity.y/3 do
3524 ml.velocity = ml.velocity+Vector3.new(0,-4.25,0)
3525 wait()
3526 end
3527 ml:Remove()
3528 end
3529 function Flip3()
3530 if debounce==true then return end
3531 debounce=true
3532 Char = player.Character
3533 Human = Char.Humanoid
3534 Torso = Char.Torso
3535 CF = Torso.CFrame
3536 Human.PlatformStand = true
3537 VelUp = Instance.new("BodyVelocity")
3538 VelUp.velocity = Vector3.new(0,60,0)+Torso.CFrame.lookVector*26
3539 VelUp.P = VelUp.P*2
3540 VelUp.maxForce = Vector3.new(10000,10000,10000)*999
3541 VelUp.Parent = Torso
3542 coroutine.resume(coroutine.create(Down),VelUp)
3543 Gyro = Instance.new("BodyGyro")
3544 Gyro.P = Gyro.P*10
3545 Gyro.maxTorque = Vector3.new(100000,100000,100000)*999
3546 Gyro.cframe = CF
3547 Gyro.Parent = Torso
3548 for i=2, 28 do
3549 Gyro.cframe = Gyro.cframe*CFrame.fromEulerAnglesXYZ(math.pi/-8,0,0)
3550 wait()
3551 end
3552 Gyro.cframe = CF
3553 wait()
3554 Gyro:Remove()
3555 Human.PlatformStand = false
3556 _restoreproperties()
3557 debounce=false
3558 end
3559 while doubleFlipping == true do
3560 wait()
3561 Flip3()
3562 end
3563end
3564
3565function useCommand.undoubleflip()
3566 doubleFlipping = false
3567 opx("-","No longer double flipping")
3568end
3569
3570local stick = false
3571function useCommand.glue()
3572 if arguments[2] then
3573 target = findplr(arguments[2])
3574 if target ~= nil then
3575 stick = true
3576 opx("-","Now glued to "..target.Name)
3577 repeat wait()
3578 cmdlp.Character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame * CFrame.new(cmdlp.Character.HumanoidRootPart.CFrame.lookVector.X,target.Character.HumanoidRootPart.Size.Y,cmdlp.Character.HumanoidRootPart.CFrame.lookVector.Z)
3579 until stick == false
3580 else
3581 opx("*","Player does not exist!")
3582 end
3583 else
3584 opx("*","2 arguments are needed for this command!")
3585 end
3586end
3587
3588function useCommand.unglue()
3589 stick = false
3590 opx("-","No longer glued")
3591end
3592
3593function useCommand.nugget()
3594 opx("-","Changed character into a nugget")
3595 if cmd15(cmdlp) then
3596 for i,v in pairs(cmdlp.Character:GetChildren()) do
3597 if v.Name == "RightUpperArm" or v.Name == "LeftUpperArm" or v.Name == "RightUpperLeg" or v.Name == "LeftUpperLeg" then
3598 v:Destroy()
3599 end
3600 end
3601 else
3602 for i,v in pairs(cmdlp.Character:GetChildren()) do
3603 if v.Name == "Right Arm" or v.Name == "Left Arm" or v.Name == "Right Leg" or v.Name == "Left Leg" then
3604 v:Destroy()
3605 end
3606 end
3607 end
3608 cmdlp.Character.Head.Mesh:Destroy()
3609end
3610
3611local cwFlipping = false
3612function useCommand.cartwheel()
3613 opx("-","Now cartwheeling")
3614 cwFlipping = true
3615 function _restoreproperties()
3616 Torso = cmdlp.Character:FindFirstChild("Torso")
3617 RightS = Torso:FindFirstChild("Right Shoulder")
3618 LeftS = Torso:FindFirstChild("Left Shoulder")
3619 RightH = Torso:FindFirstChild("Right Hip")
3620 LeftH = Torso:FindFirstChild("Left Hip")
3621 RightS.MaxVelocity = .15
3622 LeftS.MaxVelocity = .15
3623 RightH.MaxVelocity = .1
3624 LeftH.MaxVelocity = .1
3625 RightS.DesiredAngle = 0
3626 LeftS.DesiredAngle = 0
3627 LeftH.DesiredAngle = 0
3628 RightH.DesiredAngle = 0
3629 end
3630 function Down(ml)
3631 for i = 1,ml.velocity.y/3 do
3632 ml.velocity = ml.velocity + Vector3.new(0,-4.25,0)
3633 wait()
3634 end
3635 ml:Remove()
3636 end
3637 function Flip()
3638 if debounce == true then return end
3639 debounce = true
3640 local Gyro = Instance.new("BodyGyro")
3641 Gyro.P = Gyro.P*10
3642 Gyro.maxTorque = Vector3.new(100000,100000,100000)*999
3643 Gyro.CFrame = cmdlp.Character.Torso.CFrame
3644 Gyro.Parent = cmdlp.Character.Torso
3645 for i=0, 50 do
3646 Gyro.CFrame = Gyro.CFrame*CFrame.fromEulerAnglesXYZ(math.pi/-29,0,0)
3647 wait()
3648 end
3649 Gyro.CFrame = cmdlp.Character.Torso.CFrame
3650 wait()
3651 Gyro:Remove()
3652 cmdlp.Character.Humanoid.PlatformStand = false
3653 _restoreproperties()
3654 debounce = false
3655 end
3656 while cwFlipping == true do
3657 wait()
3658 Flip()
3659 end
3660end
3661
3662function useCommand.uncartwheel()
3663 cwFlipping = false
3664 opx("-","No longer cartwheeling")
3665end
3666
3667local seizureFlipping = false
3668function useCommand.seizure()
3669 opx("-","Now seizuring")
3670 seizureFlipping = true
3671 function _restoreproperties()
3672 Torso = cmdlp.Character:FindFirstChild("Torso")
3673 RightS = Torso:FindFirstChild("Right Shoulder")
3674 LeftS = Torso:FindFirstChild("Left Shoulder")
3675 RightH = Torso:FindFirstChild("Right Hip")
3676 LeftH = Torso:FindFirstChild("Left Hip")
3677 RightS.MaxVelocity = .15
3678 LeftS.MaxVelocity = .15
3679 RightH.MaxVelocity = .1
3680 LeftH.MaxVelocity = .1
3681 RightS.DesiredAngle = 0
3682 LeftS.DesiredAngle = 0
3683 LeftH.DesiredAngle = 0
3684 RightH.DesiredAngle = 0
3685 end
3686 function Down(ml)
3687 for i = 1,ml.velocity.y/3 do
3688 ml.velocity = ml.velocity + Vector3.new(0,-4.25,0)
3689 wait()
3690 end
3691 ml:Remove()
3692 end
3693 function Flip4()
3694 if debounce == true then return end
3695 debounce = true
3696 cmdlp.Character.Humanoid.PlatformStand = true
3697 local VelUp = Instance.new("BodyVelocity")
3698 VelUp.maxForce = Vector3.new(10000,10000,10000)*999
3699 VelUp.Parent = cmdlp.Character.Torso
3700 coroutine.resume(coroutine.create(Down),VelUp)
3701 local Gyro = Instance.new("BodyGyro")
3702 Gyro.P = Gyro.P*10
3703 Gyro.CFrame = cmdlp.Character.Torso.CFrame
3704 Gyro.Parent = cmdlp.Character.Torso
3705 for i=1, 16 do
3706 Gyro.CFrame = Gyro.CFrame*CFrame.fromEulerAnglesXYZ(math.pi/9,math.pi/-18,0)
3707 wait()
3708 end
3709 Gyro.CFrame = cmdlp.Character.Torso.CFrame
3710 wait()
3711 Gyro:Remove()
3712 cmdlp.Character.Humanoid.PlatformStand = false
3713 _restoreproperties()
3714 debounce = false
3715 end
3716 while seizureFlipping == true do
3717 wait()
3718 Flip4()
3719 end
3720end
3721
3722function useCommand.unseizure()
3723 seizureFlipping = false
3724 opx("-","No longer seizuring")
3725end
3726
3727function useCommand.fling()
3728 if arguments[2] then
3729 target = findplr(arguments[2])
3730 if target ~= nil then
3731 noclip()
3732 sFLY()
3733 PF = 99
3734 PF = PF*10
3735 local BT = Instance.new("BodyThrust")
3736 BT.Parent = cmdhrp
3737 BT.Force = Vector3.new(PF, 0, PF)
3738 BT.Location = cmdhrp.Position
3739 for i,player in pairs(cmdc:GetChildren()) do
3740 if player.ClassName == "Part" then
3741 player.CustomPhysicalProperties = PhysicalProperties.new(0, 0.3, 0.5)
3742 end
3743 end
3744 cmdhrp.CFrame = target.Character.HumanoidRootPart.CFrame * CFrame.Angles(0, math.rad(0), 0) * CFrame.new(0, 0, 0)
3745 wait(1)
3746 for i,player in pairs(cmdlp.Character:GetChildren()) do
3747 if player.ClassName == "Part" then
3748 player.CustomPhysicalProperties = PhysicalProperties.new(0.7, 0.3, 0.5)
3749 end
3750 end
3751 if Noclipping then
3752 Noclipping:Disconnect()
3753 end
3754 Clip = true
3755 FLYING = false
3756 cmdlp.Character.HumanoidRootPart.BodyThrust:Destroy()
3757 cmdlp.Character.Humanoid.PlatformStand = true
3758 cmdlp.Character.Humanoid.Sit = true
3759 wait(0.1)
3760 cmdlp.Character.Humanoid.Jump = true
3761 opx("-","Flung "..target.Name)
3762 else
3763 opx("*","Player does not exist!")
3764 end
3765 else
3766 opx("*","2 arguments are needed for this command!")
3767 end
3768end
3769
3770function useCommand.invisiblefling()
3771 opx("-","Now Invisible Flinging use refresh to stop")
3772 local ch = game.Players.LocalPlayer.Character
3773 local prt=Instance.new("Model", game.Players.LocalPlayer.Character)
3774 local z1 = Instance.new("Part")
3775 z1.Name="Torso"
3776 z1.CanCollide = false
3777 z1.Anchored = true
3778 local z2 = Instance.new("Part", prt)
3779 z2.Name="Head"
3780 z2.Anchored = true
3781 z2.CanCollide = false
3782 local z3 =Instance.new("Humanoid", prt)
3783 z3.Name="Humanoid"
3784 z1.Position = Vector3.new(0,9999,0)
3785 game.Players.LocalPlayer.Character=prt
3786 wait(3)
3787 game.Players.LocalPlayer.Character=ch
3788 wait(3)
3789 local plr = game.Players.LocalPlayer
3790 mouse = plr:GetMouse()
3791 local Hum = Instance.new("Humanoid")
3792 z2:Clone()
3793 Hum.Parent = game.Players.LocalPlayer.Character
3794 local root = game.Players.LocalPlayer.Character.HumanoidRootPart
3795 for i,v in pairs(plr.Character:GetChildren()) do
3796 if v ~= root and v.Name ~= "Humanoid" then
3797 v:Destroy()
3798 end
3799 end
3800 root.Transparency = 0
3801 root.Material = "ForceField"
3802 root.Color = Color3.new(1, 1, 1)
3803 game:GetService('RunService').Stepped:connect(function()
3804 game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
3805 end)
3806 game:GetService('RunService').RenderStepped:connect(function()
3807 game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
3808 end)
3809 sFLY()
3810 workspace.CurrentCamera.CameraSubject = root
3811 PF = 99999
3812 PF = PF*10
3813 local bambam = Instance.new("BodyThrust")
3814 bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
3815 bambam.Force = Vector3.new(PF,0,PF)
3816 bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
3817end
3818
3819function useCommand.freefling()
3820 opx("-","Now freeflinging use unfling to stop")
3821 noclip()
3822 sFLY()
3823 cmdws.CurrentCamera.CameraSubject = cmdlp.Character.HumanoidRootPart
3824 local BT = Instance.new("BodyThrust")
3825 BT.Parent = cmdlp.Character.HumanoidRootPart
3826 BT.Force = Vector3.new(999999, 999999, 999999)
3827 BT.Location = cmdlp.Character.HumanoidRootPart.Position
3828 for i,player in pairs(cmdlp.Character:GetChildren()) do
3829 if player.ClassName == "Part" then
3830 player.CustomPhysicalProperties = PhysicalProperties.new(0, 0.3, 0.5)
3831 end
3832 end
3833end
3834
3835function useCommand.unfling()
3836 opx("-","You are no longer flinging")
3837 for i,player in pairs(cmdlp.Character:GetChildren()) do
3838 if player.ClassName == "Part" then
3839 player.CustomPhysicalProperties = PhysicalProperties.new(0.7, 0.3, 0.5)
3840 end
3841 end
3842 if Noclipping then
3843 Noclipping:Disconnect()
3844 end
3845 Clip = true
3846 FLYING = false
3847 cmdlp.Character.HumanoidRootPart.BodyThrust:Destroy()
3848 cmdlp.Character.Humanoid.PlatformStand = true
3849 cmdlp.Character.Humanoid.Sit = true
3850 wait(0.1)
3851 cmdlp.Character.Humanoid.Jump = true
3852end
3853
3854function useCommand.cleanfling()
3855 for i,v in pairs(cmdlp.Character:GetChildren()) do
3856 if v:IsA("Tool") then
3857 opx("-","Now clean flinging")
3858 v.Parent = cmdlp.Backpack
3859 v.Handle.Massless = true
3860 v.GripPos = Vector3.new(100000000000000,100000000000000,100000000000000)
3861 cmdlp.Character.HumanoidRootPart.CustomPhysicalProperties = PhysicalProperties.new(math.huge,math.huge,math.huge,math.huge,math.huge)
3862 v.Parent = cmdlp.Character
3863 noclip()
3864 else
3865 opx("*","Could not find a tool!")
3866 end
3867 end
3868end
3869
3870local Lagging = false
3871function useCommand.lag()
3872 opx("-","Now lagging character")
3873 Lagging = true
3874 repeat wait()
3875 cmdlp.Character.HumanoidRootPart.Anchored = false
3876 wait(.1)
3877 cmdlp.Character.HumanoidRootPart.Anchored = true
3878 wait(.1)
3879 until Lagging == false
3880end
3881
3882function useCommand.unlag()
3883 Lagging = false
3884 opx("No longer lagging character")
3885 wait(.3)
3886 cmdlp.Character.HumanoidRootPart.Anchored = false
3887end
3888
3889local Annoy = false
3890function useCommand.annoy()
3891 if arguments[2] then
3892 target = findplr(arguments[2])
3893 if target ~= nil then
3894 if target.Character and target.Character:FindFirstChild('Humanoid') then
3895 Annoy = true
3896 opx("-","Now annoying "..target.Name)
3897 while Annoy == true do
3898 cmdlp.Character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame * CFrame.Angles(0,math.rad(0),0)* CFrame.new(0,0,0)
3899 wait()
3900 end
3901 end
3902 else
3903 opx("*","Player does not exist!")
3904 end
3905 else
3906 opx("*","2 arguments are needed for this command!")
3907 end
3908end
3909
3910function useCommand.unannoy()
3911 Annoy = false
3912 opx("-","No longer annoying")
3913end
3914
3915function useCommand.weaken()
3916 for i,player in pairs(cmdlp.Character:GetChildren()) do
3917 if player.ClassName == "Part" then
3918 player.CustomPhysicalProperties = PhysicalProperties.new(0, 0.3, 0.5)
3919 end
3920 end
3921 opx("-","You are now weak")
3922end
3923
3924function useCommand.strengthen()
3925 for i,player in pairs(cmdlp.Character:GetChildren()) do
3926 if player.ClassName == "Part" then
3927 player.CustomPhysicalProperties = PhysicalProperties.new(100, 0.3, 0.5)
3928 end
3929 end
3930 opx("-","You are now strong")
3931end
3932
3933function useCommand.unweak()
3934 for i,player in pairs(cmdlp.Character:GetChildren()) do
3935 if player.ClassName == "Part" then
3936 player.CustomPhysicalProperties = PhysicalProperties.new(0.7, 0.3, 0.5)
3937 end
3938 end
3939 opx("-","You are no longer weak/strong")
3940end
3941
3942function useCommand.sparkles()
3943 opx("-","If you had a Fairy it now makes a sparkles illusion")
3944 for _, hat in pairs(cmdlp.Character.Humanoid:GetAccessories()) do
3945 if hat.Handle ~= nil then
3946 local tool = Instance.new("Tool", cmdlp.Backpack)
3947 tool.Name = hat.Name
3948 tool.GripPos = Vector3.new(1.5, 0, -1.5)
3949 local hathandle = hat.Handle
3950 hathandle:FindFirstChildOfClass("Weld"):Destroy()
3951 hathandle.Parent = tool
3952 hathandle.Massless = true
3953 end
3954 end
3955end
3956
3957function useCommand.sword()
3958 opx("-","If you had a Sword on your back you are now holding it")
3959 for _, hat in pairs(cmdlp.Character.Humanoid:GetAccessories()) do
3960 if hat.Handle ~= nil then
3961 local tool = Instance.new("Tool", cmdlp.Backpack)
3962 tool.Name = hat.Name
3963 tool.GripPos = Vector3.new(2, 2, 0)
3964 tool.GripRight = Vector3.new(9, 9, 9)
3965 tool.GripUp = Vector3.new(-9, -9, 0)
3966 local hathandle = hat.Handle
3967 hathandle:FindFirstChildOfClass("Weld"):Destroy()
3968 hathandle.Parent = tool
3969 hathandle.Massless = true
3970 end
3971 end
3972 local Anim = Instance.new("Animation")
3973 Anim.AnimationId = "rbxassetid://28090109"
3974 local play = cmdlp.Character.Humanoid:LoadAnimation(Anim)
3975 while wait() do
3976 for i,v in pairs(cmdlp.Character:GetChildren()) do
3977 if v:IsA("Tool") then
3978 v.Equipped:Connect(function(Mouse)
3979 Mouse.Button1Down:Connect(function()
3980 play:Play()
3981 end)
3982 end)
3983 end
3984 end
3985 end
3986end
3987
3988function useCommand.scythe()
3989 opx("-","If you had a Scythe on your back you are now holding it")
3990 for _, hat in pairs(cmdlp.Character.Humanoid:GetAccessories()) do
3991 if hat.Handle ~= nil then
3992 local tool = Instance.new("Tool", cmdlp.Backpack)
3993 tool.Name = hat.Name
3994 tool.GripPos = Vector3.new(-0.8, -2, 0)
3995 tool.GripRight = Vector3.new(0, 0, 0)
3996 tool.GripUp = Vector3.new(9, 9, -3)
3997 tool.GripForward = Vector3.new(0, 0, 0)
3998 local hathandle = hat.Handle
3999 hathandle:FindFirstChildOfClass("Weld"):Destroy()
4000 hathandle.Parent = tool
4001 hathandle.Massless = true
4002 end
4003 end
4004 local Anim = Instance.new("Animation")
4005 Anim.AnimationId = "rbxassetid://28090109"
4006 local play = cmdlp.Character.Humanoid:LoadAnimation(Anim)
4007 while wait() do
4008 for i,v in pairs(cmdlp.Character:GetChildren()) do
4009 if v:IsA("Tool") then
4010 v.Equipped:Connect(function(Mouse)
4011 Mouse.Button1Down:Connect(function()
4012 play:Play()
4013 end)
4014 end)
4015 end
4016 end
4017 end
4018end
4019
4020local Follow = false
4021function useCommand.leash()
4022 if arguments[2] then
4023 target = findplr(arguments[2])
4024 if target ~= nil then
4025 for _, hat in pairs(cmdlp.Character.Humanoid:GetAccessories()) do
4026 if hat.Handle ~= nil then
4027 if hat.Name == "FurryCatTail" then
4028 local tool = Instance.new("Tool", cmdlp.Backpack)
4029 tool.Name = target.Name.."s leash"
4030 tool.Parent = cmdp.LocalPlayer.Character
4031 tool.GripPos = Vector3.new(0, 0, 1)
4032 tool.GripRight = Vector3.new(1,1,0)
4033 tool.GripUp = Vector3.new(-9,-3,0)
4034 local hathandle = hat.Handle
4035 hathandle:FindFirstChildOfClass("Weld"):Destroy()
4036 hathandle.Parent = tool
4037 hathandle.Massless = true
4038 elseif hat.Name == "Spike Necklace" then
4039 local tool = Instance.new("Tool", cmdlp.Backpack)
4040 tool.Name = target.Name.."s collar"
4041 tool.Parent = cmdp.LocalPlayer.Character
4042 tool.GripPos = Vector3.new(0.6, -0.6, 3)
4043 local hathandle = hat.Handle
4044 hathandle:FindFirstChildOfClass("Weld"):Destroy()
4045 hathandle.Parent = tool
4046 hathandle.Massless = true
4047 end
4048 end
4049 end
4050 flwnum = -4.5
4051 if target.Character and target.Character:FindFirstChild('Humanoid') then
4052 Follow = true
4053 opx("-","Now leashing "..target.Name)
4054 while Follow == true do
4055 cmdlp.Character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame * CFrame.Angles(0,math.rad(0),0)* CFrame.new(-0.9,0,4.5)
4056 wait()
4057 end
4058 end
4059 else
4060 opx("*","Player does not exist!")
4061 end
4062 else
4063 opx("*","2 arguments are needed for this command!")
4064 end
4065end
4066
4067function useCommand.penis()
4068 opx("-","You boutta ro-cum bro?")
4069 for i,v in pairs(cmdlp.Character:GetChildren()) do
4070 if v:IsA("Accessory") then
4071 if v.Handle.SpecialMesh.TextureId == "http://www.roblox.com/asset/?id=4390955131" then
4072 v.Name = cmdlp.Name.."'s huge shaft"
4073 end
4074 end
4075 end
4076 for i,v in pairs(cmdlp.Character:GetChildren()) do
4077 if v:IsA("Accessory") then
4078 if v.Handle.SpecialMesh.TextureId == "http://www.roblox.com/asset/?id=4566834838" then
4079 v.Name = cmdlp.Name.."'s right ball"
4080 end
4081 end
4082 end
4083 for i,v in pairs(cmdlp.Character:GetChildren()) do
4084 if v:IsA("Accessory") then
4085 if v.Handle.SpecialMesh.TextureId == "http://www.roblox.com/asset/?id=4524758175" then
4086 v.Name = cmdlp.Name.."'s left ball"
4087 end
4088 end
4089 end
4090 for _, hat in pairs(cmdlp.Character.Humanoid:GetAccessories()) do
4091 if hat.Handle ~= nil then
4092 local tool = Instance.new("Tool", cmdlp.Backpack)
4093 if hat.Name == cmdlp.Name.."'s huge shaft" then
4094 tool.Name = hat.Name
4095 tool.Parent = cmdlp.Character
4096 hat.Handle.SpecialMesh:Destroy()
4097 tool.GripPos = Vector3.new(-1, 2, 1.5)
4098 tool.GripRight = Vector3.new(0, 0, 0)
4099 tool.GripUp = Vector3.new(9, 9, 0)
4100 tool.GripForward = Vector3.new(0, 0, 0)
4101 elseif hat.Name == cmdlp.Name.."'s right ball" then
4102 tool.Name = hat.Name
4103 tool.Parent = cmdlp.Character
4104 hat.Handle.SpecialMesh:Destroy()
4105 tool.GripPos = Vector3.new(0.5, 2, 0.5)
4106 tool.GripRight = Vector3.new(0, 0, 0)
4107 tool.GripUp = Vector3.new(9, 9, 0)
4108 tool.GripForward = Vector3.new(0, 0, 0)
4109 elseif hat.Name == cmdlp.Name.."'s left ball" then
4110 tool.Name = hat.Name
4111 tool.Parent = cmdlp.Character
4112 hat.Handle.SpecialMesh:Destroy()
4113 tool.GripPos = Vector3.new(0.5, 2, 2.5)
4114 tool.GripRight = Vector3.new(0, 0, 0)
4115 tool.GripUp = Vector3.new(9, 9, 0)
4116 tool.GripForward = Vector3.new(0, 0, 0)
4117 end
4118 local hathandle = hat.Handle
4119 hathandle:FindFirstChildOfClass("Weld"):Destroy()
4120 hathandle.Parent = tool
4121 hathandle.Massless = true
4122 end
4123 end
4124end
4125
4126function useCommand.animation()
4127 if arguments[2] and cmdnum(arguments[2]) then
4128 if cmd6(cmdlp) then
4129 local AnimationId = tostring(arguments[2])
4130 local Animprefix = Instance.new("Animation")
4131 Animprefix.AnimationId = "rbxassetid://"..AnimationId
4132 local animplay = cmdlp.Character.Humanoid:LoadAnimation(Animprefix)
4133 animplay:Play()
4134 if arguments[3] and cmdnum(arguments[3]) then
4135 animplay:AdjustSpeed(arguments[3])
4136 end
4137 opx("-","Now playing animation: "..arguments[2])
4138 else
4139 opx("*","R6 is needed for this command")
4140 end
4141 else
4142 opx("*","2 arguments are needed for this command!")
4143 end
4144end
4145
4146function useCommand.unanimation()
4147 for i,v in pairs(cmdlp.Character.Humanoid:GetPlayingAnimationTracks()) do
4148 v:Stop()
4149 end
4150 opx("-","Stopped all aniamtions")
4151end
4152
4153function useCommand.uninsane()
4154 opx("-","You are no longer insane")
4155 insane:Stop()
4156 Spas:Destroy()
4157end
4158
4159function useCommand.monstermash()
4160 if cmd6(cmdlp) then
4161 local AnimationId = "35654637"
4162 local Anim = Instance.new("Animation")
4163 Anim.AnimationId = "rbxassetid://"..AnimationId
4164 local play = cmdlp.Character.Humanoid:LoadAnimation(Anim)
4165 play:Play()
4166 opx("-","Now playing animation: 35654637")
4167 else
4168 opx("*","R6 is needed for this command")
4169 end
4170end
4171
4172function useCommand.ragdoll()
4173 opx("-","Now ragdolling")
4174 cmdlp.Character.Humanoid.PlatformStand = true
4175end
4176
4177function useCommand.unragdoll()
4178 opx("-","No longer ragdolling")
4179 cmdlp.Character.Humanoid.PlatformStand = false
4180end
4181
4182function useCommand.animpack()
4183 if arguments[2] == "sneaky" then
4184 opx("-","Credit to Zonk and Bannable for the anim exploit")
4185 local Char = game.Players.LocalPlayer.Character
4186 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1132461372"
4187 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1132469004"
4188 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1132473842"
4189 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1132477671"
4190 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1132489853"
4191 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1132494274"
4192 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=1132500520"
4193 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=1132506407"
4194 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1132510133"
4195 elseif arguments[2] == "old" then
4196 opx("-","Credit to Zonk and Bannable for the anim exploit")
4197 local Char = game.Players.LocalPlayer.Character
4198 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=387947158"
4199 Char.Animate.idle.Animation1.Weight.Value = "9"
4200 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=387947464"
4201 Char.Animate.idle.Animation2.Weight.Value = "1"
4202 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=387947975"
4203 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616092998"
4204 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616094091"
4205 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=382460631"
4206 elseif arguments[2] == "toy" then
4207 opx("-","Credit to Zonk and Bannable for the anim exploit")
4208 local Char = cmdlp.Character
4209 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=782843869"
4210 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=782846423"
4211 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=782841498"
4212 Char.Animate.idle.Animation1.Weight.Value = "9"
4213 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=782845736"
4214 Char.Animate.idle.Animation2.Weight.Value = "1"
4215 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=782847020"
4216 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=782842708"
4217 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=782844582"
4218 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=782845186"
4219 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=782843345"
4220 elseif arguments[2] == "pirate" then
4221 opx("-","Credit to Zonk and Bannable for the anim exploit")
4222 local Char = cmdlp.Character
4223 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=750779899"
4224 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=750780242"
4225 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=750781874"
4226 Char.Animate.idle.Animation1.Weight.Value = "9"
4227 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=750782770"
4228 Char.Animate.idle.Animation2.Weight.Value = "1"
4229 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=750782230"
4230 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=750783738"
4231 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=750784579"
4232 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=750785176"
4233 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=750785693"
4234 elseif arguments[2] == "knight" then
4235 opx("-","Credit to Zonk and Bannable for the anim exploit")
4236 local Char = cmdlp.Character
4237 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=658360781"
4238 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=657600338"
4239 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=657595757"
4240 Char.Animate.idle.Animation1.Weight.Value = "9"
4241 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=657568135"
4242 Char.Animate.idle.Animation2.Weight.Value = "1"
4243 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=658409194"
4244 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=657564596"
4245 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=657560551"
4246 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=657557095"
4247 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=657552124"
4248 elseif arguments[2] == "astronaut" then
4249 opx("-","Credit to Zonk and Bannable for the anim exploit")
4250 local Char = cmdlp.Character
4251 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=891609353"
4252 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=891617961"
4253 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=891621366"
4254 Char.Animate.idle.Animation1.Weight.Value = "9"
4255 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=891633237"
4256 Char.Animate.idle.Animation2.Weight.Value = "1"
4257 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=891627522"
4258 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=891636393"
4259 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=891639666"
4260 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=891663592"
4261 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=891636393"
4262 elseif arguments[2] == "vampire" then
4263 opx("-","Credit to Zonk and Bannable for the anim exploit")
4264 local Char = cmdlp.Character
4265 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1083439238"
4266 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1083443587"
4267 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1083445855"
4268 Char.Animate.idle.Animation1.Weight.Value = "9"
4269 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1083450166"
4270 Char.Animate.idle.Animation2.Weight.Value = "1"
4271 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1083455352"
4272 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1083462077"
4273 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=1083464683"
4274 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=1083467779"
4275 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1083473930"
4276 elseif arguments[2] == "robot" then
4277 opx("-","Credit to Zonk and Bannable for the anim exploit")
4278 local Char = cmdlp.Character
4279 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616086039"
4280 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616087089"
4281 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616088211"
4282 Char.Animate.idle.Animation1.Weight.Value = "9"
4283 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616089559"
4284 Char.Animate.idle.Animation2.Weight.Value = "1"
4285 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616090535"
4286 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616091570"
4287 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616092998"
4288 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616094091"
4289 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616095330"
4290 elseif arguments[2] == "levitation" then
4291 opx("-","Credit to Zonk and Bannable for the anim exploit")
4292 local Char = cmdlp.Character
4293 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616003713"
4294 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616005863"
4295 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616006778"
4296 Char.Animate.idle.Animation1.Weight.Value = "9"
4297 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616008087"
4298 Char.Animate.idle.Animation2.Weight.Value = "1"
4299 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616008936"
4300 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616010382"
4301 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616011509"
4302 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616012453"
4303 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616013216"
4304 elseif arguments[2] == "bubbly" then
4305 opx("-","Credit to Zonk and Bannable for the anim exploit")
4306 local Char = cmdlp.Character
4307 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=909997997"
4308 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=910001910"
4309 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=910004836"
4310 Char.Animate.idle.Animation1.Weight.Value = "9"
4311 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=910009958"
4312 Char.Animate.idle.Animation2.Weight.Value = "1"
4313 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=910016857"
4314 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=910025107"
4315 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=910028158"
4316 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=910030921"
4317 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=910034870"
4318 elseif arguments[2] == "werewolf" then
4319 opx("-","Credit to Zonk and Bannable for the anim exploit")
4320 local Char = cmdlp.Character
4321 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1083182000"
4322 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1083189019"
4323 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1083195517"
4324 Char.Animate.idle.Animation1.Weight.Value = "9"
4325 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1083214717"
4326 Char.Animate.idle.Animation2.Weight.Value = "1"
4327 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1083218792"
4328 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1083216690"
4329 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=1083222527"
4330 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=1083225406"
4331 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1083178339"
4332 elseif arguments[2] == "stylish" then
4333 opx("-","Credit to Zonk and Bannable for the anim exploit")
4334 local Char = cmdlp.Character
4335 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616133594"
4336 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616134815"
4337 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616136790"
4338 Char.Animate.idle.Animation1.Weight.Value = "9"
4339 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616138447"
4340 Char.Animate.idle.Animation2.Weight.Value = "1"
4341 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616139451"
4342 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616140816"
4343 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616143378"
4344 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616144772"
4345 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616146177"
4346 elseif arguments[2] == "mage" then
4347 opx("-","Credit to Zonk and Bannable for the anim exploit")
4348 local Char = cmdlp.Character
4349 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=707826056"
4350 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=707829716"
4351 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=707742142"
4352 Char.Animate.idle.Animation1.Weight.Value = "9"
4353 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=707855907"
4354 Char.Animate.idle.Animation2.Weight.Value = "1"
4355 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=707853694"
4356 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=707861613"
4357 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=707876443"
4358 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=707894699"
4359 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=707897309"
4360 elseif arguments[2] == "cartoony" then
4361 opx("-","Credit to Zonk and Bannable for the anim exploit")
4362 local Char = cmdlp.Character
4363 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=742636889"
4364 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=742637151"
4365 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=742637544"
4366 Char.Animate.idle.Animation1.Weight.Value = "9"
4367 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=742638445"
4368 Char.Animate.idle.Animation2.Weight.Value = "1"
4369 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=742637942"
4370 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=742638842"
4371 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=742639220"
4372 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=742639812"
4373 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=742640026"
4374 elseif arguments[2] == "zombie" then
4375 opx("-","Credit to Zonk and Bannable for the anim exploit")
4376 local Char = cmdlp.Character
4377 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616156119"
4378 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616157476"
4379 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616158929"
4380 Char.Animate.idle.Animation1.Weight.Value = "9"
4381 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616160636"
4382 Char.Animate.idle.Animation2.Weight.Value = "1"
4383 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616161997"
4384 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616163682"
4385 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616165109"
4386 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616166655"
4387 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616168032"
4388 elseif arguments[2] == "superhero" then
4389 opx("-","Credit to Zonk and Bannable for the anim exploit")
4390 local Char = cmdlp.Character
4391 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616104706"
4392 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616108001"
4393 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616111295"
4394 Char.Animate.idle.Animation1.Weight.Value = "9"
4395 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616113536"
4396 Char.Animate.idle.Animation2.Weight.Value = "1"
4397 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616115533"
4398 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616117076"
4399 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=616119360"
4400 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=616120861"
4401 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616122287"
4402 elseif arguments[2] == "ninja" then
4403 opx("-","Credit to Zonk and Bannable for the anim exploit")
4404 local Char = cmdlp.Character
4405 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=656114359"
4406 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=656115606"
4407 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=656117400"
4408 Char.Animate.idle.Animation1.Weight.Value = "9"
4409 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=656118341"
4410 Char.Animate.idle.Animation2.Weight.Value = "1"
4411 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=656117878"
4412 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=656118852"
4413 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=656119721"
4414 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=656121397"
4415 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=656121766"
4416 elseif arguments[2] == "elder" then
4417 opx("-","Credit to Zonk and Bannable for the anim exploit")
4418 local Char = cmdlp.Character
4419 Char.Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=845392038"
4420 Char.Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=845396048"
4421 Char.Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=845397899"
4422 Char.Animate.idle.Animation1.Weight.Value = "9"
4423 Char.Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=845400520"
4424 Char.Animate.idle.Animation2.Weight.Value = "1"
4425 Char.Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=845398858"
4426 Char.Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=845386501"
4427 Char.Animate.swim.Swim.AnimationId = "http://www.roblox.com/asset/?id=845401742"
4428 Char.Animate.swimidle.SwimIdle.AnimationId = "http://www.roblox.com/asset/?id=845403127"
4429 Char.Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=845403856"
4430 else
4431 opx("*","2 arguments are required for this command!")
4432 end
4433end
4434
4435function useCommand.spin()
4436 local Spin = Instance.new("BodyAngularVelocity", cmdlp.Character.HumanoidRootPart)
4437 Spin.Name = "Spinning"
4438 if arguments[2] then
4439 if cmdnum(arguments[2]) then
4440 Spin.AngularVelocity = Vector3.new(0,arguments[2],0)
4441 Spin.MaxTorque = Vector3.new(0, math.huge, 0)
4442 opx("-","Now spinning at speed: "..arguments[2])
4443 else
4444 opx("*","A number is needed")
4445 end
4446 else
4447 Spin.AngularVelocity = Vector3.new(0,20,0)
4448 Spin.MaxTorque = Vector3.new(0, math.huge, 0)
4449 opx("-","Now spinning")
4450 end
4451end
4452
4453function useCommand.unspin()
4454 opx("-","Stopped spinning")
4455 for i,v in pairs(cmdlp.Character.HumanoidRootPart:GetChildren()) do
4456 if v.Name == "Spinning" then
4457 v:Destroy()
4458 end
4459 end
4460end
4461
4462function useCommand.hatspin()
4463 opx("-","Hats are now spinning")
4464 for i,v in pairs(cmdlp.Character:GetChildren()) do
4465 if v:IsA("Accessory") then
4466 local findForce = v.Handle:FindFirstChildOfClass("BodyForce")
4467 if findForce == nil then
4468 local a = Instance.new("BodyPosition")
4469 local b = Instance.new("BodyAngularVelocity")
4470 a.Parent = v.Handle
4471 b.Parent = v.Handle
4472 a.Name = "un"
4473 b.Name = "un2"
4474 v.Handle.AccessoryWeld.Parent = cmdlp
4475 b.AngularVelocity = Vector3.new(0,100,0)
4476 b.MaxTorque = Vector3.new(0,200,0)
4477 a.P = 30000
4478 a.D = 50
4479 game:GetService('RunService').Stepped:connect(function()
4480 a.Position = cmdlp.Character.Head.Position
4481 end)
4482 end
4483 end
4484 end
4485end
4486
4487function useCommand.unhatspin()
4488 opx("-","Stopped spinning hats")
4489 for i,v in pairs(cmdlp.Character:GetChildren()) do
4490 if v:IsA("Accessory") then
4491 v.Handle.un:Destroy()
4492 v.Handle.un2:Destroy()
4493 v.Parent = cmdlp.Character
4494 cmdlp.AccessoryWeld.Parent = v.Handle
4495 end
4496 end
4497end
4498
4499local ff = false
4500function useCommand.facefuck()
4501 if arguments[2] then
4502 target = findplr(arguments[2])
4503 if target ~= nil then
4504 if target.Character and target.Character:FindFirstChild('Humanoid') then
4505 if ff == true then
4506 ff = false
4507 opx("-","Stopped facefucking/faceraping")
4508 cmdlp.Character.Humanoid.Sit = false
4509 return
4510 else ff = true
4511 opx("-","Facefucking/faceraping enabled")
4512 while ff == true do
4513 cmdlp.Character.Humanoid.Sit = true
4514 cmdlp.Character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame * CFrame.Angles(0,math.rad(180),0)* CFrame.new(0,1.6,0.4)
4515 wait()
4516 end
4517 end
4518 end
4519 else
4520 opx("*","Player does not exist!")
4521 end
4522 else
4523 opx("*","2 arguments are needed for this command!")
4524 end
4525end
4526
4527function useCommand.unfacefuck()
4528 opx("-","Stopped facefucking/faceraping")
4529 cmdlp.Character.Humanoid.Sit = false
4530 ff = false
4531end
4532
4533local ff2 = false
4534function useCommand.facefuckanim()
4535 if arguments[2] then
4536 target = findplr(arguments[2])
4537 if target ~= nil then
4538 facebangAnim = Instance.new("Animation")
4539 facebangAnim.AnimationId = "rbxassetid://148840371"
4540 facebang = cmdlp.Character.Humanoid:LoadAnimation(facebangAnim)
4541 facebang:Play(.1, 1, 1)
4542 facebang:AdjustSpeed(3)
4543 if target.Character and target.Character:FindFirstChild('Humanoid') then
4544 if ff2 == true then
4545 ff2 = false
4546 opx("-","Stopped facefucking/faceraping")
4547 return
4548 else ff2 = true
4549 opx("-","Facefucking/faceraping enabled")
4550 while ff2 == true do
4551 cmdlp.Character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame * CFrame.Angles(0,math.rad(180),0)* CFrame.new(0.4,1.6,0.4)
4552 wait()
4553 end
4554 end
4555 end
4556 else
4557 opx("*","Player does not exist!")
4558 end
4559 else
4560 opx("*","2 arguments are needed for this command!")
4561 end
4562end
4563
4564function useCommand.unfacefuckanim()
4565 ff2 = false
4566 facebang:Stop()
4567 facebang:Destroy()
4568 opx("-","Stopped facefucking/faceraping")
4569end
4570
4571local pb = false
4572function useCommand.piggyback()
4573 if arguments[2] then
4574 target = findplr(arguments[2])
4575 if target ~= nil then
4576 if target.Character and target.Character:FindFirstChild('Humanoid') then
4577 if pb == true then
4578 pb = false
4579 opx("-","Stopped riding/piggybacking")
4580 cmdlp.Character.Humanoid.Sit = false
4581 return
4582 else pb = true
4583 opx("-","Riding/piggybacking enabled")
4584 while pb == true do
4585 cmdlp.Character.Humanoid.Sit = true
4586 cmdlp.Character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame * CFrame.Angles(0,math.rad(0),0)* CFrame.new(0,1.6,0.4)
4587 wait()
4588 end
4589 end
4590 end
4591 else
4592 opx("*","Player does not exist!")
4593 end
4594 else
4595 opx("*","2 arguments are needed for this command!")
4596 end
4597end
4598
4599function useCommand.unpiggyback()
4600 opx("-","Stopped piggybacking/riding")
4601 pb = false
4602 cmdlp.Character.Humanoid.Sit = false
4603end
4604
4605local Bang = false
4606function useCommand.fuck()
4607 if arguments[2] then
4608 target = findplr(arguments[2])
4609 if target ~= nil then
4610 flwnum = -1
4611 bangAnim = Instance.new("Animation")
4612 bangAnim.AnimationId = "rbxassetid://148840371"
4613 bang = cmdlp.Character.Humanoid:LoadAnimation(bangAnim)
4614 bang:Play(.1, 1, 1)
4615 bang:AdjustSpeed(3)
4616 if target.Character and target.Character:FindFirstChild('Humanoid') then
4617 if Bang == true then
4618 Follow = false
4619 Bang = false
4620 opx("-","Fuck/rape disabled")
4621 return
4622 else Bang = true
4623 opx("-","Fuck/rape enabled")
4624 while Bang == true do
4625 cmdlp.Character.HumanoidRootPart.CFrame=
4626 target.Character.HumanoidRootPart.CFrame + target.Character.HumanoidRootPart.CFrame.lookVector * flwnum
4627 wait()
4628 end
4629 end
4630 end
4631 else
4632 opx("*","Player does not exist!")
4633 end
4634 else
4635 opx("*","2 arguments are needed for this command!")
4636 end
4637end
4638
4639function useCommand.unfuck()
4640 bang:Stop()
4641 bangAnim:Destroy()
4642 Bang = false
4643 opx("-","Rape/fuck disabled")
4644end
4645
4646local Follow = false
4647function useCommand.follow()
4648 if arguments[2] then
4649 target = findplr(arguments[2])
4650 if target ~= nil then
4651 flwnum = -5
4652 if target.Character and target.Character:FindFirstChild('Humanoid') then
4653 if Follow == true then
4654 Follow = false;
4655 opx("-","Follow/stalk disabled")
4656 return
4657 else Follow = true
4658 opx("-","Follow/stalk enabled")
4659 end
4660 while Follow == true do
4661 cmdlp.Character.HumanoidRootPart.CFrame=
4662 target.Character.HumanoidRootPart.CFrame + target.Character.HumanoidRootPart.CFrame.lookVector * flwnum
4663 wait()
4664 end
4665 end
4666 else
4667 opx("*","Player does not exist!")
4668 end
4669 else
4670 opx("*","2 arguments are needed for this command!")
4671 end
4672end
4673
4674function useCommand.unfollow()
4675 Follow = false
4676 opx("-","Stalk/follow disabled")
4677end
4678
4679function useCommand.oldroblox()
4680 for i,v in pairs(workspace:GetDescendants()) do
4681 if v:IsA("BasePart") then
4682 local dec = Instance.new("Texture", v)
4683 dec.Texture = "rbxassetid://48715260"
4684 dec.Face = "Top"
4685 dec.StudsPerTileU = "1"
4686 dec.StudsPerTileV = "1"
4687 dec.Transparency = v.Transparency
4688 v.Material = "Plastic"
4689 local dec2 = Instance.new("Texture", v)
4690 dec2.Texture = "rbxassetid://20299774"
4691 dec2.Face = "Bottom"
4692 dec2.StudsPerTileU = "1"
4693 dec2.StudsPerTileV = "1"
4694 dec2.Transparency = v.Transparency
4695 v.Material = "Plastic"
4696 end
4697 end
4698 game.Lighting.ClockTime = 12
4699 game.Lighting.GlobalShadows = false
4700 game.Lighting.Outlines = false
4701 for i,v in pairs(game.Lighting:GetDescendants()) do
4702 if v:IsA("Sky") then
4703 v:Destroy()
4704 end
4705 end
4706 local sky = Instance.new("Sky", game.Lighting)
4707 sky.SkyboxBk = "rbxassetid://161781263"
4708 sky.SkyboxDn = "rbxassetid://161781258"
4709 sky.SkyboxFt = "rbxassetid://161781261"
4710 sky.SkyboxLf = "rbxassetid://161781267"
4711 sky.SkyboxRt = "rbxassetid://161781268"
4712 sky.SkyboxUp = "rbxassetid://161781260"
4713 opx("-","Old Roblox game theme loaded")
4714end
4715
4716function useCommand.savegame()
4717 opx("-","Saving game in your workspace folder")
4718 saveinstance()
4719end
4720
4721function useCommand.btools()
4722 opx("-","Btools are in your backpack")
4723 local Clone_T = Instance.new("HopperBin",cmdlp.Backpack)
4724 Clone_T.BinType = "Clone"
4725 local Destruct = Instance.new("HopperBin",cmdlp.Backpack)
4726 Destruct.BinType = "Hammer"
4727 local Hold_T = Instance.new("HopperBin",cmdlp.Backpack)
4728 Hold_T.BinType = "Grab"
4729end
4730
4731function useCommand.fex()
4732 opx("Broken, sorry :(")
4733end
4734
4735function useCommand.remotespy()
4736 opx("-","Loading Mr Spy")
4737 loadstring(game:HttpGet("https://pastebin.com/raw/FEKUsHdA", true))()
4738 opx("-","Mr Spy has loaded")
4739end
4740
4741function useCommand.badger()
4742 opx("-","Loading Badger V2")
4743 loadstring(game:HttpGet("https://pastebin.com/raw/AZgbkVzN",true))()
4744 opx("-","Loaded Badger V2")
4745end
4746
4747function useCommand.explorer()
4748 opx("-","Loading DEX")
4749 loadstring(game:GetObjects("rbxassetid://418957341")[1].Source)()
4750 opx("-","DEX has been loaded")
4751end
4752
4753function useCommand.removeeffects()
4754 opx("-","Removed all effects")
4755 for i,v in pairs(game:GetDescendants()) do
4756 if v:IsA("Sparkles") or v:IsA("ParticleEmitter") or v:IsA("Fire") or v:IsA("Smoke") then
4757 v:Destroy()
4758 end
4759 end
4760end
4761
4762function useCommand.removeseats()
4763 for i,v in pairs(workspace:GetDescendants()) do
4764 if v:IsA("Seat") then
4765 v:Destroy()
4766 end
4767 end
4768 opx("-","Removed all seats")
4769end
4770
4771function useCommand.removelocalscripts()
4772 opx("-","Removed all localscripts")
4773 for i,ls in pairs(game:GetDescendants()) do
4774 if ls:IsA("LocalScript") then
4775 ls:Destroy()
4776 end
4777 end
4778end
4779
4780function useCommand.xray()
4781 transparent = true
4782 x(transparent)
4783 opx("-","X-Ray enabled")
4784end
4785
4786function useCommand.unxray()
4787 transparent = false
4788 x(transparent)
4789 opx("-","X-Ray disabled")
4790end
4791
4792function useCommand.lockws()
4793 opx("-","Locked workspace")
4794 for i,v in pairs(cmdws:GetDescendants()) do
4795 if v:IsA("BasePart") then
4796 v.Locked = true
4797 end
4798 end
4799end
4800
4801function useCommand.unlockws()
4802 opx("-","Locked workspace")
4803 for i,v in pairs(cmdws:GetDescendants()) do
4804 if v:IsA("BasePart") then
4805 v.Locked = false
4806 end
4807 end
4808end
4809
4810function useCommand.day()
4811 opx("-","It is now day")
4812 cmdl.ClockTime = 14
4813end
4814
4815function useCommand.night()
4816 opx("-","It is now night")
4817 cmdl.ClockTime = 0
4818end
4819
4820function useCommand.removesky()
4821 opx("-","You have removed the skybox")
4822 for i,v in pairs(cmdl:GetChildren()) do
4823 if v:IsA("Sky") then
4824 v:Destroy()
4825 end
4826 end
4827end
4828
4829function useCommand.restorelighting()
4830 cmdl.Ambient = Color3.new(0.715, 0.715, 0.715)
4831 cmdl.Brightness = 1
4832 cmdl.ClockTime = 14
4833 cmdl.ColorShift_Bottom = Color3.new(0, 0, 0)
4834 cmdl.ColorShift_Top = Color3.new(0, 0, 0)
4835 cmdl.ExposureCompensation = 0
4836 cmdl.FogColor = Color3.new(0.754, 0.754, 0.754)
4837 cmdl.FogEnd = 100000
4838 cmdl.FogStart = 0
4839 cmdl.GeographicLatitude = 41.73
4840 cmdl.GlobalShadows = false
4841 cmdl.OutdoorAmbient = Color3.new(0.400, 0.400, 0.400)
4842 cmdl.Outlines = true
4843 opx("-","Restored lighting to original settings")
4844end
4845
4846function useCommand.restorecamera()
4847 opx("-","Restored camera to original settings")
4848 workspace.Camera.FieldOfView = 70
4849 workspace.Camera.CameraType = "Track"
4850 cmdlp.CameraMaxZoomDistance = 400
4851 cmdlp.CameraMinZoomDistance = 0.5
4852 cmdlp.CameraMode = "Classic"
4853 cmdlp.EnableMouseLockOption = true
4854end
4855
4856function useCommand.unscramble()
4857 opx("-","Unscrambled names")
4858 for i,v in pairs(game:GetDescendants()) do
4859 if v:IsA("Workspace") or v:IsA("Camera") or v:IsA("Players") or v:IsA("Lighting") or v:IsA("ReplicatedStorage") or v:IsA("StarterPlayer") then
4860 v.Name = v.ClassName
4861 end
4862 end
4863end
4864
4865function useCommand.removeinviswalls()
4866 opx("-","Removed invisible walls")
4867 for i,v in pairs(workspace:GetDescendants()) do
4868 if v:IsA("BasePart") and v.Name ~= "HumanoidRootPart" then
4869 if v.Transparency == 1 then
4870 v:Destroy()
4871 end
4872 end
4873 end
4874end
4875
4876function useCommand.gameinfo()
4877 opx("-","Game info opened")
4878 function getAsset(ID)
4879 return("http://www.roblox.com/Thumbs/Asset.ashx?format=png&width=420&height=230&assetId="..ID)
4880 end
4881 gameframe.Visible = true
4882 gameframe:TweenSize(UDim2.new(0,300,0,433), Enum.EasingDirection.In, Enum.EasingStyle.Quad, .5)
4883 gameimage.Image = getAsset(game.PlaceId)
4884 local GetName = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId)
4885 gameview.Text = "You are playing "..GetName.Name
4886 gameid.Text = "ID of game: "..game.PlaceId
4887 uptime.Text = "Uptime (s): "..workspace.DistributedGameTime
4888 if workspace.FilteringEnabled == true then
4889 fecheck.Text = "Filtering is enabled"
4890 else
4891 fecheck.Text = "Filtering is disabled"
4892 end
4893end
4894
4895function useCommand.closegameinfo()
4896 opx("-","Game info closed")
4897 gameframe.Visible = false
4898end
4899
4900function useCommand.math()
4901 if arguments[4] then
4902 if arguments[3] == "+" then
4903 local add = arguments[2] + arguments[4]
4904 opx("-",arguments[2].." + "..arguments[4].." = "..add)
4905 if arguments[5] == "cb" or arguments[5] == "copy" then
4906 setclipboard(arguments[2].." + "..arguments[4].." = "..add)
4907 end
4908 elseif arguments[3] == "-" then
4909 local subtract = arguments[2] - arguments[4]
4910 opx("-",arguments[2].." - "..arguments[4].." = "..subtract)
4911 if arguments[5] == "cb" or arguments[5] == "copy" then
4912 setclipboard(arguments[2].." - "..arguments[4].." = "..subtract)
4913 end
4914 elseif arguments[3] == "/" then
4915 local divide = arguments[2] / arguments[4]
4916 opx("-",arguments[2].." / "..arguments[4].." = "..divide)
4917 if arguments[5] == "cb" or arguments[5] == "copy" then
4918 setclipboard(arguments[2].." / "..arguments[4].." = "..divide)
4919 end
4920 elseif arguments[3] == "*" then
4921 local times = arguments[2] * arguments[4]
4922 opx("-",arguments[2].." * "..arguments[4].." = "..times)
4923 if arguments[5] == "cb" or arguments[5] == "copy" then
4924 setclipboard(arguments[2].." * "..arguments[4].." = "..times)
4925 end
4926 else
4927 opx("*","A proper multiplication sign is needed!")
4928 end
4929 else
4930 opx("*","2 numbers and a multiplication sign is needed")
4931 end
4932end
4933
4934function useCommand.hidechat()
4935 opx("-","Chat is disabled")
4936 game:GetService("StarterGui"):SetCoreGuiEnabled('Chat', false)
4937end
4938
4939function useCommand.showchat()
4940 opx("-","Chat is enabled")
4941 game:GetService("StarterGui"):SetCoreGuiEnabled('Chat', true)
4942end
4943
4944function useCommand.switchteam()
4945 if arguments[2] then
4946 opx("-","Switched team to: "..arguments[2])
4947 cmdlp.Team = arguments[2]
4948 else
4949 opx("*","2 arguments are needed for this command!")
4950 end
4951end
4952
4953function useCommand.ping()
4954 local ping = (1/wait())
4955 local pingexact = string.sub(ping,0,4)
4956 opx("-","Pong! Your ping is "..pingexact.."ms")
4957end
4958
4959function useCommand.fps()
4960 opx("-","FPS will now show - Credit to Curvn")
4961 local ToolNameGrabber = Instance.new("ScreenGui")
4962 local ToolNameTxt = Instance.new("TextLabel")
4963 local player = game.Players.LocalPlayer
4964 ToolNameGrabber.Name = "ToolNameGrabber"
4965 ToolNameGrabber.Parent = game.CoreGui
4966 ToolNameGrabber.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
4967 ToolNameGrabber.Enabled = true
4968 ToolNameTxt.Name = "ToolNameTxt"
4969 ToolNameTxt.Parent = ToolNameGrabber
4970 ToolNameTxt.BackgroundColor3 = Color3.new(1, 1, 1)
4971 ToolNameTxt.BackgroundTransparency = 1
4972 ToolNameTxt.BorderColor3 = Color3.new(0, 0, 0)
4973 ToolNameTxt.Position = UDim2.new(0.894944727, 0, 0.952606618, 0)
4974 ToolNameTxt.Size = UDim2.new(0, 133, 0, 30)
4975 ToolNameTxt.Font = Enum.Font.GothamSemibold
4976 ToolNameTxt.Text = "TextLabel"
4977 ToolNameTxt.TextColor3 = Color3.new(1, 1, 1)
4978 ToolNameTxt.TextScaled = true
4979 ToolNameTxt.TextSize = 14
4980 ToolNameTxt.TextWrapped = true
4981 ToolNameTxt.Visible = true
4982 local FpsLabel = ToolNameTxt
4983 local Heartbeat = game:GetService("RunService").Heartbeat
4984 local LastIteration, Start
4985 local FrameUpdateTable = { }
4986 local function HeartbeatUpdate()
4987 LastIteration = tick()
4988 for Index = #FrameUpdateTable, 1, -1 do
4989 FrameUpdateTable[Index + 1] = (FrameUpdateTable[Index] >= LastIteration - 1) and FrameUpdateTable[Index] or nil
4990 end
4991 FrameUpdateTable[1] = LastIteration
4992 local CurrentFPS = (tick() - Start >= 1 and #FrameUpdateTable) or (#FrameUpdateTable / (tick() - Start))
4993 CurrentFPS = CurrentFPS - CurrentFPS % 1
4994 FpsLabel.Text = "" .. CurrentFPS .. " FPS"
4995 end
4996 Start = tick()
4997 Heartbeat:Connect(HeartbeatUpdate)
4998end
4999
5000function useCommand.unfps()
5001 opx("-","No longer showing FPS")
5002 game.CoreGui.ToolNameGrabber:Destroy()
5003end
5004
5005function useCommand.fuckoff()
5006 opx("-","You can fuck off too!")
5007 getParent.Unnamed:Destroy()
5008end
5009
5010function useCommand.messagebox()
5011 if messageboxasync then
5012 opx("-","Opened message box, "..getstring(2))
5013 messageboxasync(getstring(2), "CMD-X Message", 262148)
5014 else
5015 opx("*","Your exploit does not support messageboxes!")
5016 end
5017end
5018
5019function useCommand.fe()
5020 if workspace.FilteringEnabled == true then
5021 opx("-","Filtering is enabled")
5022 else
5023 opx("*","Filtering is disabled")
5024 end
5025end
5026
5027function useCommand.gameid()
5028 opx("-","The games id you are playing on is "..game.PlaceId)
5029end
5030
5031function useCommand.error()
5032 if arguments[2] then
5033 local errorstring = getstring(2)
5034 opx("-","Errored "..errorstring.." to console")
5035 error(errorstring)
5036 else
5037 opx("*","Error is missing text")
5038 end
5039end
5040
5041function useCommand.print()
5042 if arguments[2] then
5043 local printstring = getstring(2)
5044 opx("-","Printed "..printstring.." to console")
5045 print(printstring)
5046 else
5047 opx("*","Print is missing text")
5048 end
5049end
5050
5051function useCommand.warn()
5052 if arguments[2] then
5053 local warnstring = getstring(2)
5054 opx("-","Warned "..warnstring.." to console")
5055 warn(warnstring)
5056 else
5057 opx("*","Warn is missing text")
5058 end
5059end
5060
5061function useCommand.output()
5062 if arguments[2] then
5063 local outputstring = getstring(2)
5064 opx("-",outputstring)
5065 else
5066 opx("*","Output is missing text")
5067 end
5068end
5069
5070function useCommand.forceshiftlock()
5071 cmdlp.DevEnableMouseLock = true
5072 opx("-","Shift lock has been force enabled")
5073end
5074
5075function useCommand.maxcamunlock()
5076 opx("-","Unlocked camera lock")
5077 cmdlp.CameraMaxZoomDistance = 100000
5078end
5079
5080function useCommand.position()
5081 if cmdlp.Character and cmdlp.Character:FindFirstChild("HumanoidRootPart") then
5082 local pos = tostring(cmdlp.Character.HumanoidRootPart.Position)
5083 opx("-","Your position is "..pos)
5084 if arguments[2] == "cb" or arguments[2] == "copy" then
5085 setclipboard(pos)
5086 end
5087 end
5088end
5089
5090function useCommand.audiolog()
5091 if arguments[2] then
5092 target = findplr(arguments[2])
5093 if target ~= nil then
5094 for i,logger in pairs(target.Character:GetChildren()) do
5095 if logger.Name == "SuperFlyGoldBoombox" or logger.Name == "Boombox" or logger.Name == "Music" or logger.Name == "Radio" then
5096 opx("-","Users audio is "..logger.Handle.Sound.SoundId)
5097 if arguments[3] == "cb" or arguments[2] == "copy" then
5098 setclipboard(logger.Handle.Sound.SoundId)
5099 end
5100 else
5101 opx("*","Something went wrong")
5102 end
5103 end
5104 else
5105 opx("*","Player does not exist!")
5106 end
5107 else
5108 opx("*","2 arguments are needed for this command!")
5109 end
5110end
5111
5112local bobbleEffect = false
5113function useCommand.cambobble()
5114 opx("-","Now bobbling camera")
5115 bobbleEffect = true
5116 local RunService = game:GetService("RunService")
5117 local function updateBobbleEffect()
5118 local now = tick()
5119 if cmdh.MoveDirection.Magnitude > 0 then
5120 local velocity = cmdh.RootPart.Velocity
5121 local bobble_X = math.cos(now * 9) / 5
5122 local bobble_Y = math.abs(math.sin(now * 12)) / 5
5123 local bobble = Vector3.new(bobble_X,bobble_Y,0) * math.min(1, velocity.Magnitude / cmdh.WalkSpeed)
5124 cmdh.CameraOffset = cmdh.CameraOffset:lerp(bobble,.25)
5125 else
5126 cmdh.CameraOffset = cmdh.CameraOffset * 0.75
5127 end
5128 end
5129 while bobbleEffect == true do
5130 wait()
5131 updateBobbleEffect()
5132 end
5133end
5134
5135function useCommand.uncambobble()
5136 opx("-","Now longer bobbling camera")
5137 bobbleEffect = false
5138end
5139
5140local moveToMouse = false
5141function useCommand.grapple()
5142 opx("-","Now grappling")
5143 moveToMouse = true
5144 local bpNew = Instance.new("BodyPosition",cmdlp.Character.HumanoidRootPart)
5145 while moveToMouse == true do
5146 wait()
5147 local mousePosY = cmdm.Hit.Y
5148 local mousePosX = cmdm.Hit.X
5149 local mousePosZ = cmdm.Hit.Z
5150 bpNew.Position = Vector3.new(mousePosX,mousePosY,mousePosZ)
5151 end
5152end
5153
5154function useCommand.ungrapple()
5155 opx("-","No longer grappling")
5156 moveToMouse = false
5157 cmdlp.Character.HumanoidRootPart.BodyPosition:Destroy()
5158end
5159
5160function useCommand.remind()
5161 if arguments[4] then
5162 local timeCall = arguments[2]
5163 local reminderCall = getstring(4)
5164 if arguments[3] == "second" or arguments[3] == "sec" or arguments[3] == "s" then
5165 opx("-","You will be reminded about '"..reminderCall.."' in "..timeCall.."s")
5166 wait(timeCall)
5167 elseif arguments[3] == "minute" or arguments[3] == "min" or arguments[3] == "m" then
5168 opx("-","You will be reminded about '"..reminderCall.."' in "..timeCall.."m")
5169 wait(timeCall * 60)
5170 elseif arguments[3] == "hour" or arguments[3] == "hr" or arguments[3] == "h" then
5171 opx("-","You will be reminded about '"..reminderCall.."' in "..timeCall.."h")
5172 wait(timeCall * 3600)
5173 end
5174 output9.Text = output8.Text
5175 output8.Text = output7.Text
5176 output7.Text = output6.Text
5177 output6.Text = output5.Text
5178 output5.Text = output4.Text
5179 output4.Text = output3.Text
5180 output3.Text = output2.Text
5181 output2.Text = output1.Text
5182 opx("-","Reminder ("..timeCall.."): "..reminderCall)
5183 else
5184 opx("*","You need 4 arguments for this command")
5185 end
5186end
5187
5188local step = false
5189function useCommand.step()
5190 step = true
5191 repeat wait()
5192 local currentTorso = nil
5193 function findT()
5194 if cmdlp.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
5195 currentTorso = cmdlp.Character.UpperTorso
5196 elseif cmdlp.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
5197 currentTorso = cmdlp.Character.Torso
5198 end
5199 end
5200 findT()
5201 if currentTorso == nil then
5202 findT()
5203 end
5204 currentTorso.Touched:Connect(function(hit)
5205 local cmdlpHRP = cmdlp.Character.HumanoidRootPart
5206 if hit:IsA("BasePart") and hit.Position.Y > cmdlpHRP.Position.Y - cmdlp.Character.Humanoid.HipHeight then
5207 local findHRP = hit.Parent:FindFirstChild("HumanoidRootPart")
5208 if findHRP ~= nil then
5209 cmdlpHRP.CFrame = hit.CFrame * CFrame.new(cmdlpHRP.CFrame.lookVector.X,findHRP.Size.Z/2 + cmdlp.Character.Humanoid.HipHeight,cmdlpHRP.CFrame.lookVector.Z)
5210 elseif findHRP == nil then
5211 cmdlpHRP.CFrame = hit.CFrame * CFrame.new(cmdlpHRP.CFrame.lookVector.X,hit.Size.Y/2 + cmdlp.Character.Humanoid.HipHeight,cmdlpHRP.CFrame.lookVector.Z)
5212 end
5213 end
5214 end)
5215 until step == false
5216 opx("-","Step enabled")
5217end
5218
5219function useCommand.unstep()
5220 step = false
5221 opx("-","Step disabled")
5222end
5223
5224function useCommand.antiafk()
5225 opx("-","You will now no longer idle in games")
5226 cmdlp.Idled:connect(function()
5227 cmdvu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
5228 wait(1)
5229 cmdvu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
5230 end)
5231end
5232
5233local nosit = false
5234function useCommand.nosit()
5235 nosit = true
5236 opx("-","Nosit enabled")
5237 while nosit == true do
5238 wait()
5239 if cmdlp.Character.Humanoid.Sit == true then
5240 cmdlp.Character.Humanoid.Sit = false
5241 end
5242 end
5243end
5244
5245function useCommand.yessit()
5246 nosit = false
5247 opx("-","Nosit disabled")
5248end
5249
5250local nostun = false
5251function useCommand.nostun()
5252 nostun = true
5253 opx("-","Nostun enabled")
5254 while nostun == true do
5255 wait()
5256 if cmdlp.Character.Humanoid.PlatformStand == true then
5257 cmdlp.Character.Humanoid.PlatformStand = false
5258 end
5259 end
5260end
5261
5262function useCommand.yesstun()
5263 nostun = false
5264 opx("-","Nostun disabled")
5265end
5266
5267function useCommand.badges()
5268 opx("-","Collecting badges (if there is any)")
5269 for i,v in pairs(workspace:GetDescendants()) do
5270 if v.Name == "BadgeAwarder" or v.Name == "Platform" then
5271 v.CFrame = cmdlp.Character.HumanoidRootPart.CFrame
5272 v.CanCollide = false
5273 elseif v.Name == "BadgeAwarderScript" then
5274 v.Parent.CFrame = cmdlp.Character.HumanoidRootPart.CFrame
5275 v.CanCollide = false
5276 end
5277 end
5278end
5279
5280local spawning = false
5281function useCommand.spawnpoint()
5282 sppos = cmdlp.Character.HumanoidRootPart.CFrame
5283 spawning = true
5284 opx("-","Spawnpoint set")
5285end
5286
5287local bhopping = false
5288function useCommand.bunnyhop()
5289 opx("-","Started BHopping")
5290 bhopping = true
5291 repeat wait()
5292 cmdlp.Character.Humanoid.Jump = true
5293 until bhopping == false
5294end
5295
5296function useCommand.unbunnyhop()
5297 opx("-","Stopped BHopping")
5298 bhopping = false
5299end
5300
5301function useCommand.invisible()
5302 opx("-","You are now invisible")
5303 for i,m in pairs(cmdlp.Character:GetChildren()) do
5304 if m:IsA("Part") or m:IsA("MeshPart") then
5305 if m.Name ~= "HumanoidRootPart" and m.Name ~= "Handle" or m:IsA("Part") then
5306 m.Material = "ForceField"
5307 end
5308 elseif m:IsA("Accessory") then
5309 m:Destroy()
5310 end
5311 end
5312 local Players = cmdp
5313 local function CheckRig()
5314 if Players.LocalPlayer.Character then
5315 if cmd15(cmdlp) then
5316 return 'R15'
5317 else
5318 return 'R6'
5319 end
5320 end
5321 end
5322 local function InitiateInvis()
5323 local Character = Players.LocalPlayer.Character
5324 local StoredCF = Character.PrimaryPart.CFrame
5325 local Part = Instance.new('Part',workspace)
5326 Part.Size = Vector3.new(5,0,5)
5327 Part.Anchored = true
5328 Part.CFrame = CFrame.new(Vector3.new(9999,9999,9999))
5329 Character.PrimaryPart.CFrame = Part.CFrame*CFrame.new(0,3,0)
5330 wait(3)
5331 Part:Destroy()
5332 if CheckRig() == 'R6' then
5333 local Clone = Character.HumanoidRootPart:Clone()
5334 Character.HumanoidRootPart:Destroy()
5335 Clone.Parent = Character
5336 else
5337 local Clone = Character.LowerTorso.Root:Clone()
5338 Character.LowerTorso.Root:Destroy()
5339 Clone.Parent = Character.LowerTorso
5340 end
5341 end
5342 InitiateInvis()
5343end
5344
5345function useCommand.sit()
5346 cmdlp.Character.Humanoid.Sit = true
5347 opx("-","You just sat your ass down")
5348end
5349
5350function useCommand.sitwalk()
5351 opx("-","Sit walk enabled")
5352 local anims = cmdlp.Character.Animate
5353 local sit = anims.sit:FindFirstChildOfClass("Animation").AnimationId
5354 anims.idle:FindFirstChildOfClass("Animation").AnimationId = sit
5355 anims.walk:FindFirstChildOfClass("Animation").AnimationId = sit
5356 anims.run:FindFirstChildOfClass("Animation").AnimationId = sit
5357 anims.jump:FindFirstChildOfClass("Animation").AnimationId = sit
5358 local Anim = Instance.new("Animation")
5359 Anim.AnimationId = sit
5360 local k = cmdlp.Character.Humanoid:LoadAnimation(Anim)
5361 k:Play()
5362 k:AdjustSpeed(1)
5363 k:Destroy()
5364 Anim:Destroy()
5365 if cmd6(cmdlp) then
5366 cmdlp.Character.Humanoid.HipHeight = -1.5
5367 else
5368 cmdlp.Character.Humanoid.HipHeight = 0.5
5369 end
5370end
5371
5372function useCommand.freeze()
5373 opx("-","You froze your character")
5374 cmdlp.Character.HumanoidRootPart.Anchored = true
5375end
5376
5377function useCommand.thaw()
5378 opx("-","You thawed your character")
5379 cmdlp.Character.HumanoidRootPart.Anchored = false
5380end
5381
5382function useCommand.goto()
5383 if arguments[2] then
5384 target = findplr(arguments[2])
5385 if target ~= nil then
5386 cmdlp.Character.Humanoid.Jump = true
5387 cmdlp.Character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame + Vector3.new(gotoPosSide,gotoPosHead,gotoPos)
5388 opx("-","Teleported to player "..target.Name)
5389 else
5390 opx("*","Player does not exist!")
5391 end
5392 else
5393 opx("*","2 arguments are needed for this command!")
5394 end
5395end
5396
5397local walkto = false
5398function useCommand.walkto()
5399 if arguments[2] then
5400 target = findplr(arguments[2])
5401 if target ~= nil then
5402 opx("-","Walking to "..target.Name)
5403 walkto = true
5404 repeat wait()
5405 cmdlp.Character.Humanoid:MoveTo(target.Character.HumanoidRootPart.Position)
5406 until walkto == false
5407 else
5408 opx("*","Player does not exist!")
5409 end
5410 else
5411 opx("*","2 arguments are needed for this command!")
5412 end
5413end
5414
5415function useCommand.unwalkto()
5416 opx("-","Stopped walking to")
5417 walkto = false
5418end
5419
5420function useCommand.refresh()
5421 opx("-","Character respawning")
5422 if Noclipping then
5423 Noclipping:Disconnect()
5424 Clip = false
5425 end
5426 refresh()
5427 opx("-","Character respawned")
5428end
5429
5430function useCommand.reset()
5431 opx("-","Resetting character")
5432 cmdlp.Character.Humanoid.Health = 0
5433 opx("-","Character reset")
5434end
5435
5436function useCommand.savepos()
5437 if arguments[2] then
5438 wpNS = getstring(2)
5439 T = cmdlp.Character.Torso
5440 WPs[#WPs+1] = {N = wpNS, C = {math.floor(T.Position.X), math.floor(T.Position.Y), math.floor(T.Position.Z)}}
5441 updatesaves()
5442 opx("-","Saved current position (Use lpos "..tostring(wpNS).." to load)")
5443 else
5444 opx("*","2 arguments are needed for this command!")
5445 end
5446end
5447
5448function useCommand.loadpos()
5449 if arguments[2] then
5450 wpNS = getstring(2)
5451 for i,v in pairs(WPs) do
5452 local xc = WPs[i].C[1]
5453 local yc = WPs[i].C[2]
5454 local zc = WPs[i].C[3]
5455 if tostring(WPs[i].N) == tostring(wpNS) then
5456 cmdlp.Character.HumanoidRootPart.CFrame = CFrame.new(xc,yc,zc)
5457 end
5458 end
5459 opx("Teleported to "..tostring(wpNS))
5460 else
5461 opx("*","2 arguments are needed for this command!")
5462 end
5463end
5464
5465local Platform = false
5466function useCommand.platform()
5467 opx("-","You are now using an invisible platform")
5468 Platform = true
5469 local pc = cmdlp.Character
5470 if pc and not pc:FindFirstChild("pf") then
5471 local pf = Instance.new('Part', pc)
5472 pf.Name = 'pf'
5473 pf.Transparency = 1
5474 pf.Size = Vector3.new(6,1,6)
5475 pf.Anchored = true
5476 pf.CFrame = pc.HumanoidRootPart.CFrame * CFrame.new(0,-3.5,0)
5477 while wait(0.1) do
5478 if pc:FindFirstChild("pf") then
5479 pf.CFrame = pc.HumanoidRootPart.CFrame * CFrame.new(0,-3.5,0)
5480 else
5481 break
5482 end
5483 end
5484 end
5485end
5486
5487function useCommand.unplatform()
5488 Platform = false
5489 local pc = cmdlp.Character
5490 opx("-","You are no longer using an invisible platform")
5491 if pc:FindFirstChild("pf") then
5492 pc.pf:Destroy()
5493 end
5494end
5495
5496local clicktps = false
5497function useCommand.clicktp()
5498 clicktps = true
5499 opx("-","ClickTP enabled aim at the location and press CTRL to tp")
5500 local Imput = game:GetService("UserInputService")
5501 hum = cmdlp.Character.HumanoidRootPart
5502 Imput.InputBegan:Connect(function(input)
5503 if Imput:IsKeyDown(Enum.KeyCode.LeftControl) and clicktps == true then
5504 if cmdm.Target then
5505 hum.CFrame = CFrame.new(cmdm.Hit.x, cmdm.Hit.y + 5, cmdm.Hit.z)
5506 end
5507 end
5508 end)
5509end
5510
5511local infiniteJump = false
5512function useCommand.infjump()
5513 opx("-","Infinite jump enabled")
5514 infiniteJump = true
5515 game:GetService("UserInputService").JumpRequest:Connect(function()
5516 if infiniteJump == true then
5517 cmdlp.Character.Humanoid:ChangeState("Jumping")
5518 end
5519 end)
5520end
5521
5522function useCommand.uninfjump()
5523 opx("-","Infinite jump disabled")
5524 infiniteJump = false
5525end
5526
5527function useCommand.fly()
5528 FLYING = false
5529 cmdlp.Character.Humanoid.PlatformStand = false
5530 wait()
5531 opx("-","You are now flying")
5532 sFLY()
5533 speedofthefly = permflyspeed
5534end
5535
5536function useCommand.vehiclefly()
5537 FLYING = false
5538 cmdlp.Character.Humanoid.PlatformStand = false
5539 wait()
5540 opx("-","You are now flying")
5541 sFLY(true)
5542 speedofthevfly = permflyspeed
5543end
5544
5545function useCommand.unfly()
5546 opx("-","You are no longer flying")
5547 FLYING = false
5548 cmdlp.Character.Humanoid.PlatformStand = false
5549end
5550
5551function useCommand.flyspeed()
5552 if arguments[2] then
5553 speedofthefly = arguments[2]
5554 speedofthevfly = arguments[2]
5555 opx("-","Fly speed was changed to "..arguments[2])
5556 else
5557 opx("*","A number is required")
5558 end
5559end
5560
5561function useCommand.rejoin()
5562 opx("-","Rejoining game")
5563 game:GetService('TeleportService'):Teleport(game.PlaceId)
5564end
5565
5566function useCommand.game()
5567 if arguments[2] then
5568 game:GetService('TeleportService'):Teleport(arguments[2])
5569 opx("-","Teleporting to game "..arguments[2])
5570 else
5571 opx("*","A server ID is needed")
5572 end
5573end
5574
5575function useCommand.reach()
5576 if arguments[2] and cmdnum(arguments[2]) then
5577 for i,v in pairs(cmdlp.Character:GetDescendants()) do
5578 if v:IsA("Tool") then
5579 currentToolSize = v.Handle.Size
5580 local a = Instance.new("SelectionBox",v.Handle)
5581 a.Name = "SelectionBoxCreated"
5582 a.Adornee = v.Handle
5583 a.Color3 = Color3.new(255, 255, 255)
5584 a.LineThickness = 0.01
5585 v.Handle.Massless = true
5586 v.Handle.Size = Vector3.new(0.5,0.5,arguments[2])
5587 v.GripPos = Vector3.new(0,0,0)
5588 v.Parent = cmdlp.Backpack
5589 v.Parent = cmdlp.Character
5590 end
5591 end
5592 opx("-","Reach set to "..arguments[2])
5593 else
5594 opx("*","2 arguments are needed for this command!")
5595 end
5596end
5597
5598function useCommand.boxreach()
5599 if arguments[2] and cmdnum(arguments[2]) then
5600 for i,v in pairs(cmdlp.Character:GetDescendants()) do
5601 if v:IsA("Tool") then
5602 currentToolSize = v.Handle.Size
5603 local a = Instance.new("SelectionBox",v.Handle)
5604 a.Name = "SelectionBoxCreated"
5605 a.Adornee = v.Handle
5606 a.Color3 = Color3.new(255, 255, 255)
5607 a.LineThickness = 0.01
5608 v.Handle.Massless = true
5609 v.Handle.Size = Vector3.new(arguments[2], arguments[2], arguments[2])
5610 v.GripPos = Vector3.new(0,0,0)
5611 v.Parent = cmdlp.Backpack
5612 v.Parent = cmdlp.Character
5613 end
5614 end
5615 opx("-","Box Reach set to "..arguments[2])
5616 else
5617 opx("*","2 arguments are needed for this command!")
5618 end
5619end
5620
5621function useCommand.unreach()
5622 for i,v in pairs(cmdlp.Character:GetDescendants()) do
5623 if v:IsA("Tool") then
5624 v.Handle.Size = Vector3.new(1,0.8,4)
5625 v.Parent = cmdlp.Backpack
5626 v.Parent = cmdlp.Character
5627 end
5628 end
5629 opx("-","Reach value cleared (1,0.8,4)")
5630end
5631
5632function useCommand.noclip()
5633 opx("-","Noclip enabled")
5634 noclip()
5635end
5636
5637function useCommand.light()
5638 if arguments[2] then
5639 opx("-","Light/Brightness has been set to "..arguments[2])
5640 local bright = Instance.new("PointLight", cmdlp.Character.Torso)
5641 bright.Range = 35
5642 bright.Brightness = arguments[2]
5643 else
5644 opx("*","Light/Brightness is missing a number")
5645 end
5646end
5647
5648function useCommand.unlight()
5649 for i,v in pairs(cmdlp.Character.Torso:GetChildren()) do
5650 if v:IsA('PointLight') then
5651 v:Destroy()
5652 opx("-","Removed light/brightness from character")
5653 end
5654 end
5655 opx("-","Removed light/brightness from character")
5656end
5657
5658local ESPenabled = false
5659function useCommand.esp()
5660 opx("-","ESP Enabled")
5661 ESPenabled = true
5662 for i,v in pairs(cmdp:GetChildren()) do
5663 if v.ClassName == "Player" and v.Name ~= cmdp.LocalPlayer.Name then
5664 ESP(v)
5665 end
5666 end
5667end
5668
5669function useCommand.unesp()
5670 opx("-","ESP Disabled")
5671 ESPenabled = false
5672 for i,v in pairs(cmdp:GetChildren()) do
5673 local espplr = v
5674 for i,c in pairs(cmdlp.PlayerGui:GetChildren()) do
5675 if c.Name == espplr.Name..'_ESP' then
5676 c:Destroy()
5677 end
5678 end
5679 end
5680 for i,v in pairs(game.Players:GetPlayers()) do
5681 local poop = v
5682 local player = v.Name
5683 for i,m in pairs(v.Character:GetChildren()) do
5684 if m:IsA("Part") or m:IsA("MeshPart") then
5685 if m.Name ~= "HumanoidRootPart" and m.Name ~= "Handle" or m:IsA("Part") then
5686 m.Material = "Plastic"
5687 end
5688 elseif m:IsA("Accessory") then
5689 m.Handle.Material = "Plastic"
5690 end
5691 end
5692 end
5693end
5694
5695function useCommand.aimbot()
5696 Enabledaimbot = true
5697 opx("-","Aimbot enabled!")
5698 BodyAimbot()
5699end
5700
5701function useCommand.unaimbot()
5702 Enabledaimbot = false
5703 opx("-","Aimbot disabled!")
5704 BodyAimbot()
5705end
5706
5707function useCommand.whitelistfriends()
5708 opx("-","Every friend of yours was added to the whitelist")
5709 autofriendwl(true)
5710end
5711
5712function useCommand.unwhitelistfriends()
5713 opx("-","Every friend of yours was removed from the whitelist")
5714 autofriendwl(false)
5715end
5716
5717function useCommand.whitelist()
5718 Wl(findplr(arguments[2]),true)
5719 opx("-","Added "..findplr(arguments[2]).Name.." to the whitelist")
5720end
5721
5722function useCommand.unwhitelist()
5723 Wl(findplr(arguments[2]),false)
5724 opx("-","Removed "..findplr(arguments[2]).Name.." from the whitelist")
5725end
5726
5727function useCommand.showwhitelist()
5728 opx("-","Press F9 to see players list")
5729 print("Players whitelisted:")
5730 if PlayersWLsystem ~= nil then
5731 for i,a in pairs(PlayersWLsystem) do
5732 if a == true then
5733 print("-"..i)
5734 end
5735 end
5736 elseif PlayersWLsystem == nil then
5737 opx("*","Whitelist people to see the whitelist!")
5738 end
5739end
5740
5741function useCommand.spectate()
5742 if arguments[2] then
5743 target = findplr(arguments[2])
5744 if target ~= nil then
5745 opx("-",target.Name.." is now being viewed")
5746 workspace.CurrentCamera.CameraSubject = target.Character
5747 else
5748 opx("*","Player does not exist!")
5749 end
5750 else
5751 opx("*","2 arguments are needed for this command!")
5752 end
5753end
5754
5755function useCommand.unspectate()
5756 opx("-","You are back to viewing your character")
5757 workspace.CurrentCamera.CameraSubject = cmdlp.Character
5758end
5759
5760function osCheck()
5761 if text2 == true then
5762 if target.OsPlatform == "Durango" then
5763 target.OsPlatform = "XBox"
5764 elseif target.OsPlatform == "Win32" then
5765 target.OsPlatform = "Windows"
5766 elseif target.OsPlatform == "OSX" then
5767 target.OsPlatform = "Mac"
5768 elseif target.OsPlatform == "iOS" then
5769 target.OsPlatform = "Apple"
5770 end
5771 elseif text1 == true then
5772 if target.OsPlatform == "XBox" then
5773 target.OsPlatform = "Durango"
5774 elseif target.OsPlatform == "Windows" then
5775 target.OsPlatform = "Win32"
5776 elseif target.OsPlatform == "Mac" then
5777 target.OsPlatform = "OSX"
5778 elseif target.OsPlatform == "Apple" then
5779 target.OsPlatform = "iOS"
5780 end
5781 end
5782end
5783
5784function useCommand.osprivate()
5785 if arguments[2] then
5786 target = findplr(arguments[2])
5787 if target ~= nil then
5788 osCheck()
5789 opx("-",target.Name.."s OS is "..target.OsPlatform)
5790 else
5791 opx("*","Player does not exist!")
5792 end
5793 else
5794 opx("*","2 arguments are needed for this command!")
5795 end
5796end
5797
5798function useCommand.ospublic()
5799 if arguments[2] then
5800 target = findplr(arguments[2])
5801 if target ~= nil then
5802 osCheck()
5803 opx("-",target.Name.."s OS is "..target.OsPlatform)
5804 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(target.Name.."s OS is "..target.OsPlatform, "All")
5805 else
5806 opx("*","Player does not exist!")
5807 end
5808 else
5809 opx("*","2 arguments are needed for this command!")
5810 end
5811end
5812
5813function useCommand.ageprivate()
5814 if arguments[2] then
5815 target = findplr(arguments[2])
5816 if target ~= nil then
5817 local Years = string.split(target.AccountAge/365,".")
5818 opx("-",target.Name.."(s) account is "..Years[1].." year(s) old or "..target.AccountAge.." day(s) old")
5819 else
5820 opx("*","Player does not exist!")
5821 end
5822 else
5823 opx("*","2 arguments are needed for this command!")
5824 end
5825end
5826
5827function useCommand.agepublic()
5828 if arguments[2] then
5829 target = findplr(arguments[2])
5830 if target ~= nil then
5831 local Years = string.split(target.AccountAge/365,".")
5832 opx("-",target.Name.."(s) account is "..Years[1].." year(s) old or "..target.AccountAge.." day(s) old")
5833 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(target.Name.."(s) account is "..Years[1].." year(s) old or "..target.AccountAge.." day(s) old", "All")
5834 else
5835 opx("*","Player does not exist!")
5836 end
5837 else
5838 opx("*","2 arguments are needed for this command!")
5839 end
5840end
5841
5842function useCommand.idprivate()
5843 if arguments[2] then
5844 target = findplr(arguments[2])
5845 if target ~= nil then
5846 opx("-",target.Name.."s User ID is "..target.UserId)
5847 else
5848 opx("*","Player does not exist!")
5849 end
5850 else
5851 opx("*","2 arguments are needed for this command!")
5852 end
5853end
5854
5855function useCommand.idpublic()
5856 if arguments[2] then
5857 target = findplr(arguments[2])
5858 if target ~= nil then
5859 opx("-",target.Name.."s User ID is "..target.UserId)
5860 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(target.Name.."s User ID is "..target.UserId, "All")
5861 else
5862 opx("*","Player does not exist!")
5863 end
5864 else
5865 opx("*","2 arguments are needed for this command!")
5866 end
5867end
5868
5869function useCommand.vrprivate()
5870 if arguments[2] then
5871 target = findplr(arguments[2])
5872 if target ~= nil then
5873 if target.VRDevice == "" then
5874 opx("-",target.Name.." does not have a VR Device")
5875 else
5876 opx("-",target.Name.." is using a VR Device named "..target.VRDevice)
5877 end
5878 else
5879 opx("*","Player does not exist!")
5880 end
5881 else
5882 opx("*","2 arguments are needed for this command!")
5883 end
5884end
5885
5886function useCommand.vrpublic()
5887 if arguments[2] then
5888 target = findplr(arguments[2])
5889 if target ~= nil then
5890 if target.VRDevice == "" then
5891 opx("-",target.Name.." does not have a VR Device")
5892 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(target.Name.." does not have a VR Device", "All")
5893 else
5894 opx("-",target.Name.." is using a VR Device named "..target.VRDevice)
5895 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(target.Name.." is using a VR Device named "..target.VRDevice, "All")
5896 end
5897 else
5898 opx("*","Player does not exist!")
5899 end
5900 else
5901 opx("*","2 arguments are needed for this command!")
5902 end
5903end
5904
5905function useCommand.profileinfo()
5906 if arguments[2] then
5907 target = findplr(arguments[2])
5908 if target ~= nil then
5909 osCheck()
5910 opx("-","Profile of "..target.Name.." has been loaded")
5911 avatarframe.Visible = true
5912 avatarframe:TweenSize(UDim2.new(0,300,0,433), Enum.EasingDirection.In, Enum.EasingStyle.Quad, .5)
5913 avatarimage.Image = game.Players:GetUserThumbnailAsync(target.UserId, Enum.ThumbnailType.AvatarThumbnail, Enum.ThumbnailSize.Size420x420)
5914 profileview.Text = target.Name.."s profile:"
5915 accountage.Text = "Account age: "..target.AccountAge.." days old"
5916 userid.Text = "User ID: "..target.UserId
5917 operatingsystem.Text = "This user is using a "..target.OsPlatform.." device"
5918 if target.VRDevice == "" then
5919 vrheadset.Text = "User does not have a VR device"
5920 else
5921 vrheadset.Text = "This user is using a "..target.VRDevice
5922 end
5923 hs.MouseButton1Down:connect(function()
5924 avatarimage.Image = game.Players:GetUserThumbnailAsync(target.UserId, Enum.ThumbnailType.HeadShot, Enum.ThumbnailSize.Size420x420)
5925 end)
5926 at.MouseButton1Down:connect(function()
5927 avatarimage.Image = game.Players:GetUserThumbnailAsync(target.UserId, Enum.ThumbnailType.AvatarThumbnail, Enum.ThumbnailSize.Size420x420)
5928 end)
5929 ab.MouseButton1Down:connect(function()
5930 avatarimage.Image = game.Players:GetUserThumbnailAsync(target.UserId, Enum.ThumbnailType.AvatarBust, Enum.ThumbnailSize.Size420x420)
5931 end)
5932 else
5933 opx("*","Player does not exist!")
5934 end
5935 else
5936 opx("*","2 arguments are needed for this command!")
5937 end
5938end
5939
5940function useCommand.closeprofileinfo()
5941 avatarframe.Visible = false
5942 opx("-","Avatar frame closed")
5943end
5944
5945local hitler = false
5946function useCommand.nazispam()
5947 opx("-","Heil hitler?")
5948 hitler = true
5949 while hitler == true do
5950 game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("????????????????", "All")
5951 game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("????????????????", "All")
5952 game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("????????????????", "All")
5953 game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("????????????????", "All")
5954 game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("????????????????", "All")
5955 wait(15)
5956 end
5957end
5958
5959function useCommand.unnazispam()
5960 opx("-","Nazi spam disabled")
5961 hitler = false
5962end
5963
5964local spammies = false
5965function useCommand.spam()
5966 speedofthespam = 1
5967 spammies = true
5968 local spamstring = getstring(2)
5969 if arguments[2] then
5970 opx("-","You are now spamming "..spamstring)
5971 repeat wait(speedofthespam)
5972 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(spamstring, "All")
5973 until spammies == false
5974 else
5975 opx("*","Spam is missing text")
5976 end
5977end
5978
5979function useCommand.unspam()
5980 opx("-","Stopped spamming")
5981 spammies = false
5982end
5983
5984local pmspammies = false
5985function useCommand.pmspam()
5986 if arguments[2] then
5987 target = findplr(arguments[2])
5988 if target ~= nil then
5989 speedofthespam = 1
5990 pmspammies = true
5991 local spamstring = getstring(3)
5992 opx("-","You are now spamming "..target.Name.." with "..spamstring)
5993 repeat wait(speedofthespam)
5994 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/w "..target.Name.." "..spamstring, "All")
5995 until pmspammies == false
5996 else
5997 opx("*","Player does not exist!")
5998 end
5999 else
6000 opx("*","2 arguments are needed for this command!")
6001 end
6002end
6003
6004function useCommand.unpmspam()
6005 opx("-","Stopped PM spamming")
6006 pmspammies = false
6007end
6008
6009function useCommand.spamspeed()
6010 if cmdnum(arguments[2]) then
6011 speedofthespam = arguments[2]
6012 opx("-","Spam speed was set to "..arguments[2])
6013 else
6014 opx("*","Spamspeed is missing a number")
6015 end
6016end
6017
6018function useCommand.dicepublic()
6019 opx("-","The dice was rolled")
6020 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("The dice rolled by "..game.Players.LocalPlayer.Name.." rolled a ".. tostring(math.random(1, 6)), "All")
6021end
6022
6023function jsonlua()
6024 --
6025 -- json.lua
6026 --
6027 -- Copyright (c) 2019 rxi
6028 --
6029 -- Permission is hereby granted, free of charge, to any person obtaining a copy of
6030 -- this software and associated documentation files (the "Software"), to deal in
6031 -- the Software without restriction, including without limitation the rights to
6032 -- use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
6033 -- of the Software, and to permit persons to whom the Software is furnished to do
6034 -- so, subject to the following conditions:
6035 --
6036 -- The above copyright notice and this permission notice shall be included in all
6037 -- copies or substantial portions of the Software.
6038 --
6039 -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
6040 -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
6041 -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
6042 -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
6043 -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
6044 -- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
6045 -- SOFTWARE.
6046 --
6047
6048 local json = { _version = "0.1.2" }
6049
6050 -------------------------------------------------------------------------------
6051 -- Encode
6052 -------------------------------------------------------------------------------
6053
6054 local encode
6055
6056 local escape_char_map = {
6057 [ "\\" ] = "\\\\",
6058 [ "\"" ] = "\\\"",
6059 [ "\b" ] = "\\b",
6060 [ "\f" ] = "\\f",
6061 [ "\n" ] = "\\n",
6062 [ "\r" ] = "\\r",
6063 [ "\t" ] = "\\t",
6064 }
6065
6066 local escape_char_map_inv = { [ "\\/" ] = "/" }
6067 for k, v in pairs(escape_char_map) do
6068 escape_char_map_inv[v] = k
6069 end
6070
6071
6072 local function escape_char(c)
6073 return escape_char_map[c] or string.format("\\u%04x", c:byte())
6074 end
6075
6076
6077 local function encode_nil(val)
6078 return "null"
6079 end
6080 local function encode_table(val, stack)
6081 local res = {}
6082 stack = stack or {}
6083
6084 -- Circular reference?
6085 if stack[val] then error("circular reference") end
6086
6087 stack[val] = true
6088
6089 if rawget(val, 1) ~= nil or next(val) == nil then
6090 -- Treat as array -- check keys are valid and it is not sparse
6091 local n = 0
6092 for k in pairs(val) do
6093 if type(k) ~= "number" then
6094 error("invalid table: mixed or invalid key types")
6095 end
6096 n = n + 1
6097 end
6098 if n ~= #val then
6099 error("invalid table: sparse array")
6100 end
6101 -- Encode
6102 for i, v in ipairs(val) do
6103 table.insert(res, encode(v, stack))
6104 end
6105 stack[val] = nil
6106 return "[" .. table.concat(res, ",") .. "]"
6107
6108 else
6109 -- Treat as an object
6110 for k, v in pairs(val) do
6111 if type(k) ~= "string" then
6112 error("invalid table: mixed or invalid key types")
6113 end
6114 table.insert(res, encode(k, stack) .. ":" .. encode(v, stack))
6115 end
6116 stack[val] = nil
6117 return "{" .. table.concat(res, ",") .. "}"
6118 end
6119 end
6120 local function encode_string(val)
6121 return '"' .. val:gsub('[%z\1-\31\\"]', escape_char) .. '"'
6122 end
6123 local function encode_number(val)
6124 -- Check for NaN, -inf and inf
6125 if val ~= val or val <= -math.huge or val >= math.huge then
6126 error("unexpected number value '" .. tostring(val) .. "'")
6127 end
6128 return string.format("%.14g", val)
6129 end
6130 local type_func_map = {
6131 [ "nil" ] = encode_nil,
6132 [ "table" ] = encode_table,
6133 [ "string" ] = encode_string,
6134 [ "number" ] = encode_number,
6135 [ "boolean" ] = tostring,
6136 }
6137 encode = function(val, stack)
6138 local t = type(val)
6139 local f = type_func_map[t]
6140 if f then
6141 return f(val, stack)
6142 end
6143 error("unexpected type '" .. t .. "'")
6144 end
6145 function json.encode(val)
6146 return ( encode(val) )
6147 end
6148 -------------------------------------------------------------------------------
6149 -- Decode
6150 -------------------------------------------------------------------------------
6151 local parse
6152 local function create_set(...)
6153 local res = {}
6154 for i = 1, select("#", ...) do
6155 res[ select(i, ...) ] = true
6156 end
6157 return res
6158 end
6159 local space_chars = create_set(" ", "\t", "\r", "\n")
6160 local delim_chars = create_set(" ", "\t", "\r", "\n", "]", "}", ",")
6161 local escape_chars = create_set("\\", "/", '"', "b", "f", "n", "r", "t", "u")
6162 local literals = create_set("true", "false", "null")
6163 local literal_map = {
6164 [ "true" ] = true,
6165 [ "false" ] = false,
6166 [ "null" ] = nil,
6167 }
6168 local function next_char(str, idx, set, negate)
6169 for i = idx, #str do
6170 if set[str:sub(i, i)] ~= negate then
6171 return i
6172 end
6173 end
6174 return #str + 1
6175 end
6176 local function decode_error(str, idx, msg)
6177 local line_count = 1
6178 local col_count = 1
6179 for i = 1, idx - 1 do
6180 col_count = col_count + 1
6181 if str:sub(i, i) == "\n" then
6182 line_count = line_count + 1
6183 col_count = 1
6184 end
6185 end
6186 error( string.format("%s at line %d col %d", msg, line_count, col_count) )
6187 end
6188 local function codepoint_to_utf8(n)
6189 -- http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=iws-appendixa
6190 local f = math.floor
6191 if n <= 0x7f then
6192 return string.char(n)
6193 elseif n <= 0x7ff then
6194 return string.char(f(n / 64) + 192, n % 64 + 128)
6195 elseif n <= 0xffff then
6196 return string.char(f(n / 4096) + 224, f(n % 4096 / 64) + 128, n % 64 + 128)
6197 elseif n <= 0x10ffff then
6198 return string.char(f(n / 262144) + 240, f(n % 262144 / 4096) + 128,
6199 f(n % 4096 / 64) + 128, n % 64 + 128)
6200 end
6201 error( string.format("invalid unicode codepoint '%x'", n) )
6202 end
6203 local function parse_unicode_escape(s)
6204 local n1 = tonumber( s:sub(3, 6), 16 )
6205 local n2 = tonumber( s:sub(9, 12), 16 )
6206 -- Surrogate pair?
6207 if n2 then
6208 return codepoint_to_utf8((n1 - 0xd800) * 0x400 + (n2 - 0xdc00) + 0x10000)
6209 else
6210 return codepoint_to_utf8(n1)
6211 end
6212 end
6213 local function parse_string(str, i)
6214 local has_unicode_escape = false
6215 local has_surrogate_escape = false
6216 local has_escape = false
6217 local last
6218 for j = i + 1, #str do
6219 local x = str:byte(j)
6220
6221 if x < 32 then
6222 decode_error(str, j, "control character in string")
6223 end
6224
6225 if last == 92 then -- "\\" (escape char)
6226 if x == 117 then -- "u" (unicode escape sequence)
6227 local hex = str:sub(j + 1, j + 5)
6228 if not hex:find("%x%x%x%x") then
6229 decode_error(str, j, "invalid unicode escape in string")
6230 end
6231 if hex:find("^[dD][89aAbB]") then
6232 has_surrogate_escape = true
6233 else
6234 has_unicode_escape = true
6235 end
6236 else
6237 local c = string.char(x)
6238 if not escape_chars[c] then
6239 decode_error(str, j, "invalid escape char '" .. c .. "' in string")
6240 end
6241 has_escape = true
6242 end
6243 last = nil
6244
6245 elseif x == 34 then -- '"' (end of string)
6246 local s = str:sub(i + 1, j - 1)
6247 if has_surrogate_escape then
6248 s = s:gsub("\\u[dD][89aAbB]..\\u....", parse_unicode_escape)
6249 end
6250 if has_unicode_escape then
6251 s = s:gsub("\\u....", parse_unicode_escape)
6252 end
6253 if has_escape then
6254 s = s:gsub("\\.", escape_char_map_inv)
6255 end
6256 return s, j + 1
6257
6258 else
6259 last = x
6260 end
6261 end
6262 decode_error(str, i, "expected closing quote for string")
6263 end
6264 local function parse_number(str, i)
6265 local x = next_char(str, i, delim_chars)
6266 local s = str:sub(i, x - 1)
6267 local n = tonumber(s)
6268 if not n then
6269 decode_error(str, i, "invalid number '" .. s .. "'")
6270 end
6271 return n, x
6272 end
6273 local function parse_literal(str, i)
6274 local x = next_char(str, i, delim_chars)
6275 local word = str:sub(i, x - 1)
6276 if not literals[word] then
6277 decode_error(str, i, "invalid literal '" .. word .. "'")
6278 end
6279 return literal_map[word], x
6280 end
6281 local function parse_array(str, i)
6282 local res = {}
6283 local n = 1
6284 i = i + 1
6285 while 1 do
6286 local x
6287 i = next_char(str, i, space_chars, true)
6288 -- Empty / end of array?
6289 if str:sub(i, i) == "]" then
6290 i = i + 1
6291 break
6292 end
6293 -- Read token
6294 x, i = parse(str, i)
6295 res[n] = x
6296 n = n + 1
6297 -- Next token
6298 i = next_char(str, i, space_chars, true)
6299 local chr = str:sub(i, i)
6300 i = i + 1
6301 if chr == "]" then break end
6302 if chr ~= "," then decode_error(str, i, "expected ']' or ','") end
6303 end
6304 return res, i
6305 end
6306 local function parse_object(str, i)
6307 local res = {}
6308 i = i + 1
6309 while 1 do
6310 local key, val
6311 i = next_char(str, i, space_chars, true)
6312 -- Empty / end of object?
6313 if str:sub(i, i) == "}" then
6314 i = i + 1
6315 break
6316 end
6317 -- Read key
6318 if str:sub(i, i) ~= '"' then
6319 decode_error(str, i, "expected string for key")
6320 end
6321 key, i = parse(str, i)
6322 -- Read ':' delimiter
6323 i = next_char(str, i, space_chars, true)
6324 if str:sub(i, i) ~= ":" then
6325 decode_error(str, i, "expected ':' after key")
6326 end
6327 i = next_char(str, i + 1, space_chars, true)
6328 -- Read value
6329 val, i = parse(str, i)
6330 -- Set
6331 res[key] = val
6332 -- Next token
6333 i = next_char(str, i, space_chars, true)
6334 local chr = str:sub(i, i)
6335 i = i + 1
6336 if chr == "}" then break end
6337 if chr ~= "," then decode_error(str, i, "expected '}' or ','") end
6338 end
6339 return res, i
6340 end
6341 local char_func_map = {
6342 [ '"' ] = parse_string,
6343 [ "0" ] = parse_number,
6344 [ "1" ] = parse_number,
6345 [ "2" ] = parse_number,
6346 [ "3" ] = parse_number,
6347 [ "4" ] = parse_number,
6348 [ "5" ] = parse_number,
6349 [ "6" ] = parse_number,
6350 [ "7" ] = parse_number,
6351 [ "8" ] = parse_number,
6352 [ "9" ] = parse_number,
6353 [ "-" ] = parse_number,
6354 [ "t" ] = parse_literal,
6355 [ "f" ] = parse_literal,
6356 [ "n" ] = parse_literal,
6357 [ "[" ] = parse_array,
6358 [ "{" ] = parse_object,
6359 }
6360 parse = function(str, idx)
6361 local chr = str:sub(idx, idx)
6362 local f = char_func_map[chr]
6363 if f then
6364 return f(str, idx)
6365 end
6366 decode_error(str, idx, "unexpected character '" .. chr .. "'")
6367 end
6368 function json.decode(str)
6369 if type(str) ~= "string" then
6370 error("expected argument of type string, got " .. type(str))
6371 end
6372 local res, idx = parse(str, next_char(str, 1, space_chars, true))
6373 idx = next_char(str, idx, space_chars, true)
6374 if idx <= #str then
6375 decode_error(str, idx, "trailing garbage")
6376 end
6377 return res
6378 end
6379 return json
6380end
6381local json = jsonlua()
6382
6383function useCommand.coronavirus()
6384 if arguments[2] then
6385 local res = game:HttpGet("https://coronavirus-19-api.herokuapp.com/countries/"..arguments[2])
6386 local tbl = json.decode(res)
6387 opx("-","Cases: "..tbl["cases"]..", Deaths: "..tbl["deaths"]..", Recovered: "..tbl["recovered"]..", Active: "..tbl["active"])
6388 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(tbl['country'].."; ".."Cases: "..tbl["cases"]..", Deaths: "..tbl["deaths"]..", Recovered: "..tbl["recovered"]..", Active: "..tbl["active"], "All")
6389 else
6390 local res = game:HttpGet("https://coronavirus-19-api.herokuapp.com/all")
6391 local tbl = json.decode(res)
6392 opx("-","Cases: "..tbl["cases"]..", Deaths: "..tbl["deaths"]..", Recovered: "..tbl["recovered"])
6393 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("World; ".."Cases: "..tbl["cases"]..", Deaths: "..tbl["deaths"]..", Recovered: "..tbl["recovered"], "All")
6394 end
6395end
6396
6397function useCommand.joindateprivate()
6398 if arguments[2] then
6399 target = findplr(arguments[2])
6400 if target ~= nil then
6401 local res = game:HttpGet("https://users.roblox.com/v1/users/"..target.UserId)
6402 local tbl = json.decode(res)
6403 local Created = tbl["created"]:split("T")
6404 local Created2 = Created[2]:split(".")
6405 opx("-",target.Name.." joined on: "..Created[1].." "..Created2[1])
6406 else
6407 opx("*","Player does not exist!")
6408 end
6409 else
6410 opx("*","2 arguments are needed for this command!")
6411 end
6412end
6413
6414function useCommand.joindatepublic()
6415 if arguments[2] then
6416 target = findplr(arguments[2])
6417 if target ~= nil then
6418 local res = game:HttpGet("https://users.roblox.com/v1/users/"..target.UserId)
6419 local tbl = json.decode(res)
6420 local Created = tbl["created"]:split("T")
6421 local Created2 = Created[2]:split(".")
6422 opx("-",target.Name.." joined on: "..Created[1].." "..Created2[1])
6423 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(target.Name.." joined on: "..Created[1].." "..Created2[1], "All")
6424 else
6425 opx("*","Player does not exist!")
6426 end
6427 else
6428 opx("*","2 arguments are needed for this command!")
6429 end
6430end
6431
6432function useCommand.diceprivate()
6433 opx("-","The dice rolled a "..tostring(math.random(1, 6)))
6434end
6435
6436function useCommand.numberpublic()
6437 if arguments[3] then
6438 opx("-","Your random number is ".. tostring(math.random(arguments[2], arguments[3])))
6439 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(game.Players.LocalPlayer.Name.." has picked a random number between "..arguments[2].." and "..arguments[3].." the number is ".. tostring(math.random(arguments[2], arguments[3])), "All")
6440 else
6441 opx("*","You need to pick 2 numbers")
6442 end
6443end
6444
6445function useCommand.numberprivate()
6446 if arguments[3] then
6447 opx("-","Your random number is ".. tostring(math.random(arguments[2], arguments[3])))
6448 else
6449 opx("*","You need to pick 2 numbers")
6450 end
6451end
6452
6453function useCommand.loadcustoms()
6454 opx("-","Scripts you can load printed in F9")
6455 for i,v in pairs(loadCustoms) do
6456 print(loadCustoms[i].N)
6457 end
6458end
6459
6460local HolderOfP = Instance.new("Frame")
6461local PExplain = Instance.new("Frame")
6462local P2 = Instance.new("TextLabel")
6463local P1 = Instance.new("TextLabel")
6464local PText = Instance.new("Frame")
6465local PB = Instance.new("TextButton")
6466local PA = Instance.new("TextButton")
6467local PTextBox = Instance.new("TextBox")
6468local PCopy = Instance.new("TextButton")
6469local PC = Instance.new("TextLabel")
6470local PRemove = Instance.new("Frame")
6471local PPlugin = Instance.new("TextLabel")
6472local PImage3 = Instance.new("ImageButton")
6473local PImage1 = Instance.new("ImageButton")
6474local PImage2 = Instance.new("ImageButton")
6475local PExit = Instance.new("TextButton")
6476local PAliases = Instance.new("TextBox")
6477local PName = Instance.new("TextBox")
6478local PDesc = Instance.new("TextBox")
6479
6480HolderOfP.Name = "HolderOfP"
6481HolderOfP.Parent = Unnamed
6482HolderOfP.BackgroundColor3 = Color3.new(0.0470588, 0.0470588, 0.0470588)
6483HolderOfP.BorderSizePixel = 0
6484HolderOfP.Position = UDim2.new(0.250384033, 0, 0.217444718, 0)
6485HolderOfP.Size = UDim2.new(0, 714, 0, 24)
6486HolderOfP.Draggable = true
6487HolderOfP.Active = true
6488HolderOfP.Visible = false
6489
6490PExplain.Name = "PExplain"
6491PExplain.Parent = HolderOfP
6492PExplain.BackgroundColor3 = Color3.new(0.121569, 0.121569, 0.121569)
6493PExplain.BorderColor3 = Color3.new(0.0588235, 0.0627451, 0.0705882)
6494PExplain.BorderSizePixel = 0
6495PExplain.Position = UDim2.new(-0.000316262245, 0, 0.996928751, 0)
6496PExplain.Size = UDim2.new(0, 188, 0, 412)
6497
6498P2.Name = "P2"
6499P2.Parent = PExplain
6500P2.BackgroundColor3 = Color3.new(1, 1, 1)
6501P2.BackgroundTransparency = 1
6502P2.Position = UDim2.new(0.0425531901, 0, 0.0194174759, 0)
6503P2.Size = UDim2.new(0, 173, 0, 41)
6504P2.Font = Enum.Font.GothamBold
6505P2.Text = "Plugins and how to use them:"
6506P2.TextColor3 = Color3.new(1, 1, 1)
6507P2.TextSize = 20
6508P2.TextWrapped = true
6509P2.TextYAlignment = Enum.TextYAlignment.Top
6510
6511P1.Name = "P1"
6512P1.Parent = PExplain
6513P1.BackgroundColor3 = Color3.new(1, 1, 1)
6514P1.BackgroundTransparency = 1
6515P1.Position = UDim2.new(0.0425531901, 0, 0.118932039, 0)
6516P1.Size = UDim2.new(0, 173, 0, 357)
6517P1.Font = Enum.Font.Gotham
6518P1.Text = "Type your plugin in the box then press add, once done you can edit/remove it in the Frame below it."
6519P1.TextColor3 = Color3.new(1, 1, 1)
6520P1.TextSize = 14
6521P1.TextWrapped = true
6522P1.TextYAlignment = Enum.TextYAlignment.Top
6523
6524PText.Name = "PText"
6525PText.Parent = HolderOfP
6526PText.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
6527PText.BorderColor3 = Color3.new(0.478431, 0.509804, 0.576471)
6528PText.BorderSizePixel = 0
6529PText.Position = UDim2.new(0.263124585, 0, 0.996928751, 0)
6530PText.Size = UDim2.new(0, 526, 0, 412)
6531
6532PB.Name = "PB"
6533PB.Parent = PText
6534PB.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
6535PB.BorderColor3 = Color3.new(0.470588, 0.47451, 0.517647)
6536PB.BorderSizePixel = 0
6537PB.Position = UDim2.new(0.0136517286, 0, 0.864077687, 0)
6538PB.Size = UDim2.new(0, 200, 0, 50)
6539PB.Font = Enum.Font.GothamBold
6540PB.Text = "Add Plugin"
6541PB.TextColor3 = Color3.new(1, 1, 1)
6542PB.TextSize = 14
6543PB.MouseButton1Down:Connect(function()
6544 if PName.Text ~= "" then
6545 loadCustoms[#loadCustoms+1] = {N = PName.Text, File = PTextBox.Text}
6546 updatesaves()
6547 end
6548end)
6549
6550PA.Name = "PA"
6551PA.Parent = PText
6552PA.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
6553PA.BorderColor3 = Color3.new(0.470588, 0.47451, 0.517647)
6554PA.BorderSizePixel = 0
6555PA.Position = UDim2.new(0.60300535, 0, 0.864077687, 0)
6556PA.Size = UDim2.new(0, 200, 0, 50)
6557PA.Font = Enum.Font.GothamBold
6558PA.Text = "Clear Text"
6559PA.TextColor3 = Color3.new(1, 1, 1)
6560PA.TextSize = 14
6561PA.MouseButton1Down:Connect(function()
6562 PTextBox.Text = ""
6563end)
6564
6565PAliases.Name = "PAliases"
6566PAliases.Parent = PText
6567PAliases.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
6568PAliases.BorderColor3 = Color3.new(0.470588, 0.47451, 0.517647)
6569PAliases.BorderSizePixel = 0
6570PAliases.Position = UDim2.new(0.243346006, 0, 0.788834929, 0)
6571PAliases.Size = UDim2.new(0, 183, 0, 22)
6572PAliases.Font = Enum.Font.Code
6573PAliases.PlaceholderText = "Command aliases (OPTIONAL)"
6574PAliases.Text = ""
6575PAliases.TextColor3 = Color3.new(1, 1, 1)
6576PAliases.TextSize = 14
6577PAliases.TextWrapped = true
6578PAliases.TextXAlignment = Enum.TextXAlignment.Left
6579PAliases.ClearTextOnFocus = false
6580
6581PName.Name = "PName"
6582PName.Parent = PText
6583PName.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
6584PName.BorderColor3 = Color3.new(0.470588, 0.47451, 0.517647)
6585PName.BorderSizePixel = 0
6586PName.Position = UDim2.new(0.0114068445, 0, 0.788834929, 0)
6587PName.Size = UDim2.new(0, 114, 0, 22)
6588PName.Font = Enum.Font.Code
6589PName.PlaceholderText = "Command name..."
6590PName.Text = ""
6591PName.TextColor3 = Color3.new(1, 1, 1)
6592PName.TextSize = 14
6593PName.TextWrapped = true
6594PName.TextXAlignment = Enum.TextXAlignment.Left
6595PName.ClearTextOnFocus = false
6596
6597PDesc.Name = "PDesc"
6598PDesc.Parent = PText
6599PDesc.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
6600PDesc.BorderColor3 = Color3.new(0.470588, 0.47451, 0.517647)
6601PDesc.BorderSizePixel = 0
6602PDesc.Position = UDim2.new(0.60266161, 0, 0.788834929, 0)
6603PDesc.Size = UDim2.new(0, 200, 0, 22)
6604PDesc.Font = Enum.Font.Code
6605PDesc.PlaceholderText = "Command description..."
6606PDesc.Text = ""
6607PDesc.TextColor3 = Color3.new(1, 1, 1)
6608PDesc.TextSize = 14
6609PDesc.TextWrapped = true
6610PDesc.TextXAlignment = Enum.TextXAlignment.Left
6611PDesc.ClearTextOnFocus = false
6612
6613PTextBox.Name = "PTextBox"
6614PTextBox.Parent = PText
6615PTextBox.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
6616PTextBox.BorderColor3 = Color3.new(0.470588, 0.47451, 0.517647)
6617PTextBox.BorderSizePixel = 0
6618PTextBox.Position = UDim2.new(0.0133079849, 0, 0.0194174759, 0)
6619PTextBox.Size = UDim2.new(0, 510, 0, 308)
6620PTextBox.Font = Enum.Font.Code
6621PTextBox.PlaceholderText = "Paste raw text link here (EX. pastebin.com/raw/(link))..."
6622PTextBox.Text = ""
6623PTextBox.TextColor3 = Color3.new(1, 1, 1)
6624PTextBox.TextSize = 14
6625PTextBox.TextWrapped = true
6626PTextBox.TextXAlignment = Enum.TextXAlignment.Left
6627PTextBox.TextYAlignment = Enum.TextYAlignment.Top
6628PTextBox.ClearTextOnFocus = false
6629
6630PCopy.Name = "PCopy"
6631PCopy.Parent = PTextBox
6632PCopy.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
6633PCopy.BorderSizePixel = 0
6634PCopy.Position = UDim2.new(0.896078408, 0, 0.911764681, 0)
6635PCopy.Size = UDim2.new(0, 47, 0, 23)
6636PCopy.Font = Enum.Font.GothamBold
6637PCopy.Text = "Copy"
6638PCopy.TextColor3 = Color3.new(1, 1, 1)
6639PCopy.TextSize = 14
6640PCopy.MouseButton1Down:Connect(function()
6641 setclipboard(PTextBox.Text)
6642end)
6643
6644PC.Name = "PC"
6645PC.Parent = PText
6646PC.BackgroundColor3 = Color3.new(1, 1, 1)
6647PC.BackgroundTransparency = 1
6648PC.BorderSizePixel = 0
6649PC.Position = UDim2.new(0.406844109, 0, 0.878640771, 0)
6650PC.Size = UDim2.new(0, 97, 0, 38)
6651PC.Font = Enum.Font.GothamBold
6652PC.Text = "CMD-X PLUGINS"
6653PC.TextColor3 = Color3.new(1, 1, 1)
6654PC.TextSize = 12
6655
6656PRemove.Name = "PRemove"
6657PRemove.Parent = HolderOfP
6658PRemove.BackgroundColor3 = Color3.new(0.121569, 0.121569, 0.121569)
6659PRemove.BorderColor3 = Color3.new(0.0588235, 0.0627451, 0.0705882)
6660PRemove.BorderSizePixel = 0
6661PRemove.Position = UDim2.new(-0.000316262245, 0, 18.1280708, 0)
6662PRemove.Size = UDim2.new(0, 714, 0, 42)
6663
6664PPlugin.Name = "PPlugin"
6665PPlugin.Parent = PRemove
6666PPlugin.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
6667PPlugin.BackgroundTransparency = 0.10000000149012
6668PPlugin.BorderSizePixel = 0
6669PPlugin.Position = UDim2.new(0.273109257, 0, 0.238095239, 0)
6670PPlugin.Size = UDim2.new(0, 379, 0, 21)
6671PPlugin.Font = Enum.Font.GothamBold
6672PPlugin.Text = "Coming soon..."
6673PPlugin.TextColor3 = Color3.new(1, 1, 1)
6674PPlugin.TextSize = 14
6675PPlugin.TextXAlignment = Enum.TextXAlignment.Left
6676
6677PImage3.Name = "PImage3"
6678PImage3.Parent = PRemove
6679PImage3.BackgroundColor3 = Color3.new(1, 1, 1)
6680PImage3.BackgroundTransparency = 1
6681PImage3.BorderSizePixel = 0
6682PImage3.Position = UDim2.new(0.869747937, 0, 0, 0)
6683PImage3.Size = UDim2.new(0, 43, 0, 42)
6684PImage3.Image = "http://www.roblox.com/asset/?id=4673169548"
6685
6686PImage1.Name = "PImage1"
6687PImage1.Parent = PRemove
6688PImage1.BackgroundColor3 = Color3.new(1, 1, 1)
6689PImage1.BackgroundTransparency = 1
6690PImage1.BorderSizePixel = 0
6691PImage1.Position = UDim2.new(0.929972053, 0, 0, 0)
6692PImage1.Size = UDim2.new(0, 43, 0, 42)
6693PImage1.Image = "http://www.roblox.com/asset/?id=23151442"
6694PImage1.ScaleType = Enum.ScaleType.Fit
6695
6696PImage2.Name = "PImage2"
6697PImage2.Parent = PRemove
6698PImage2.BackgroundColor3 = Color3.new(1, 1, 1)
6699PImage2.BackgroundTransparency = 1
6700PImage2.BorderSizePixel = 0
6701PImage2.Position = UDim2.new(0.809523821, 0, 0.166666672, 0)
6702PImage2.Size = UDim2.new(0, 43, 0, 35)
6703PImage2.Image = "http://www.roblox.com/asset/?id=2249727556"
6704PImage2.ScaleType = Enum.ScaleType.Fit
6705
6706PExit.Name = "PExit"
6707PExit.Parent = HolderOfP
6708PExit.BackgroundColor3 = Color3.new(1, 1, 1)
6709PExit.BackgroundTransparency = 1
6710PExit.Position = UDim2.new(0.964985967, 0, 0, 0)
6711PExit.Size = UDim2.new(0, 24, 0, 24)
6712PExit.Font = Enum.Font.GothamBold
6713PExit.Text = "X"
6714PExit.TextColor3 = Color3.new(1, 1, 1)
6715PExit.TextScaled = true
6716PExit.TextSize = 14
6717PExit.TextWrapped = true
6718PExit.MouseButton1Down:Connect(function()
6719 local NumBelow = 0.05
6720 for i = 1,25 do
6721 wait(.1)
6722 HolderOfP.Transparency = HolderOfP.Transparency + NumBelow
6723 for i,v in pairs(HolderOfP:GetDescendants()) do
6724 v.Transparency = v.Transparency + NumBelow
6725 end
6726 end
6727 HolderOfP.Visible = false
6728end)
6729
6730function useCommand.loadcustom()
6731 if arguments[2] then
6732 lcNS = arguments[2]
6733 for i,v in pairs(loadCustoms) do
6734 if loadCustoms[i].N == lcNS then
6735 loadstring(game:HttpGet((loadCustoms[i].File),true))()
6736 end
6737 end
6738 else
6739 opx("*","2 arguments are needed for this command!")
6740 end
6741end
6742
6743function Locate(plr)
6744 for i,v in pairs(cmdlp.PlayerGui:GetChildren()) do
6745 if v.Name == plr.Name..'_LC' then
6746 v:Destroy()
6747 end
6748 end
6749 wait()
6750 if plr.Character and plr.Name ~= cmdlp.Name and not cmdlp.PlayerGui:FindFirstChild(plr.Name..'_LC') then
6751 local ESPholder = Instance.new("Folder", cmdlp.PlayerGui)
6752 ESPholder.Name = plr.Name..'_LC'
6753 for b,n in pairs (plr.Character:GetChildren()) do
6754 if n:IsA("BasePart") then
6755 local a = Instance.new("BoxHandleAdornment", ESPholder)
6756 a.Name = plr.Name
6757 a.Adornee = n
6758 a.AlwaysOnTop = true
6759 a.ZIndex = 0
6760 a.Size = n.Size
6761 a.Transparency = 0.8
6762 for i,m in pairs(plr.Character:GetChildren()) do
6763 if m:IsA("Part") or m:IsA("MeshPart") then
6764 if m.Name ~= "HumanoidRootPart" and m.Name ~= "Handle" or (m:IsA("Part")) then
6765 m.Material = "ForceField"
6766 a.Color = m.BrickColor
6767 end
6768 end
6769 end
6770 end
6771 end
6772 if plr.Character and plr.Character:FindFirstChild('Head') then
6773 local BillboardGui = Instance.new("BillboardGui", ESPholder)
6774 local TextLabel = Instance.new("TextLabel")
6775 BillboardGui.Adornee = plr.Character.Head
6776 BillboardGui.Name = plr.Name
6777 BillboardGui.Size = UDim2.new(0, 100, 0, 150)
6778 BillboardGui.StudsOffset = Vector3.new(0, 1, 0)
6779 BillboardGui.AlwaysOnTop = true
6780 TextLabel.Parent = BillboardGui
6781 TextLabel.BackgroundTransparency = 1
6782 TextLabel.Position = UDim2.new(0, 0, 0, -60)
6783 TextLabel.Size = UDim2.new(0, 100, 0, 100)
6784 TextLabel.Font = Enum.Font.SourceSansSemibold
6785 TextLabel.TextSize = 20
6786 TextLabel.TextColor3 = Color3.new(1, 1, 1)
6787 TextLabel.TextStrokeTransparency = 0.6
6788 TextLabel.TextYAlignment = Enum.TextYAlignment.Bottom
6789 plr.CharacterAdded:Connect(function()
6790 if ESPholder ~= nil and ESPholder.Parent ~= nil then
6791 lcLoopFunc:Disconnect()
6792 ESPholder:Destroy()
6793 repeat wait(1) until plr.Character:FindFirstChild('HumanoidRootPart') and plr.Character:FindFirstChild('Humanoid')
6794 Locate(plr)
6795 end
6796 end)
6797 local function lcLoop()
6798 if cmdlp.PlayerGui:FindFirstChild(plr.Name..'_LC') then
6799 if plr.Character and plr.Character:FindFirstChild('HumanoidRootPart') and plr.Character:FindFirstChild('Humanoid') then
6800 TextLabel.Text = plr.Name.."Studs: ".. math.floor((cmdlp.Character.HumanoidRootPart.Position - plr.Character.HumanoidRootPart.Position).magnitude).."Health: "..plr.Character.Humanoid.Health
6801 end
6802 else
6803 lcLoopFunc:Disconnect()
6804 end
6805 end
6806 lcLoopFunc = game:GetService("RunService").RenderStepped:Connect(lcLoop)
6807 end
6808 end
6809end
6810
6811local autoObby = false
6812function useCommand.autoobby()
6813 opx("-","Now Auto obbying")
6814 autoObby = true
6815 cmdlp.Character.Humanoid.Running:Connect(function(speed)
6816 if speed > 0 and autoObby == true and cmdlp.Character.Humanoid.FloorMaterial == Enum.Material.Air then
6817 cmdlp.Character.Humanoid:ChangeState("Jumping")
6818 end
6819 end)
6820end
6821
6822function useCommand.unautoobby()
6823 opx("-","No longer Auto obbying")
6824 autoObby = false
6825end
6826
6827function useCommand.find()
6828 if arguments[2] then
6829 target = findplr(arguments[2])
6830 if target ~= nil then
6831 opx("-",target.Name.." is now being found")
6832 Locate(target)
6833 else
6834 opx("*","Player does not exist!")
6835 end
6836 else
6837 opx("*","2 arguments are needed for this command!")
6838 end
6839end
6840
6841function useCommand.unfind()
6842 if arguments[2] then
6843 target = findplr(arguments[2])
6844 if target ~= nil then
6845 opx("-",target.Name.." is no longer being found")
6846 cmdlp.PlayerGui[target.Name.."_LC"]:Destroy()
6847 for i,m in pairs(target.Character:GetChildren()) do
6848 if m.Name ~= "HumanoidRootPart" and m.Name ~= "Handle" or (m:IsA("Part")) then
6849 m.Material = "Plastic"
6850 end
6851 end
6852 else
6853 opx("*","Player does not exist!")
6854 end
6855 else
6856 opx("*","2 arguments are needed for this command!")
6857 end
6858end
6859
6860function useCommand.clickdelete()
6861 if TextButtonpoo.Visible == false then
6862 TextButtonpoo.Visible = true
6863 opx("-","Click delete loaded")
6864 else
6865 TextButtonpoo.Visible = false
6866 opx("-","Click delete unloaded")
6867 end
6868end
6869
6870cmdp.PlayerAdded:connect(function(plr)
6871 plr.Chatted:connect(function(msg)
6872 if logsEnabled == true then
6873 CreateLabel(plr.Name,msg)
6874 end
6875 end)
6876end)
6877for i,v in pairs(cmdp:GetPlayers()) do
6878 v.Chatted:connect(function(msg)
6879 if logsEnabled == true then
6880 CreateLabel(v.Name,msg)
6881 end
6882 end)
6883end
6884
6885function useCommand.logs()
6886 logsEnabled = true
6887 if logsframe.Visible == false then
6888 opx("-","Logs have been loaded")
6889 logsframe.Visible = true
6890 logsframe:TweenSize(UDim2.new(0,300,0,433), Enum.EasingDirection.In, Enum.EasingStyle.Quad, .5)
6891 elseif logsframe.Visible == true then
6892 opx("-","Logs have been unloaded")
6893 logsframe.Visible = false
6894 logsEnabled = false
6895 end
6896end
6897
6898function useCommand.test()
6899 opx("-","")
6900end
6901
6902function useCommand.testa()
6903 opx("-","grr fucking baby niggas")
6904 workspace.Baby:Destroy()
6905end
6906
6907function useCommand.time()
6908 function localHour(hour)
6909 local h = "{hour}"
6910 local result = string.gsub(h, "{(%w+)}", hour)
6911 return result
6912 end
6913 local wc = {"afghanistan","albania","algeria","andorra","angola","antiguaandbarbuda","argentinia","armenia","australia","austrianempire","azerbijan","baden","thebahamas","bahrain","bangladesh","barbados","bavaria","belarus","belgium","belize","benin","bolivia","bosniaandherzegovina","botswana","brazil","brunei","brunswickandluneberg","bulgaria","burkinafaso","burma","burundi","caboverde","cambodia","cameroon","canada","thecaymanislands","centralafricanrepublic","centralamericanfederation","chad","chile","china","colombia","comoros","thecongofreestate","costarica","coted'ivoire","croatia","cuba","cyprus","czechia","czechoslovakia","democraticrepublicofcongo","denmark","dijbouti","dominica","dominicanrepublic","theduchyofparma","eastgermany","ecuador","egypt","elsalvador","equatorialguinea","eritrea","estonia","eswatini","ethiopia","federalgovernmentofgermany","fiji","finland","france","gabon","thegambia","georgia","germany","ghana","thegrandduchyoftuscany","greece","grenada","guatemala","guinea","guinea-bissau","guyana","haiti","hanover","hanseaticrepublics","hawaii","hesse","holysee","honduras","hungary","iceland","india","indonesia","iran","iraq","ireland","israel","italy","jamaica","japan","jordan","kazakhstan","kenya","kingdomofserbia","kiribati","korea","kosovo","kuwait","kyrgyzstan","laos","latvia","lebanon","lewchew","liberia","libya","liechtenstein","lithuania","luxembourg","madagascar","malawi","malaysia","maldives","mali","malta","marshall islands","mauritania","mauritius","mecklenburg-schwerin","mecklenberg-strelitz","mexico","micronesia","moldova","monaco","mongolia","montenegro","morocco","mozambique","namibia","nassau","nauru","nepal","thenetherlands","newzealand","nicargua","niger","nigeria","northgermanconfederation","northgermanunion","northmacedonia","norway","oldenburg","oman","orangefreestate","pakistan","palau","panama","papalstates","papuanewguinea","paraguay","peru","philippines","piedmont-sardinia","poland","portugal","qatar","republicofgenoa","republicofkorea","republicofthecongo","romania","russia","rwanda","saintkittsandnevis","saintlucia","saintvincentandthegrenadines","samoa","sanmarino","saotomeandprincipe","saudiarabia","schaumburg-lippe","senegal","serbia","seychelles","sierraleone","singapore","slovakia","slovenia","thesolomonislands","somalia","southafrica","southsudan","spain","srilanka","sudan","suriname","sweden","switzerland","syria","tajikistan","tanzania","texas","thailand","timor-leste","togo","tonga","trinidadandtobago","tunisia","turkey","turkmenistan","tuvalu","twosicilies","uganda","ukraine","unionofsoviertsocialistrepublics","theunitedarabemirates","theunitedkingdom","uruguay","uzbekistan","vanuatu","venezuela","vietnam","wurttemberg","yemen","zambia","zimbabwe"}
6914 local now = os.time()
6915 local malformedHour = localHour(os.date("!*t", now))
6916 arguments[2] = arguments[2]:lower()
6917 if arguments[2] == "a" then
6918 malformedHour = malformedHour+1
6919 elseif arguments[2] == "acdt" then
6920 malformedHour = malformedHour+10
6921 elseif arguments[2] == "acst" then
6922 malformedHour = malformedHour+9
6923 elseif arguments[2] == "act" then
6924 malformedHour = malformedHour-5
6925 elseif arguments[2] == "act2" then
6926 malformedHour = malformedHour+10
6927 elseif arguments[2] == "acwst" then
6928 malformedHour = malformedHour+9
6929 elseif arguments[2] == "adt" then
6930 malformedHour = malformedHour+4
6931 elseif arguments[2] == "adt2" then
6932 malformedHour = malformedHour-3
6933 elseif arguments[2] == "aedt" then
6934 malformedHour = malformedHour+11
6935 elseif arguments[2] == "aest" then
6936 malformedHour = malformedHour+10
6937 elseif arguments[2] == "aet" then
6938 malformedHour = malformedHour+math.random(10,11)
6939 elseif arguments[2] == "aft" then
6940 malformedHour = malformedHour+4
6941 elseif arguments[2] == "akdt" then
6942 malformedHour = malformedHour-8
6943 elseif arguments[2] == "akst" then
6944 malformedHour = malformedHour-9
6945 elseif arguments[2] == "almt" then
6946 malformedHour = malformedHour+6
6947 elseif arguments[2] == "amst" then
6948 malformedHour = malformedHour-3
6949 elseif arguments[2] == "amst2" then
6950 malformedHour = malformedHour+5
6951 elseif arguments[2] == "amt" then
6952 malformedHour = malformedHour-4
6953 elseif arguments[2] == "amt2" then
6954 malformedHour = malformedHour+4
6955 elseif arguments[2] == "anast" then
6956 malformedHour = malformedHour+12
6957 elseif arguments[2] == "anat" then
6958 malformedHour = malformedHour+12
6959 elseif arguments[2] == "aqtt" then
6960 malformedHour = malformedHour+5
6961 elseif arguments[2] == "art" then
6962 malformedHour = malformedHour-3
6963 elseif arguments[2] == "ast" then
6964 malformedHour = malformedHour+3
6965 elseif arguments[2] == "ast2" then
6966 malformedHour = malformedHour-4
6967 elseif arguments[2] == "at" then
6968 malformedHour = malformedHour-math.random(3,4)
6969 elseif arguments[2] == "awdt" then
6970 malformedHour = malformedHour+9
6971 elseif arguments[2] == "awst" then
6972 malformedHour = malformedHour+8
6973 elseif arguments[2] == "azost" then
6974 malformedHour = malformedHour
6975 elseif arguments[2] == "azot" then
6976 malformedHour = malformedHour-1
6977 elseif arguments[2] == "azst" then
6978 malformedHour = malformedHour+5
6979 elseif arguments[2] == "azt" then
6980 malformedHour = malformedHour+4
6981 elseif arguments[2] == "aoe" then
6982 malformedHour = malformedHour-12
6983 elseif arguments[2] == "b" then
6984 malformedHour = malformedHour+2
6985 elseif arguments[2] == "bnt" then
6986 malformedHour = malformedHour+8
6987 elseif arguments[2] == "bot" then
6988 malformedHour = malformedHour-4
6989 elseif arguments[2] == "brst" then
6990 malformedHour = malformedHour-2
6991 elseif arguments[2] == "brt" then
6992 malformedHour = malformedHour-3
6993 elseif arguments[2] == "bst" then
6994 malformedHour = malformedHour+6
6995 elseif arguments[2] == "bst2" then
6996 malformedHour = malformedHour+11
6997 elseif arguments[2] == "bst3" then
6998 malformedHour = malformedHour+1
6999 elseif arguments[2] == "btt" then
7000 malformedHour = malformedHour+6
7001 elseif arguments[2] == "c" then
7002 malformedHour = malformedHour+3
7003 elseif arguments[2] == "cast" then
7004 malformedHour = malformedHour+8
7005 elseif arguments[2] == "cat" then
7006 malformedHour = malformedHour+2
7007 elseif arguments[2] == "cct" then
7008 malformedHour = malformedHour+6
7009 elseif arguments[2] == "cdt" then
7010 malformedHour = malformedHour-5
7011 elseif arguments[2] == "cest" then
7012 malformedHour = malformedHour+2
7013 elseif arguments[2] == "cet" then
7014 malformedHour = malformedHour+1
7015 elseif arguments[2] == "chadt" then
7016 malformedHour = malformedHour+14
7017 elseif arguments[2] == "chast" then
7018 malformedHour = malformedHour+13
7019 elseif arguments[2] == "chost" then
7020 malformedHour = malformedHour+9
7021 elseif arguments[2] == "chot" then
7022 malformedHour = malformedHour+8
7023 elseif arguments[2] == "chut" then
7024 malformedHour = malformedHour+10
7025 elseif arguments[2] == "cidst" then
7026 malformedHour = malformedHour-4
7027 elseif arguments[2] == "cist" then
7028 malformedHour = malformedHour-5
7029 elseif arguments[2] == "ckt" then
7030 malformedHour = malformedHour-10
7031 elseif arguments[2] == "clst" then
7032 malformedHour = malformedHour-3
7033 elseif arguments[2] == "clt" then
7034 malformedHour = malformedHour-4
7035 elseif arguments[2] == "cot" then
7036 malformedHour = malformedHour-5
7037 elseif arguments[2] == "cst" then
7038 malformedHour = malformedHour-6
7039 elseif arguments[2] == "cst2" then
7040 malformedHour = malformedHour+8
7041 elseif arguments[2] == "cst3" then
7042 malformedHour = malformedHour-5
7043 elseif arguments[2] == "ct" then
7044 malformedHour = malformedHour-math.random(5,6)
7045 elseif arguments[2] == "cvt" then
7046 malformedHour = malformedHour-1
7047 elseif arguments[2] == "cxt" then
7048 malformedHour = malformedHour+7
7049 elseif arguments[2] == "chst" then
7050 malformedHour = malformedHour+10
7051 elseif arguments[2] == "d" then
7052 malformedHour = malformedHour+4
7053 elseif arguments[2] == "davt" then
7054 malformedHour = malformedHour+7
7055 elseif arguments[2] == "ddut" then
7056 malformedHour = malformedHour+10
7057 elseif arguments[2] == "e" then
7058 malformedHour = malformedHour+5
7059 elseif arguments[2] == "easst" then
7060 malformedHour = malformedHour-5
7061 elseif arguments[2] == "east" then
7062 malformedHour = malformedHour-6
7063 elseif arguments[2] == "eat" then
7064 malformedHour = malformedHour+3
7065 elseif arguments[2] == "ect" then
7066 malformedHour = malformedHour-5
7067 elseif arguments[2] == "edt" then
7068 malformedHour = malformedHour-4
7069 elseif arguments[2] == "eest" then
7070 malformedHour = malformedHour+3
7071 elseif arguments[2] == "eet" then
7072 malformedHour = malformedHour+2
7073 elseif arguments[2] == "egst" then
7074 malformedHour = malformedHour
7075 elseif arguments[2] == "egt" then
7076 malformedHour = malformedHour-1
7077 elseif arguments[2] == "est" then
7078 malformedHour = malformedHour-5
7079 elseif arguments[2] == "et" then
7080 malformedHour = malformedHour-math.random(4,5)
7081 elseif arguments[2] == "f" then
7082 malformedHour = malformedHour+6
7083 elseif arguments[2] == "fet" then
7084 malformedHour = malformedHour+3
7085 elseif arguments[2] == "fjst" then
7086 malformedHour = malformedHour+13
7087 elseif arguments[2] == "fjt" then
7088 malformedHour = malformedHour+12
7089 elseif arguments[2] == "fkst" then
7090 malformedHour = malformedHour-3
7091 elseif arguments[2] == "fkt" then
7092 malformedHour = malformedHour-4
7093 elseif arguments[2] == "fnt" then
7094 malformedHour = malformedHour-2
7095 elseif arguments[2] == "g" then
7096 malformedHour = malformedHour+7
7097 elseif arguments[2] == "galt" then
7098 malformedHour = malformedHour-6
7099 elseif arguments[2] == "gamt" then
7100 malformedHour = malformedHour-9
7101 elseif arguments[2] == "get" then
7102 malformedHour = malformedHour+4
7103 elseif arguments[2] == "gft" then
7104 malformedHour = malformedHour-3
7105 elseif arguments[2] == "gilt" then
7106 malformedHour = malformedHour+12
7107 elseif arguments[2] == "gmt" then
7108 malformedHour = malformedHour
7109 elseif arguments[2] == "gst" then
7110 malformedHour = malformedHour+4
7111 elseif arguments[2] == "gst2" then
7112 malformedHour = malformedHour-2
7113 elseif arguments[2] == "gyt" then
7114 malformedHour = malformedHour-4
7115 elseif arguments[2] == "h" then
7116 malformedHour = malformedHour+8
7117 elseif arguments[2] == "hdt" then
7118 malformedHour = malformedHour-9
7119 elseif arguments[2] == "hkt" then
7120 malformedHour = malformedHour+8
7121 elseif arguments[2] == "hovst" then
7122 malformedHour = malformedHour+8
7123 elseif arguments[2] == "hovt" then
7124 malformedHour = malformedHour+7
7125 elseif arguments[2] == "hst" then
7126 malformedHour = malformedHour-10
7127 elseif arguments[2] == "i" then
7128 malformedHour = malformedHour+9
7129 elseif arguments[2] == "ict" then
7130 malformedHour = malformedHour+7
7131 elseif arguments[2] == "idt" then
7132 malformedHour = malformedHour+3
7133 elseif arguments[2] == "iot" then
7134 malformedHour = malformedHour+6
7135 elseif arguments[2] == "irdt" then
7136 malformedHour = malformedHour+4
7137 elseif arguments[2] == "irkst" then
7138 malformedHour = malformedHour+9
7139 elseif arguments[2] == "irkt" then
7140 malformedHour = malformedHour+8
7141 elseif arguments[2] == "irst" then
7142 malformedHour = malformedHour+3
7143 elseif arguments[2] == "ist" then
7144 malformedHour = malformedHour+5
7145 elseif arguments[2] == "ist2" then
7146 malformedHour = malformedHour+1
7147 elseif arguments[2] == "jst" then
7148 malformedHour = malformedHour+9
7149 elseif arguments[2] == "k" then
7150 malformedHour = malformedHour+10
7151 elseif arguments[2] == "kgt" then
7152 malformedHour = malformedHour+6
7153 elseif arguments[2] == "kost" then
7154 malformedHour = malformedHour+11
7155 elseif arguments[2] == "krast" then
7156 malformedHour = malformedHour+8
7157 elseif arguments[2] == "krat" then
7158 malformedHour = malformedHour+7
7159 elseif arguments[2] == "kst" then
7160 malformedHour = malformedHour+9
7161 elseif arguments[2] == "kuyt" then
7162 malformedHour = malformedHour+4
7163 elseif arguments[2] == "l" then
7164 malformedHour = malformedHour+11
7165 elseif arguments[2] == "lhdt" then
7166 malformedHour = malformedHour+11
7167 elseif arguments[2] == "lhst" then
7168 malformedHour = malformedHour+10
7169 elseif arguments[2] == "lint" then
7170 malformedHour = malformedHour+14
7171 elseif arguments[2] == "m" then
7172 malformedHour = malformedHour+12
7173 elseif arguments[2] == "magst" then
7174 malformedHour = malformedHour+12
7175 elseif arguments[2] == "magt" then
7176 malformedHour = malformedHour+11
7177 elseif arguments[2] == "mart" then
7178 malformedHour = malformedHour-9
7179 elseif arguments[2] == "mawt" then
7180 malformedHour = malformedHour+5
7181 elseif arguments[2] == "mdt" then
7182 malformedHour = malformedHour-6
7183 elseif arguments[2] == "mht" then
7184 malformedHour = malformedHour+12
7185 elseif arguments[2] == "mmt" then
7186 malformedHour = malformedHour+6
7187 elseif arguments[2] == "msd" then
7188 malformedHour = malformedHour+4
7189 elseif arguments[2] == "msk" then
7190 malformedHour = malformedHour+3
7191 elseif arguments[2] == "mst" then
7192 malformedHour = malformedHour-7
7193 elseif arguments[2] == "mt" then
7194 malformedHour = malformedHour-math.random(6,7)
7195 elseif arguments[2] == "mut" then
7196 malformedHour = malformedHour+4
7197 elseif arguments[2] == "mvt" then
7198 malformedHour = malformedHour+5
7199 elseif arguments[2] == "myt" then
7200 malformedHour = malformedHour+8
7201 elseif arguments[2] == "n" then
7202 malformedHour = malformedHour-1
7203 elseif arguments[2] == "nct" then
7204 malformedHour = malformedHour+11
7205 elseif arguments[2] == "ndt" then
7206 malformedHour = malformedHour-2
7207 elseif arguments[2] == "nfdt" then
7208 malformedHour = malformedHour+12
7209 elseif arguments[2] == "nft" then
7210 malformedHour = malformedHour+11
7211 elseif arguments[2] == "novst" then
7212 malformedHour = malformedHour+7
7213 elseif arguments[2] == "novt" then
7214 malformedHour = malformedHour+7
7215 elseif arguments[2] == "npt" then
7216 malformedHour = malformedHour+6
7217 elseif arguments[2] == "nrt" then
7218 malformedHour = malformedHour+12
7219 elseif arguments[2] == "nst" then
7220 malformedHour = malformedHour-3
7221 elseif arguments[2] == "nut" then
7222 malformedHour = malformedHour-11
7223 elseif arguments[2] == "nzdt" then
7224 malformedHour = malformedHour+13
7225 elseif arguments[2] == "nzst" then
7226 malformedHour = malformedHour+12
7227 elseif arguments[2] == "o" then
7228 malformedHour = malformedHour-2
7229 elseif arguments[2] == "omsst" then
7230 malformedHour = malformedHour+7
7231 elseif arguments[2] == "omst" then
7232 malformedHour = malformedHour+6
7233 elseif arguments[2] == "orat" then
7234 malformedHour = malformedHour+5
7235 elseif arguments[2] == "p" then
7236 malformedHour = malformedHour-3
7237 elseif arguments[2] == "pdt" then
7238 malformedHour = malformedHour-7
7239 elseif arguments[2] == "pet" then
7240 malformedHour = malformedHour-5
7241 elseif arguments[2] == "petst" then
7242 malformedHour = malformedHour+12
7243 elseif arguments[2] == "pett" then
7244 malformedHour = malformedHour+12
7245 elseif arguments[2] == "pgt" then
7246 malformedHour = malformedHour+10
7247 elseif arguments[2] == "phot" then
7248 malformedHour = malformedHour+13
7249 elseif arguments[2] == "pht" then
7250 malformedHour = malformedHour+8
7251 elseif arguments[2] == "pkt" then
7252 malformedHour = malformedHour+5
7253 elseif arguments[2] == "pmdt" then
7254 malformedHour = malformedHour-2
7255 elseif arguments[2] == "pmst" then
7256 malformedHour = malformedHour-3
7257 elseif arguments[2] == "pont" then
7258 malformedHour = malformedHour+11
7259 elseif arguments[2] == "pst" then
7260 malformedHour = malformedHour-8
7261 elseif arguments[2] == "pst2" then
7262 malformedHour = malformedHour-8
7263 elseif arguments[2] == "pt" then
7264 malformedHour = malformedHour-math.random(7,8)
7265 elseif arguments[2] == "pwt" then
7266 malformedHour = malformedHour+9
7267 elseif arguments[2] == "pyst" then
7268 malformedHour = malformedHour-3
7269 elseif arguments[2] == "pyt" then
7270 malformedHour = malformedHour-4
7271 elseif arguments[2] == "pyt2" then
7272 malformedHour = malformedHour+8
7273 elseif arguments[2] == "q" then
7274 malformedHour = malformedHour-4
7275 elseif arguments[2] == "qyzt" then
7276 malformedHour = malformedHour+6
7277 elseif arguments[2] == "r" then
7278 malformedHour = malformedHour-5
7279 elseif arguments[2] == "ret" then
7280 malformedHour = malformedHour+4
7281 elseif arguments[2] == "rott" then
7282 malformedHour = malformedHour-3
7283 elseif arguments[2] == "s" then
7284 malformedHour = malformedHour-6
7285 elseif arguments[2] == "sakt" then
7286 malformedHour = malformedHour+11
7287 elseif arguments[2] == "samt" then
7288 malformedHour = malformedHour+4
7289 elseif arguments[2] == "sast" then
7290 malformedHour = malformedHour+2
7291 elseif arguments[2] == "sbt" then
7292 malformedHour = malformedHour+11
7293 elseif arguments[2] == "sct" then
7294 malformedHour = malformedHour+4
7295 elseif arguments[2] == "sgt" then
7296 malformedHour = malformedHour+8
7297 elseif arguments[2] == "sret" then
7298 malformedHour = malformedHour+11
7299 elseif arguments[2] == "srt" then
7300 malformedHour = malformedHour-3
7301 elseif arguments[2] == "sst" then
7302 malformedHour = malformedHour-11
7303 elseif arguments[2] == "syot" then
7304 malformedHour = malformedHour+3
7305 elseif arguments[2] == "t" then
7306 malformedHour = malformedHour-7
7307 elseif arguments[2] == "taht" then
7308 malformedHour = malformedHour-10
7309 elseif arguments[2] == "tft" then
7310 malformedHour = malformedHour+5
7311 elseif arguments[2] == "tjt" then
7312 malformedHour = malformedHour+5
7313 elseif arguments[2] == "tkt" then
7314 malformedHour = malformedHour+13
7315 elseif arguments[2] == "tlt" then
7316 malformedHour = malformedHour+9
7317 elseif arguments[2] == "tmt" then
7318 malformedHour = malformedHour+5
7319 elseif arguments[2] == "tost" then
7320 malformedHour = malformedHour+14
7321 elseif arguments[2] == "tot" then
7322 malformedHour = malformedHour+13
7323 elseif arguments[2] == "trt" then
7324 malformedHour = malformedHour+3
7325 elseif arguments[2] == "tvt" then
7326 malformedHour = malformedHour+12
7327 elseif arguments[2] == "u" then
7328 malformedHour = malformedHour-8
7329 elseif arguments[2] == "ulast" then
7330 malformedHour = malformedHour+9
7331 elseif arguments[2] == "ulat" then
7332 malformedHour = malformedHour+8
7333 elseif arguments[2] == "utc" then
7334 malformedHour = malformedHour
7335 elseif arguments[2] == "uyst" then
7336 malformedHour = malformedHour-2
7337 elseif arguments[2] == "uyt" then
7338 malformedHour = malformedHour-3
7339 elseif arguments[2] == "uzt" then
7340 malformedHour = malformedHour+5
7341 elseif arguments[2] == "v" then
7342 malformedHour = malformedHour-9
7343 elseif arguments[2] == "vet" then
7344 malformedHour = malformedHour-4
7345 elseif arguments[2] == "vlast" then
7346 malformedHour = malformedHour+11
7347 elseif arguments[2] == "vlat" then
7348 malformedHour = malformedHour+10
7349 elseif arguments[2] == "vost" then
7350 malformedHour = malformedHour+6
7351 elseif arguments[2] == "vut" then
7352 malformedHour = malformedHour+11
7353 elseif arguments[2] == "w" then
7354 malformedHour = malformedHour-10
7355 elseif arguments[2] == "wakt" then
7356 malformedHour = malformedHour+12
7357 elseif arguments[2] == "warst" then
7358 malformedHour = malformedHour-3
7359 elseif arguments[2] == "wast" then
7360 malformedHour = malformedHour+2
7361 elseif arguments[2] == "wat" then
7362 malformedHour = malformedHour+1
7363 elseif arguments[2] == "west" then
7364 malformedHour = malformedHour+1
7365 elseif arguments[2] == "wet" then
7366 malformedHour = malformedHour
7367 elseif arguments[2] == "wft" then
7368 malformedHour = malformedHour+12
7369 elseif arguments[2] == "wgst" then
7370 malformedHour = malformedHour-2
7371 elseif arguments[2] == "wgt" then
7372 malformedHour = malformedHour-3
7373 elseif arguments[2] == "wib" then
7374 malformedHour = malformedHour+7
7375 elseif arguments[2] == "wit" then
7376 malformedHour = malformedHour+9
7377 elseif arguments[2] == "wita" then
7378 malformedHour = malformedHour+8
7379 elseif arguments[2] == "wst" then
7380 malformedHour = malformedHour+14
7381 elseif arguments[2] == "wst2" then
7382 malformedHour = malformedHour+1
7383 elseif arguments[2] == "wt" then
7384 malformedHour = malformedHour
7385 elseif arguments[2] == "x" then
7386 malformedHour = malformedHour-11
7387 elseif arguments[2] == "y" then
7388 malformedHour = malformedHour-12
7389 elseif arguments[2] == "yakst" then
7390 malformedHour = malformedHour+10
7391 elseif arguments[2] == "yakt" then
7392 malformedHour = malformedHour+9
7393 elseif arguments[2] == "yapt" then
7394 malformedHour = malformedHour+10
7395 elseif arguments[2] == "yekst" then
7396 malformedHour = malformedHour+6
7397 elseif arguments[2] == "yekt" then
7398 malformedHour = malformedHour+5
7399 elseif arguments[2] == "z" then
7400 malformedHour = malformedHour
7401 end
7402 if malformedHour == 24 then
7403 malformedHour = "12AM"
7404 elseif malformedHour == 1 or malformedHour == 25 then
7405 malformedHour = "1AM"
7406 elseif malformedHour == 2 or malformedHour == 26 then
7407 malformedHour = "2AM"
7408 elseif malformedHour == 3 or malformedHour == 27 then
7409 malformedHour = "3AM"
7410 elseif malformedHour == 4 or malformedHour == 28 then
7411 malformedHour = "4AM"
7412 elseif malformedHour == 5 or malformedHour == 29 then
7413 malformedHour = "5AM"
7414 elseif malformedHour == 6 or malformedHour == 30 then
7415 malformedHour = "6AM"
7416 elseif malformedHour == 7 or malformedHour == 31 then
7417 malformedHour = "7AM"
7418 elseif malformedHour == 8 or malformedHour == 32 then
7419 malformedHour = "8AM"
7420 elseif malformedHour == 9 or malformedHour == 33 then
7421 malformedHour = "9AM"
7422 elseif malformedHour == 10 or malformedHour == 34 or malformedHour == -14 then
7423 malformedHour = "10AM"
7424 elseif malformedHour == 11 or malformedHour == -13 then
7425 malformedHour = "11AM"
7426 elseif malformedHour == 12 or malformedHour == -12 then
7427 malformedHour = "12PM"
7428 elseif malformedHour == 13 or malformedHour == -11 then
7429 malformedhour = "1PM"
7430 elseif malformedHour == 14 or malformedHour == -10 then
7431 malformedHour = "2PM"
7432 elseif malformedHour == 15 or malformedHour == -9 then
7433 malformedHour = "3PM"
7434 elseif malformedHour == 16 or malformedHour == -8 then
7435 malformedHour = "4PM"
7436 elseif malformedHour == 17 or malformedHour == -7 then
7437 malformedHour = "5PM"
7438 elseif malformedHour == 18 or malformedHour == -6 then
7439 malformedHour = "6PM"
7440 elseif malformedHour == 19 or malformedHour == -5 then
7441 malformedHour = "7PM"
7442 elseif malformedHour == 20 or malformedHour == -4 then
7443 malformedHour = "8PM"
7444 elseif malformedHour == 21 or malformedHour == -3 then
7445 malformedHour = "9PM"
7446 elseif malformedHour == 22 or malformedHour == -2 then
7447 malformedHour = "10PM"
7448 elseif malformedHour == 23 or malformedHour == -1 then
7449 malformedHour = "11PM"
7450 end
7451 opx("-","The time in "..arguments[2].." is "..malformedHour)
7452 game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("The time in, timezone: "..arguments[2]:upper().." is "..malformedHour,"All")
7453end
7454
7455function useCommand.removeforces()
7456 for i,f in pairs(cmdlp.Character:GetDescendants()) do
7457 if f:IsA("BodyForce") or f:IsA("BodyGyro") or f:IsA("BodyVelocity") or f:IsA("BodyAngularVelocity") or f:IsA("RocketPropulsion") or f:IsA("BodyThrust") then
7458 f:Destroy()
7459 end
7460 end
7461 opx("-","Removed all forces")
7462end
7463
7464local audioLogger = false
7465function useCommand.audiologger()
7466 local function tableContains(tbl, element)
7467 for _, v in ipairs(tbl) do
7468 if (rawequal(v, element)) then
7469 return true;
7470 end
7471 end
7472 return false;
7473 end
7474 s = {}
7475 function audioLogPlayers()
7476 for i,plr in pairs(cmdp:GetDescendants()) do
7477 if plr:IsA("Sound") then
7478 if string.len(plr.SoundId) <= 50 then
7479 local soundSplit = plr.SoundId:split("=")
7480 if tableContains(s,soundSplit[2]) ~= true and soundSplit[2] ~= nil then
7481 s[#s+1] = soundSplit[2]
7482 print(soundSplit[2])
7483 end
7484 end
7485 end
7486 end
7487 end
7488 opx("-","Audio logger activated do audiologgersave to stop and save")
7489 audioLogger = true
7490 repeat wait()
7491 audioLogPlayers()
7492 until audioLogger == false
7493end
7494
7495function useCommand.audiologgersave()
7496 opx("-","Audio logger stopped, file saved in workspace")
7497 audioLogger = false
7498 local GetName = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId)
7499 local filename = GetName.Name.." audiolog"..math.random(1,10000)
7500 audioIds = game:GetService("HttpService"):JSONEncode(s)
7501 writefile(filename..".CMD-X", audioIds)
7502end
7503
7504function useCommand.antilag()
7505 for i,ws in pairs(workspace:GetDescendants()) do
7506 if ws:IsA("BasePart") then
7507 ws.Material = "Plastic"
7508 elseif ws:IsA("Decal") or ws:IsA("Texture") or ws:IsA("ParticleEmitter") or ws:IsA("Sparkles") or ws:IsA("Fire") or ws:IsA("Smoke") and ws.Name ~= "face" then
7509 ws:Destroy()
7510 end
7511 end
7512 for i,ws in pairs(workspace:GetChildren()) do
7513 if ws:IsA("Accessory") or ws:IsA("Tool") then
7514 ws:Destroy()
7515 end
7516 end
7517 for i,ws in pairs(game.Lighting:GetDescendants()) do
7518 if ws:IsA("BasePart") then
7519 ws.Material = "Plastic"
7520 elseif ws:IsA("Decal") or ws:IsA("Texture") or ws:IsA("ParticleEmitter") or ws:IsA("Sparkles") or ws:IsA("Fire") or ws:IsA("Smoke") then
7521 ws:Destroy()
7522 end
7523 end
7524 opx("-","Attempted to minimalize lag as much as possible")
7525end
7526
7527function useCommand.clear()
7528 for i,ws in pairs(workspace:GetChildren()) do
7529 if ws:IsA("Accessory") or ws:IsA("Tool") then
7530 ws:Destroy()
7531 end
7532 end
7533 opx("-","Cleared all hats and gears from client")
7534end
7535
7536function useCommand.removeterrain()
7537 workspace.Terrain:Clear()
7538 opx("-","Removed terrain")
7539end
7540
7541function useCommand.phone()
7542 for _, hat in pairs(cmdlp.Character.Humanoid:GetAccessories()) do
7543 if hat.Handle ~= nil then
7544 local tool = Instance.new("Tool", cmdlp.Backpack)
7545 tool.Name = "poop123"
7546 tool.GripPos = Vector3.new(0.4, -0.9, 0)
7547 local hathandle = hat.Handle
7548 hathandle:FindFirstChildOfClass("Weld"):Destroy()
7549 hathandle.Parent = tool
7550 hathandle.Massless = true
7551 end
7552 end
7553 opx("-","Made your phone holdable")
7554end
7555
7556function useCommand.compliment()
7557 if arguments[2] then
7558 target = findplr(arguments[2])
7559 if target ~= nil then
7560 local compPick = {"Your avatar looks awesome","Your name makes me smile","You are the best person ever","If I could I would hug you","You make me happy","You have brightened up my day","You are the most amazing person I've ever met","Your avatar looks nice today","You are an amazing person","You are the king/queen","Don't drop your crown"}
7561 local value = math.random(1,#compPick)
7562 local picked_value = compPick[value]
7563 opx("-","You complimented "..target.Name)
7564 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(tostring(picked_value)..", "..target.Name, "All")
7565 else
7566 opx("*","Player does not exist!")
7567 end
7568 else
7569 opx("*","2 arguments are needed for this command!")
7570 end
7571end
7572
7573function useCommand.roast()
7574 if arguments[2] then
7575 target = findplr(arguments[2])
7576 if target ~= nil then
7577 local roastPick = {"I will build a sandcastle out of your dead nans ashes","Your brain has the capacity of a dried sea sponge","You make me cringe, I literally want to quit this game because of you","Your outfit is horrendous","Your name is horrendous","Your IQ is so low that even scientists cant zoom in on it","You are a femmie","You are fat","You stink of your nans cremation","How many people does it take to screw in a lightbulb? 20 of your kind","I can smell you through the screen","Candy shop got robbed, didn't know you did it","You are poor","Your brain is the size of an average ants","Everything you've worked for, your whole life is embarassing","Go back to school","Are you dumb or just young","You make me feel e-sick","I very much dislike you","Settle along you peasent","You are worth nothing","I hope you suffer","Your words, they make no sense","Please leave the server you cretin","You make me sick","Huh? Didn't know infants could play roblox","I bet you live in a poverty stricken country","You belong in the special ed class","Is it just me or does someone smell, nvm thats just","Is it just me or is someone dumb, nvm thats just","Is it just me or is someone fat, nvm thats just"}
7578 local value = math.random(1,#roastPick)
7579 local picked_value = roastPick[value]
7580 opx("-","You roasted "..target.Name)
7581 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(tostring(picked_value)..", "..target.Name, "All")
7582 else
7583 opx("*","Player does not exist!")
7584 end
7585 else
7586 opx("*","2 arguments are needed for this command!")
7587 end
7588end
7589
7590function useCommand.singinfo()
7591 opx("-","Printed singinfo to F9")
7592 print("Step 1: Get your song lyrics")
7593 print("Step 2: Remove any blank lines")
7594 print("Step 3: Find and remove any swear words")
7595 print("Step 4: Put hashtags (#) at the end of each line")
7596 print("Step 5: Compress the lines to avoid whitespace errors")
7597 print("Step 6: Put your compressed text into a raw data uploading site such as pastebin or hastebin")
7598 print("Step 7: Insert the link into the sing command")
7599 print("To see a sample of what to do, visit: https://pastebin.com/raw/rNcWf8mK")
7600end
7601
7602function useCommand.sing()
7603 if arguments[2] == "genocide" then
7604 getSong = "https://pastebin.com/raw/rNcWf8mK"
7605 elseif arguments[2] == "babyshark" then
7606 getSong = "https://pastebin.com/raw/n9G4qwR4"
7607 elseif arguments[2] == "animethighs" then
7608 getSong = "https://pastebin.com/raw/VsUcnYyr"
7609 elseif arguments[2] == "evilfantasy" then
7610 getSong = "https://pastebin.com/raw/8Mqi4Vtb"
7611 elseif arguments[2] == "$harkattack" then
7612 getSong = "https://pastebin.com/raw/6aYw5Bih"
7613 elseif arguments[2] == "dora" then
7614 getSong = "https://pastebin.com/raw/KTruLCL7"
7615 elseif arguments[2] == "introversion" then
7616 getSong = "https://pastebin.com/raw/pkQNGdU8"
7617 elseif arguments[2] == "lucy" then
7618 getSong = "https://pastebin.com/raw/j47SaDjL"
7619 elseif arguments[2] == "tyler" then
7620 getSong = "https://pastebin.com/raw/Sna0chxq"
7621 elseif arguments[2] == "methhead" then
7622 getSong = "https://pastebin.com/raw/VAgv7eGE"
7623 elseif arguments[2] == "superfuntime" then
7624 getSong = "https://pastebin.com/raw/cgfzcb3d"
7625 elseif arguments[2] == "haha" then
7626 getSong = "https://pastebin.com/raw/pGE8kr1x"
7627 elseif arguments[2] == "diamonds" then
7628 getSong = "https://pastebin.com/raw/j7mvzu4s"
7629 else
7630 getSong = arguments[2]
7631 end
7632 local lyricsTable = game:HttpGet(getSong):split("#")
7633 local songTitle = lyricsTable[1]
7634 opx("-","Now singing "..songTitle)
7635 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Now singing "..songTitle, "All")
7636 table.remove(lyricsTable,1)
7637 for i,v in pairs(lyricsTable) do
7638 wait(5)
7639 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v, "All")
7640 end
7641 wait(5)
7642 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Finished singing "..songTitle, "All")
7643end
7644
7645function useCommand.deletepos()
7646 if arguments[2] then
7647 wpNS = getstring(2)
7648 for i,v in pairs(WPs) do
7649 if tostring(v.N) == tostring(wpNS) then
7650 table.remove(WPs,i)
7651 updatesaves()
7652 end
7653 end
7654 opx("-","Deleted position "..tostring(wpNS))
7655 else
7656 opx("*","2 arguments are needed for this command!")
7657 end
7658end
7659
7660function useCommand.clearpos()
7661 WPs = {}
7662 updatesaves()
7663 opx("-","Cleared all waypoints")
7664end
7665
7666function useCommand.gotopos()
7667 if arguments[3] then
7668 if arguments[2] == "behind" then
7669 gotoPos = arguments[3]
7670 updatesaves()
7671 opx("-","GotoPos is now "..arguments[2].." "..arguments[3])
7672 elseif arguments[2] == "infront" then
7673 gotoPos = -arguments[3]
7674 updatesaves()
7675 opx("-","GotoPos is now "..arguments[2].." "..arguments[3])
7676 elseif arguments[2] == "left" then
7677 gotoPosSide = -arguments[3]
7678 updatesaves()
7679 opx("-","GotoPosSide is now "..arguments[2].." "..arguments[3])
7680 elseif arguments[2] == "right" then
7681 gotoPosSide = arguments[3]
7682 updatesaves()
7683 opx("-","GotoPosSide is now "..arguments[2].." "..arguments[3])
7684 elseif arguments[2] == "above" then
7685 gotoPosHead = arguments[3]
7686 updatesaves()
7687 opx("-","GotoPosHead is now "..arguments[2].." "..arguments[3])
7688 elseif arguments[2] == "under" then
7689 gotoPosHead = -arguments[3]
7690 updatesaves()
7691 opx("-","GotoPosHead is now "..arguments[2].." "..arguments[3])
7692 else
7693 opx("*","A proper preset is needed")
7694 end
7695 else
7696 opx("*","3 arguments are needed for this command!")
7697 end
7698end
7699
7700local autoKey = false
7701function useCommand.autokey()
7702 if arguments[2] then
7703 entered0x = arguments[2]
7704 autoKey = true
7705 opx("-","Now auto keying "..entered0x)
7706 while autoKey == true do
7707 wait()
7708 if not game.UserInputService:GetFocusedTextBox() then
7709 if entered0x == "0" then
7710 keypress(0x30)
7711 elseif entered0x == "1" then
7712 keypress(0x31)
7713 elseif entered0x == "2" then
7714 keypress(0x32)
7715 elseif entered0x == "3" then
7716 keypress(0x33)
7717 elseif entered0x == "4" then
7718 keypress(0x34)
7719 elseif entered0x == "5" then
7720 keypress(0x35)
7721 elseif entered0x == "6" then
7722 keypress(0x36)
7723 elseif entered0x == "7" then
7724 keypress(0x37)
7725 elseif entered0x == "8" then
7726 keypress(0x38)
7727 elseif entered0x == "9" then
7728 keypress(0x39)
7729 elseif entered0x == "a" then
7730 keypress(0x41)
7731 elseif entered0x == "b" then
7732 keypress(0x42)
7733 elseif entered0x == "c" then
7734 keypress(0x43)
7735 elseif entered0x == "d" then
7736 keypress(0x44)
7737 elseif entered0x == "e" then
7738 keypress(0x45)
7739 elseif entered0x == "f" then
7740 keypress(0x46)
7741 elseif entered0x == "g" then
7742 keypress(0x47)
7743 elseif entered0x == "h" then
7744 keypress(0x48)
7745 elseif entered0x == "i" then
7746 keypress(0x49)
7747 elseif entered0x == "j" then
7748 keypress(0x4A)
7749 elseif entered0x == "k" then
7750 keypress(0x4B)
7751 elseif entered0x == "l" then
7752 keypress(0x4C)
7753 elseif entered0x == "m" then
7754 keypress(0x4D)
7755 elseif entered0x == "n" then
7756 keypress(0x4E)
7757 elseif entered0x == "o" then
7758 keypress(0x4F)
7759 elseif entered0x == "p" then
7760 keypress(0x50)
7761 elseif entered0x == "q" then
7762 keypress(0x51)
7763 elseif entered0x == "r" then
7764 keypress(0x52)
7765 elseif entered0x == "s" then
7766 keypress(0x53)
7767 elseif entered0x == "t" then
7768 keypress(0x54)
7769 elseif entered0x == "u" then
7770 keypress(0x55)
7771 elseif entered0x == "v" then
7772 keypress(0x56)
7773 elseif entered0x == "w" then
7774 keypress(0x57)
7775 elseif entered0x == "x" then
7776 keypress(0x58)
7777 elseif entered0x == "y" then
7778 keypress(0x59)
7779 elseif entered0x == "z" then
7780 keypress(0x5A)
7781 end
7782 end
7783 end
7784 else
7785 opx("*","2 arguments are needed for this command!")
7786 end
7787end
7788
7789function useCommand.unautokey()
7790 autoKey = false
7791 opx("-","Stopped autokey")
7792end
7793
7794function useCommand.swimwalk()
7795 opx("-","Now infinitely swimming")
7796 workspace.Gravity = 100
7797 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Climbing,false)
7798 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.FallingDown,false)
7799 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Flying,false)
7800 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Freefall,false)
7801 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.GettingUp,false)
7802 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Jumping,false)
7803 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Landed,false)
7804 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Physics,false)
7805 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.PlatformStanding,false)
7806 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Ragdoll,false)
7807 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Running,false)
7808 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.RunningNoPhysics,false)
7809 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Seated,false)
7810 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.StrafingNoPhysics,false)
7811 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Swimming,false)
7812 cmdlp.Character.Humanoid:ChangeState(Enum.HumanoidStateType.Swimming)
7813end
7814
7815function useCommand.instances()
7816 opx("-","There are "..#game:GetDescendants().." instances in this game")
7817end
7818
7819function useCommand.plugin()
7820 opx("-","Loaded Plugins GUI")
7821 HolderOfP.Visible = true
7822end
7823
7824function useCommand.loadcustomsclr()
7825 loadCustoms = {}
7826 updatesaves()
7827 opx("-","Cleared loadcustoms")
7828end
7829
7830function useCommand.antiwrldsgui()
7831 opx("-","antiwrldsGUI loading")
7832 loadstring(game:HttpGet(('https://pastebin.com/raw/1LUE7bXP'),true))()
7833 opx("-","antiwrldsGUI loaded")
7834end
7835
7836function useCommand.knife()
7837 opx("-","If you had a knife in your mouth you are now holding it")
7838 for _, hat in pairs(cmdlp.Character.Humanoid:GetAccessories()) do
7839 if hat.Handle ~= nil then
7840 if hat.Name == "YandereKnife" then
7841 local tool = Instance.new("Tool", cmdlp.Backpack)
7842 tool.Name = cmdlp.Name.."'s Blade"
7843 tool.Parent = cmdp.LocalPlayer.Character
7844 tool.GripForward = Vector3.new(-0, -0, -1)
7845 tool.GripPos = Vector3.new(-0.83, -0, 0.11)
7846 tool.GripRight = Vector3.new(0, -1, 0)
7847 tool.GripUp = Vector3.new(1, 0, -0)
7848 local hathandle = hat.Handle
7849 hathandle:FindFirstChildOfClass("Weld"):Destroy()
7850 hathandle.Parent = tool
7851 hathandle.Massless = true
7852 end
7853 end
7854 end
7855 local Anim = Instance.new("Animation")
7856 Anim.AnimationId = "rbxassetid://74799600"
7857 local play = cmdlp.Character.Humanoid:LoadAnimation(Anim)
7858 while wait() do
7859 for i,v in pairs(cmdlp.Character:GetChildren()) do
7860 if v:IsA("Tool") then
7861 v.Equipped:Connect(function(Mouse)
7862 Mouse.Button1Down:Connect(function()
7863 play:Play()
7864 wait(1)
7865 play:Stop()
7866 end)
7867 end)
7868 end
7869 end
7870 end
7871end
7872
7873function useCommand.sai()
7874 opx("-","If you had sais on your waist you are now holding them")
7875 for _, hat in pairs(cmdp.LocalPlayer.Character.Humanoid:GetAccessories()) do
7876 if hat.Handle ~= nil then
7877 if hat.Name == "Dual SaiAccessory" then
7878 local tool = Instance.new("Tool", cmdp.LocalPlayer.Backpack)
7879 tool.Name = cmdlp.Name.."'s Sai"
7880 tool.Parent = cmdp.LocalPlayer.Character
7881 tool.GripForward = Vector3.new(0.035, 0.743, 0.669)
7882 tool.GripPos = Vector3.new(1.46, 0.89, -0.97)
7883 tool.GripRight = Vector3.new(0.999, -0.026, -0.023)
7884 tool.GripUp = Vector3.new(-0, -0.669, 0.743)
7885 local hathandle = hat.Handle
7886 hathandle:FindFirstChildOfClass("Weld"):Destroy()
7887 hathandle.Parent = tool
7888 hathandle.Massless = true
7889 end
7890 end
7891 end
7892 local Anim = Instance.new("Animation")
7893 Anim.AnimationId = "rbxassetid://185824714"
7894 local play = cmdlp.Character.Humanoid:LoadAnimation(Anim)
7895 play:Play()
7896end
7897
7898function useCommand.present()
7899 opx("-","If you had a present you are now holding it")
7900 for _, hat in pairs(cmdp.LocalPlayer.Character.Humanoid:GetAccessories()) do
7901 if hat.Handle ~= nil then
7902 local tool = Instance.new("Tool", cmdp.LocalPlayer.Backpack)
7903 tool.Name = cmdp.LocalPlayer.Name.."s present"
7904 tool.Parent = cmdp.LocalPlayer.Character
7905 tool.GripForward = Vector3.new(0, 0, -1)
7906 tool.GripPos = Vector3.new(-0, -0.54, 0.72)
7907 tool.GripRight = Vector3.new(1, 0, 0)
7908 tool.GripUp = Vector3.new(0, 1, 0)
7909 local hathandle = hat.Handle
7910 hathandle:FindFirstChildOfClass("Weld"):Destroy()
7911 hathandle.Parent = tool
7912 hathandle.Massless = true
7913 end
7914 end
7915end
7916
7917function useCommand.boombox()
7918 opx("-","If you had a boombox on your back you are now holding it")
7919 for _, hat in pairs(cmdlp.Character.Humanoid:GetAccessories()) do
7920 if hat.Handle ~= nil then
7921 if hat.Name == "Boomblox Back Boombox" then
7922 local tool = Instance.new("Tool", cmdlp.Backpack)
7923 tool.Name = cmdlp.Name.."s boombox"
7924 tool.Parent = cmdlp.Character
7925 tool.GripForward = Vector3.new(0.935, 0.354, -0.03)
7926 tool.GripPos = Vector3.new(1.36, -1.05, 0)
7927 tool.GripRight = Vector3.new(0.031, 0.003, 1)
7928 tool.GripUp = Vector3.new(-0.354, 0.935, 0.008)
7929 local hathandle = hat.Handle
7930 hathandle:FindFirstChildOfClass("Weld"):Destroy()
7931 hathandle.Parent = tool
7932 hathandle.Massless = true
7933 end
7934 end
7935 end
7936end
7937
7938function useCommand.gearhat()
7939 for i,tool in pairs(cmdlp.Backpack:GetChildren()) do
7940 if tool:IsA("Tool") then
7941 tool.Parent = cmdlp.Backpack
7942 tool.GripForward = Vector3.new(0, 1, 0)
7943 tool.GripPos = Vector3.new(1.49, 1.45, -0.97)
7944 tool.GripRight = Vector3.new(1, 0, 0)
7945 tool.GripUp = Vector3.new(0, 0, 1)
7946 tool.Parent = cmdlp.Character
7947 end
7948 end
7949 opx("-","Your gears are now hats")
7950end
7951
7952function useCommand.bypass()
7953 local message = getstring(2)
7954 local s1 = message:gsub("i", "iأ")
7955 local s2 = s1:gsub("e", "eأ")
7956 local s3 = s2:gsub("u", "uأ")
7957 local s4 = s3:gsub("f", "fأ")
7958 local s5 = s4:gsub("o", "oأ")
7959 local s6 = s5:gsub("c", "cأ")
7960 local s7 = s6:gsub("p", "pأ")
7961 local s8 = s7:gsub("s", "sأ")
7962 local s9 = s8:gsub("t", "tأ")
7963 opx("-","Successfully bypassed! "..s9)
7964 game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(s9, "All")
7965end
7966
7967function useCommand.emote()
7968 if arguments[2] then
7969 if cmd15(cmdlp) then
7970 animations = {
7971 ["Around Town"] = 3303391864;
7972 ["Top Rock"] = 3361276673;
7973 Fashionable = 3333331310;
7974 Robot = 3338025566;
7975 Twirl = 3334968680;
7976 Jacks = 3338066331;
7977 T = 3338010159;
7978 Shy = 3337978742;
7979 Monkey = 3333499508;
7980 ["Borock's Rage"] = 3236842542;
7981 ["Ud'zal's Summoning"] = 3303161675;
7982 ["Hype Dance"] = 3695333486;
7983 Godlike = 3337994105;
7984 Swoosh = 3361481910;
7985 Sneaky = 3334424322;
7986 ["Side to Side"] = 3333136415;
7987 Greatest = 3338042785;
7988 Louder = 3338083565;
7989 Celebrate = 3338097973;
7990 Haha = 3337966527;
7991 ["Get Out"] = 3333272779;
7992 Tree = 4049551434;
7993 Fishing = 3334832150;
7994 ["Fast Hands"] = 4265701731;
7995 Y = 4349285876;
7996 Zombie = 4210116953;
7997 ["Baby Dance"] = 4265725525;
7998 ["Line Dance"] = 4049037604;
7999 Dizzy = 3361426436;
8000 Shuffle = 4349242221;
8001 ["Dorky Dance"] = 4212455378;
8002 BodyBuilder = 3333387824;
8003 Idol = 4101966434;
8004 ["Fancy Feet"] = 3333432454;
8005 Curtsy = 4555816777;
8006 ["Air Dance"] = 4555782893
8007 }
8008 animationdebounce = false
8009 cmdlp.Character.Animate.Disabled = true
8010 for i,v in pairs(cmdlp.Character.Humanoid:GetPlayingAnimationTracks()) do
8011 v:Stop()
8012 end
8013 function PlayAnim(id)
8014 animationdebounce = true
8015 local Anim = Instance.new("Animation")
8016 Anim.AnimationId = "rbxassetid://"..id
8017 local salute = cmdlp.Character.Humanoid:LoadAnimation(Anim)
8018 salute.Name = "AP"
8019 salute:Play()
8020 salute.Stopped:Connect(function()
8021 cmdlp.Character.Animate.Disabled = false
8022 animationdebounce = false
8023 end)
8024 end
8025 gotanim = false
8026 lower = string.lower(arguments[2])
8027 for i,v in pairs(animations) do
8028 if lower == string.sub(string.lower(tostring(i)), 1, #lower) and gotanim == false then
8029 gotanim = true
8030 PlayAnim(v)
8031 end
8032 end
8033 local function Moved()
8034 if cmdlp.Character.Humanoid.MoveDirection ~= VectorZero and animationdebounce == true then
8035 for i,v in pairs(cmdlp.Character.Humanoid:GetPlayingAnimationTracks()) do
8036 v:Stop()
8037 end
8038 end
8039 end
8040 cmdlp.Character.Humanoid:GetPropertyChangedSignal("MoveDirection"):Connect(Moved)
8041 opx("-","Now playing emote")
8042 else
8043 opx("*","R15 is needed for this command!")
8044 end
8045 else
8046 opx("*","2 arguments are needed for this command!")
8047 end
8048end
8049
8050function useCommand.printcommands()
8051 opx("-","CMDS Loaded (See them in F9)")
8052 for i,v in pairs(CMD) do
8053 splitCMD = v:split(",")
8054 print(splitCMD[1]..": "..splitCMD[2].." "..splitCMD[3].." - "..splitCMD[4])
8055 end
8056end
8057
8058function useCommand.chatframe()
8059 if arguments[2] then
8060 target = findplr(arguments[2])
8061 if target ~= nil then
8062 game:GetService("Chat"):Chat(target.Character.Head,getstring(3),Enum.ChatColor.White)
8063 opx("-","Forced "..target.Name.." to say "..getstring(3))
8064 else
8065 opx("*","Player does not exist!")
8066 end
8067 else
8068 opx("*","2 arguments are needed for this command!")
8069 end
8070end
8071
8072local fbc = false
8073function useCommand.forcebubblechat()
8074 fbc = true
8075 opx("-","Started bubble chat")
8076 if fbc == true then
8077 cmdp.PlayerAdded:connect(function(plr)
8078 plr.Chatted:connect(function(msg)
8079 if fbc == true then
8080 game:GetService("Chat"):Chat(plr.Character.Head,msg,Enum.ChatColor.White)
8081 end
8082 end)
8083 end)
8084 for i,v in pairs(cmdp:GetPlayers()) do
8085 v.Chatted:connect(function(msg)
8086 if fbc == true then
8087 game:GetService("Chat"):Chat(v.Character.Head,msg,Enum.ChatColor.White)
8088 end
8089 end)
8090 end
8091 end
8092end
8093
8094function useCommand.unforcebubblechat()
8095 fbc = false
8096 opx("-","Stopped bubble chat")
8097end
8098
8099local IESPenabled = false
8100function useCommand.itemesp()
8101 opx("-","IESP Enabled")
8102 IESPenabled = true
8103 for _,i in pairs(workspace:GetDescendants()) do
8104 if i:IsA("BasePart") and i.Parent.ClassName ~= "Accessory" then
8105 local pi = i.Name:lower()
8106 local pt = "handle"
8107 local pt1 = "tool"
8108 local pt2 = "item"
8109 local z = string.find(pi,pt)
8110 local z1 = string.find(pi,pt1)
8111 local z2 = string.find(pi,pt2)
8112 if z ~= nil or z1 ~= nil or z2 ~= nil then
8113 IESP(i)
8114 end
8115 end
8116 end
8117end
8118
8119function useCommand.unitemesp()
8120 opx("-","IESP Disabled")
8121 IESPenabled = false
8122 for _,i in pairs(workspace:GetDescendants()) do
8123 for a,v in pairs(cmdlp.PlayerGui:GetChildren()) do
8124 if v.Name == i:GetFullName()..'_IESP' then
8125 v:Destroy()
8126 end
8127 end
8128 end
8129end
8130
8131function useCommand.setdiscord()
8132 if arguments[2] then
8133 arguments[2] = arguments[2]:gsub('#',' ')
8134 discordTag = arguments[2]
8135 updatesaves()
8136 opx("-","Set discord to "..arguments[2])
8137 else
8138 opx("*","2 arguments are needed for this command!")
8139 end
8140end
8141
8142function useCommand.saydiscord()
8143 if arguments[2] == "cb" or arguments[2] == "copy" then
8144 setclipboard(discordTag)
8145 end
8146 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(discordTag, "All")
8147 opx("-","Said discord in chat")
8148end
8149
8150function useCommand.removecustombodyparts()
8151 if cmd6(cmdlp) then
8152 opx("-","Removed all custom body parts")
8153 for i,c in pairs(cmdc:GetChildren()) do
8154 if c:IsA("CharacterMesh") then
8155 c:Destroy()
8156 end
8157 end
8158 else
8159 opx("*","You need to be R6 for this command!")
8160 end
8161end
8162
8163function useCommand.insane()
8164 if cmdlp.Character:FindFirstChild("Humanoid").RigType == Enum.HumanoidRigType.R6 then
8165 opx("-","You are now insane")
8166 local pc = cmdlp.Character
8167 local AnimationId = "33796059"
8168 Spas = Instance.new("Animation")
8169 Spas.AnimationId = "rbxassetid://"..AnimationId
8170 insane = pc.Humanoid:LoadAnimation(Spas)
8171 insane:Play()
8172 insane:AdjustSpeed(99)
8173 else
8174 opx("*","R6 is needed for this command")
8175 end
8176end
8177
8178function useCommand.hotkeyaimbot()
8179 if arguments[2] then
8180 hotkeyaimbot = arguments[2]
8181 updatesaves()
8182 opx("-","Hotkey set to "..arguments[2])
8183 else
8184 opx("*","A key is required")
8185 end
8186end
8187
8188function useCommand.hotkeyesp()
8189 if arguments[2] then
8190 hotkeyesp = arguments[2]
8191 updatesaves()
8192 opx("-","Hotkey set to "..arguments[2])
8193 else
8194 opx("*","A key is required")
8195 end
8196end
8197
8198function useCommand.admindetect()
8199 Scrollingad:ClearAllChildren()
8200 if cmdlp.PlayerGui:FindFirstChild("HDAdminGUIs") then
8201 opx("-","HDADMIN found, make sure to run the command 'admins' in it")
8202 adframe.Visible = true
8203 CreateADLabel("","")
8204 CreateADLabel("","")
8205 local sR = cmdlp.PlayerGui.HDAdminGUIs.MainFrame.Pages.Admin["Server Ranks"]
8206 for i,v in pairs(sR:GetChildren()) do
8207 potentialLabel = v.Name
8208 findDetect = "Label"
8209 local z = string.find(potentialLabel,findDetect)
8210 if z ~= nil then
8211 local rankSub = v.PlrRank.Text:sub(0,#v.PlrRank.Text-6)
8212 CreateADLabel(v.PlrName.Text,rankSub)
8213 end
8214 end
8215 sR.ChildAdded:Connect(function(obj)
8216 potentialLabel = obj.Name
8217 findDetect = "Label"
8218 local z = string.find(potentialLabel,findDetect)
8219 if z ~= nil then
8220 local rankSub = v.PlrRank.Text:sub(0,#v.PlrRank.Text-6)
8221 CreateADLabel(v.PlrName.Text,rankSub.." HDADMIN")
8222 end
8223 end)
8224 elseif workspace:FindFirstChild("Kohl's Admin Infinite") then
8225 opx("-","KOHL'S found")
8226 adframe.Visible = true
8227 CreateADLabel("","")
8228 CreateADLabel("","")
8229 for i,v in pairs(game:GetService("ReplicatedStorage"):GetDescendants()) do
8230 if v.Name == "log" then
8231 adminTable = v.Parent:FindFirstChildOfClass("StringValue")
8232 end
8233 end
8234 local adminTableS = {{N = "", I = ""}}
8235 adminTableS.N = adminTable.Value:split(" ")
8236 for i,v in pairs(adminTableS.N) do
8237 adminTableS.N[i] = adminTableS.N[i]:gsub("-","")
8238 adminTableS.N[i] = adminTableS.N[i]:sub(0,#adminTableS.N[i]-2)
8239 for _,n in pairs(cmdp:GetPlayers()) do
8240 vID = n.UserId
8241 z = string.find(adminTableS.N[i],vID)
8242 if z ~= nil then
8243 CreateADLabel(n.Name,"Staff KOHLS")
8244 end
8245 end
8246 end
8247 cmdp.PlayerAdded:Connect(function(plr)
8248 for i,v in pairs(game:GetService("ReplicatedStorage"):GetDescendants()) do
8249 if v.Name == "log" then
8250 adminTable = v.Parent:FindFirstChildOfClass("StringValue")
8251 end
8252 end
8253 local adminTableS = {{N = "", I = ""}}
8254 adminTableS.N = adminTable.Value:split(" ")
8255 for i,v in pairs(adminTableS.N) do
8256 adminTableS.N[i] = adminTableS.N[i]:gsub("-","")
8257 adminTableS.N[i] = adminTableS.N[i]:sub(0,#adminTableS.N[i]-2)
8258 vID = plr.UserId
8259 z = string.find(adminTableS.N[i],vID)
8260 if z ~= nil then
8261 CreateADLabel(plr.Name,"Staff KOHLS")
8262 end
8263 end
8264 end)
8265 else
8266 opx("*","Unable to detect an adminGUI")
8267 end
8268end
8269
8270function useCommand.streamermode()
8271 opx("-","Streamer Mode enabled")
8272 game:GetService("CoreGui").RobloxGui.TopBarContainer.NameHealthContainer.Username.Text = ""
8273 game:GetService("CoreGui").RobloxGui.TopBarContainer.NameHealthContainer.AccountType.Text = ""
8274 for i,v in pairs(cmdp:GetChildren()) do
8275 if v.Name ~= cmdlp.Name and v.Character and v.Character:FindFirstChild("Head") then
8276 local char = v.Character
8277 local head = char:FindFirstChild('Head')
8278 local m = Instance.new("Model", char) m.Name = ""
8279 local cl = char.Head:Clone() cl.Parent = m
8280 local hum = Instance.new("Humanoid", m)
8281 hum.Name = "NameTag"
8282 hum.MaxHealth = v.Character.Humanoid.MaxHealth
8283 wait()
8284 hum.Health = v.Character.Humanoid.Health
8285 cl.CanCollide = false
8286 local weld = Instance.new("Weld", cl) weld.Part0 = cl weld.Part1 = char.Head
8287 char.Head.Transparency = 1
8288 end
8289 end
8290 for i,v in pairs(cmdp:GetChildren()) do
8291 v.CharacterAdded:Connect(function(v)
8292 wait(2)
8293 local char = v
8294 local head = char.Head
8295 local m = Instance.new("Model", char) m.Name = ""
8296 local cl = char.Head:Clone() cl.Parent = m
8297 local hum = Instance.new("Humanoid", m)
8298 hum.Name = "NameTag"
8299 hum.MaxHealth = char.Humanoid.MaxHealth
8300 wait()
8301 hum.Health = char.Humanoid.Health
8302 cl.CanCollide = false
8303 local weld = Instance.new("Weld", cl) weld.Part0 = cl weld.Part1 = char.Head
8304 char.Head.Transparency = 1
8305 end)
8306 end
8307 cmdp.PlayerAdded:Connect(function(v)
8308 wait(2)
8309 local char = v.Character
8310 local head = char.Head
8311 local m = Instance.new("Model", char) m.Name = ""
8312 local cl = char.Head:Clone() cl.Parent = m
8313 local hum = Instance.new("Humanoid", m)
8314 hum.Name = "NameTag"
8315 hum.MaxHealth = char.Humanoid.MaxHealth
8316 wait()
8317 hum.Health = char.Humanoid.Health
8318 cl.CanCollide = false
8319 local weld = Instance.new("Weld", cl) weld.Part0 = cl weld.Part1 = char.Head
8320 char.Head.Transparency = 1
8321 end)
8322 local Chat = cmdlp.PlayerGui.Chat:WaitForChild("Frame").ChatChannelParentFrame["Frame_MessageLogDisplay"].Scroller
8323 Chat.ChildAdded:Connect(function(fr)
8324 if fr:IsA("Frame") then
8325 local frg = fr.TextLabel.TextButton.Text
8326 fr.TextLabel.TextButton.Text = ""
8327 end
8328 end)
8329 local Players = game:GetService("CoreGui").RobloxGui.PlayerListMaster:WaitForChild("OffsetFrame").PlayerScrollList.ScrollingFrameContainer.ScrollingFrameClippingFrame.ScollingFrame.OffsetUndoFrame
8330 for i,fr in pairs(Players:GetChildren()) do
8331 if fr:IsA("Frame") then
8332 fr.ChildrenFrame.NameFrame.BGFrame.OverlayFrame.PlayerName.PlayerName.Text = ""
8333 end
8334 end
8335 Players.ChildAdded:Connect(function(fr)
8336 if fr:IsA("Frame") then
8337 fr.ChildrenFrame.NameFrame.BGFrame.OverlayFrame.PlayerName.PlayerName.Text = ""
8338 end
8339 end)
8340end
8341
8342function useCommand.permflyspeed()
8343 if cmdnum(arguments[2]) then
8344 opx("-","Perm fly speed updated to "..arguments[2])
8345 permflyspeed = arguments[2]
8346 updatesaves()
8347 else
8348 opx("*","2 arguments are required for this command")
8349 end
8350end
8351
8352local Loopto = false
8353function useCommand.loopgoto()
8354 if arguments[2] then
8355 target = findplr(arguments[2])
8356 if target ~= nil then
8357 if target.Character and target.Character:FindFirstChild('Humanoid') then
8358 Loopto = true
8359 opx("-","Now LoopTping "..target.Name)
8360 while Loopto == true do
8361 cmdlp.Character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame + Vector3.new(gotoPosSide,gotoPosHead,gotoPos)
8362 wait()
8363 end
8364 end
8365 else
8366 opx("*","Player does not exist!")
8367 end
8368 else
8369 opx("*","2 arguments are needed for this command!")
8370 end
8371end
8372
8373function useCommand.unloopgoto()
8374 Loopto = false
8375 opx("-","No longer LoopTping")
8376end
8377
8378function useCommand.dupegears()
8379 if cmdnum(arguments[2]) then
8380 opx("-","Duping tools until it reaches "..arguments[2])
8381 for i = 1,arguments[2] do
8382 for i,a in pairs(cmdlp.Backpack:GetDescendants()) do
8383 if a:IsA("Tool") then
8384 a.Parent = cmdlp
8385 end
8386 end
8387 if Noclipping then
8388 Noclipping:Disconnect()
8389 Clip = false
8390 end
8391 refresh()
8392 wait(.1)
8393 for _,v in pairs(cmdlp:GetChildren()) do
8394 if v:IsA("Tool") then
8395 v.Parent = cmdlp.Backpack
8396 end
8397 end
8398 end
8399 else
8400 opx("*","This command requires 2 arguments")
8401 end
8402end
8403
8404function useCommand.permwalkspeed()
8405 if cmdnum(arguments[2]) then
8406 opx("-","Perm walkspeed updated to "..arguments[2])
8407 permwalkspeed = arguments[2]
8408 updatesaves()
8409 else
8410 opx("*","2 arguments are required for this command")
8411 end
8412end
8413
8414function useCommand.permjumppower()
8415 if cmdnum(arguments[2]) then
8416 opx("-","Perm jumppower updated to "..arguments[2])
8417 permjumppower = arguments[2]
8418 updatesaves()
8419 else
8420 opx("*","2 arguments are required for this command")
8421 end
8422end
8423
8424function useCommand.permhipheight()
8425 if cmdnum(arguments[2]) then
8426 opx("-","Perm hipheight updated to "..arguments[2])
8427 permhipheight = arguments[2]
8428 updatesaves()
8429 else
8430 opx("*","2 arguments are required for this command")
8431 end
8432end
8433
8434function useCommand.permgravity()
8435 if cmdnum(arguments[2]) then
8436 opx("-","Perm gravity updated to "..arguments[2])
8437 permgravity = arguments[2]
8438 updatesaves()
8439 else
8440 opx("*","2 arguments are required for this command")
8441 end
8442end
8443
8444function useCommand.gotobp()
8445 if arguments[2] then
8446 target = findplr(arguments[2])
8447 if target ~= nil then
8448 game:GetService("TweenService"):Create(cmdlp.Character.HumanoidRootPart, TweenInfo.new(1, Enum.EasingStyle.Linear), {CFrame = target.Character.HumanoidRootPart.CFrame}):Play()
8449 opx("-","Now bypass teleporting to "..target.Name)
8450 else
8451 opx("*","Player does not exist!")
8452 end
8453 else
8454 opx("*","2 arguments are needed for this command!")
8455 end
8456end
8457
8458local muteall = false
8459function useCommand.mute()
8460 if arguments[2] then
8461 if arguments[2] == "others" then
8462 opx("-","Mute others enabled")
8463 muteall = true
8464 repeat wait()
8465 for i,v in pairs(workspace:GetDescendants()) do
8466 if v:IsA("Sound") and v.Parent.Parent.Parent.Name ~= cmdlp.Name then
8467 v.Playing = false
8468 end
8469 end
8470 until muteall == false
8471 elseif arguments[2] == "everyone" or arguments[2] == "all" then
8472 opx("-","Mute all enabled")
8473 muteall = true
8474 repeat wait()
8475 for i,v in pairs(workspace:GetDescendants()) do
8476 if v:IsA("Sound") then
8477 v.Playing = false
8478 end
8479 end
8480 until muteall == false
8481 else
8482 target = findplr(arguments[2])
8483 if target ~= nil then
8484 opx("-","Mute "..target.Name.." enabled")
8485 muteall = true
8486 repeat wait()
8487 for i,v in pairs(workspace:GetDescendants()) do
8488 if v:IsA("Sound") and v.Parent.Parent.Parent.Name == target.Name then
8489 v.Playing = false
8490 end
8491 end
8492 until muteall == false
8493 else
8494 opx("*","Player does not exist!")
8495 end
8496 end
8497 else
8498 opx("*","2 arguments are needed for this command!")
8499 end
8500end
8501
8502function useCommand.unmute()
8503 opx("-","Mute disabled")
8504 muteall = false
8505end
8506
8507function useCommand.vgoto()
8508 if arguments[2] then
8509 target = findplr(arguments[2])
8510 if target ~= nil then
8511 opx("-","Now vehicle teleporting to "..target.Name)
8512 local Car = cmdlp.Character.Humanoid.SeatPart
8513 Car.Parent.Parent:MoveTo(target.Character.HumanoidRootPart.Position)
8514 else
8515 opx("*","Player does not exist!")
8516 end
8517 else
8518 opx("*","2 arguments are needed for this command!")
8519 end
8520end
8521
8522function useCommand.admin()
8523 if arguments[2] then
8524 target = findplr(arguments[2])
8525 if target ~= nil then
8526 Adm[#Adm+1] = target.Name
8527 updatesaves()
8528 opx("-","Added "..target.Name.." to admins, please re-execute")
8529 else
8530 opx("*","Player does not exist!")
8531 end
8532 else
8533 opx("*","2 arguments are needed for this command!")
8534 end
8535end
8536
8537function useCommand.unadmin()
8538 if arguments[2] then
8539 for i,v in pairs(Adm) do
8540 if arguments[2] == Adm[i] then
8541 table.remove(Adm[i])
8542 updatesaves()
8543 end
8544 end
8545 opx("-","Removed that player from admins, please re-execute")
8546 else
8547 opx("*","2 arguments are needed for this command!")
8548 end
8549end
8550
8551function useCommand.admins()
8552 for i,v in pairs(Adm) do
8553 print(Adm[i])
8554 end
8555 opx("-","Printed admins to console")
8556end
8557
8558function useCommand.adminclr()
8559 Adm = {}
8560 updatesaves()
8561 opx("-","Cleared all admins, please re-execute")
8562end
8563
8564function useCommand.hotkeynew()
8565 if arguments[3] then
8566 arguments[2] = arguments[2]:lower()
8567 hkBinds[#hkBinds+1] = {K = arguments[2], C = arguments[3]}
8568 updatesaves()
8569 opx("-","Added "..arguments[3].." to hotkeys")
8570 else
8571 opx("*","3 arguments are needed for this command!")
8572 end
8573end
8574
8575function useCommand.hotkeys()
8576 for i = 1,#hkBinds do
8577 print(hkBinds[i].K.." "..hkBinds[i].C)
8578 end
8579 opx("-","Printed hotkeys to F9")
8580end
8581
8582function useCommand.hotkeydel()
8583 if arguments[2] then
8584 for i = 1,#hkBinds do
8585 if hkBinds[i].C == arguments[2] then
8586 table.remove(hkBinds[i])
8587 updatesaves()
8588 end
8589 end
8590 opx("-","Removed "..arguments[2].." from hotkeys")
8591 else
8592 opx("*","2 arguments are needed for this command!")
8593 end
8594end
8595
8596function useCommand.hotkeysclr()
8597 hkBinds = {}
8598 updatesaves()
8599 opx("-","Cleared all hotkeys")
8600end
8601
8602function useCommand.changestyle()
8603 if arguments[2] then
8604 opx("-","Style set to "..arguments[2])
8605 for i,v in pairs(getParent.Unnamed.holder.output:GetChildren()) do
8606 if v:IsA("ImageLabel") then
8607 output1.Parent = output
8608 output2.Parent = output
8609 output3.Parent = output
8610 output4.Parent = output
8611 output5.Parent = output
8612 output6.Parent = output
8613 output7.Parent = output
8614 output8.Parent = output
8615 output9.Parent = output
8616 v:Destroy()
8617 end
8618 end
8619 entry.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
8620 output1.TextColor3 = Color3.fromRGB(177, 177, 177)
8621 output2.TextColor3 = Color3.fromRGB(177, 177, 177)
8622 output3.TextColor3 = Color3.fromRGB(177, 177, 177)
8623 output4.TextColor3 = Color3.fromRGB(177, 177, 177)
8624 output5.TextColor3 = Color3.fromRGB(177, 177, 177)
8625 output6.TextColor3 = Color3.fromRGB(177, 177, 177)
8626 output7.TextColor3 = Color3.fromRGB(177, 177, 177)
8627 output8.TextColor3 = Color3.fromRGB(177, 177, 177)
8628 output9.TextColor3 = Color3.fromRGB(177, 177, 177)
8629 cmd.TextColor3 = Color3.fromRGB(177,177,177)
8630 cmd.PlaceholderColor3 = Color3.fromRGB(177,177,177)
8631 if arguments[2] == "default" or arguments[2] == "rounded" then
8632 output.Style = Enum.FrameStyle.RobloxRound
8633 dStyle = "rounded"
8634 updatesaves()
8635 elseif arguments[2] == "bg" then
8636 function getAsset(ID)
8637 return("http://www.roblox.com/Thumbs/Asset.ashx?format=png&width=420&height=420&assetId="..ID)
8638 end
8639 output.Style = Enum.FrameStyle.Custom
8640 dStyle = "bg "..arguments[3]
8641 updatesaves()
8642 local iBG = Instance.new("ImageLabel", output)
8643 iBG.BackgroundColor3 = Color3.fromRGB(163,182,165)
8644 iBG.BackgroundTransparency = 1
8645 iBG.BorderSizePixel = 0
8646 iBG.Size = UDim2.new(0, 525, 0, 253)
8647 output1.Parent = iBG
8648 output2.Parent = iBG
8649 output3.Parent = iBG
8650 output4.Parent = iBG
8651 output5.Parent = iBG
8652 output6.Parent = iBG
8653 output7.Parent = iBG
8654 output8.Parent = iBG
8655 output9.Parent = iBG
8656 iBG.Image = getAsset(arguments[3])
8657 iBG.ScaleType = Enum.ScaleType.Crop
8658 elseif arguments[2] == "squared" then
8659 output.Style = Enum.FrameStyle.RobloxSquare
8660 dStyle = "squared"
8661 updatesaves()
8662 elseif arguments[2] == "blended" then
8663 output.Style = Enum.FrameStyle.Custom
8664 dStyle = "blended"
8665 updatesaves()
8666 elseif arguments[2] == "smalled" then
8667 output.Style = Enum.FrameStyle.DropShadow
8668 dStyle = "smalled"
8669 updatesaves()
8670 elseif arguments[2] == "light" or arguments[2] == "lightmode" then
8671 entry.BackgroundColor3 = Color3.fromRGB(170, 170, 170)
8672 output1.TextColor3 = Color3.fromRGB(1, 1, 1)
8673 output2.TextColor3 = Color3.fromRGB(1, 1, 1)
8674 output3.TextColor3 = Color3.fromRGB(1, 1, 1)
8675 output4.TextColor3 = Color3.fromRGB(1, 1, 1)
8676 output5.TextColor3 = Color3.fromRGB(1, 1, 1)
8677 output6.TextColor3 = Color3.fromRGB(1, 1, 1)
8678 output7.TextColor3 = Color3.fromRGB(1, 1, 1)
8679 output8.TextColor3 = Color3.fromRGB(1, 1, 1)
8680 output9.TextColor3 = Color3.fromRGB(1, 1, 1)
8681 cmd.TextColor3 = Color3.fromRGB(1,1,1)
8682 cmd.PlaceholderColor3 = Color3.fromRGB(1,1,1)
8683 if arguments[3] then
8684 if arguments[3] == "blue" then
8685 output.Style = Enum.FrameStyle.ChatBlue
8686 dStyle = "lightblue"
8687 updatesaves()
8688 elseif arguments[3] == "green" then
8689 output.Style = Enum.FrameStyle.ChatGreen
8690 dStyle = "lightgreen"
8691 updatesaves()
8692 elseif arguments[3] == "red" then
8693 output.Style = Enum.FrameStyle.ChatRed
8694 dStyle = "lightred"
8695 updatesaves()
8696 else
8697 output.Style = Enum.FrameStyle.ChatBlue
8698 dStyle = "lightblue"
8699 updatesaves()
8700 end
8701 else
8702 output.Style = Enum.FrameStyle.ChatBlue
8703 dStyle = "lightblue"
8704 updatesaves()
8705 end
8706 else
8707 loadstring(game:HttpGet((arguments[2]),true))()
8708 dStyle = arguments[2]
8709 updatesaves()
8710 end
8711 else
8712 opx("*","2 arguments are needed for this command!")
8713 end
8714end
8715
8716function useCommand.csinfo()
8717 opx("-","Printed info to F9 (console)")
8718 print("\
8719 For the default theme/ rounded theme type in: cs rounded\
8720 \
8721 For a custom background type in: cs bg (id)\
8722 \
8723 For a squared theme type in: cs squared\
8724 \
8725 For a blended theme type in: cs blended\
8726 \
8727 For a smalled theme type in: cs smalled\
8728 \
8729 For a lightmode theme type in: cs light(blue/green/red)\
8730 \
8731 For a custom theme type in: cs (raw link)")
8732end
8733
8734function useCommand.chat()
8735 if arguments[2] then
8736 local chatString = getstring(2)
8737 game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(chatString, "All")
8738 opx("-","Said message in chat")
8739 else
8740 opx("*","2 arguments are needed for this command!")
8741 end
8742end
8743
8744function useCommand.curvetools()
8745 local currentTool = cmdlp.Character:FindFirstChildOfClass("Tool")
8746 currentTool.Parent = cmdlp.Backpack
8747 Number = 1
8748 for i,v in pairs(cmdlp.Backpack:GetChildren()) do
8749 if v.Name == currentTool.Name then
8750 v.GripPos = Vector3.new(0,0,0)
8751 v.GripRight = Vector3.new(0,0,0)
8752 v.GripPos = Vector3.new(0,-Number,Number)
8753 v.GripRight = Vector3.new(math.rad(10+-Number),math.rad(Number),math.rad(90+-Number))
8754 Number = Number + 1.4
8755 v.Parent = cmdlp.Character
8756 end
8757 end
8758 opx("-","Now curving tools")
8759end
8760
8761function useCommand.spiraltools()
8762 local currentTool = cmdlp.Character:FindFirstChildOfClass("Tool")
8763 currentTool.Parent = cmdlp.Backpack
8764 Number = 1
8765 for i,v in pairs(cmdlp.Backpack:GetChildren()) do
8766 if v.Name == currentTool.Name then
8767 v.GripPos = Vector3.new(0,0,0)
8768 v.GripRight = Vector3.new(0,0,0)
8769 v.GripPos = Vector3.new(0,Number,-Number)
8770 v.GripRight = Vector3.new(math.rad(Number),math.rad(180/Number),math.rad(180/Number))
8771 Number = Number + 1.4
8772 v.Parent = cmdlp.Character
8773 end
8774 end
8775 opx("-","Now spiraling tools")
8776end
8777
8778function useCommand.toggleconfly()
8779 if arguments[2] then
8780 if arguments[2] == "on" then
8781 conFly = true
8782 updatesaves()
8783 opx("-","Continuous fly was toggled to on")
8784 elseif arguments[2] == "off" then
8785 conFly = false
8786 updatesaves()
8787 opx("-","Continuous fly was toggled to off")
8788 else
8789 opx("*","The second argument must contain 'on' or 'off'")
8790 end
8791 else
8792 opx("*","2 arguments are required for this command")
8793 end
8794end
8795
8796local amuteall = false
8797function useCommand.audioglitch()
8798 if arguments[3] then
8799 if arguments[2] == "others" then
8800 opx("-","Audio glitch others enabled")
8801 amuteall = true
8802 repeat wait(1)
8803 for i,v in pairs(workspace:GetDescendants()) do
8804 if v:IsA("Sound") and v.Parent.Parent.Parent.Name ~= cmdlp.Name then
8805 v.TimePosition = arguments[3]
8806 end
8807 end
8808 until amuteall == false
8809 elseif arguments[2] == "everyone" or arguments[2] == "all" then
8810 opx("-","Audio glitch all enabled")
8811 amuteall = true
8812 repeat wait(1)
8813 for i,v in pairs(workspace:GetDescendants()) do
8814 if v:IsA("Sound") then
8815 v.TimePosition = arguments[3]
8816 end
8817 end
8818 until amuteall == false
8819 else
8820 target = findplr(arguments[2])
8821 if target ~= nil then
8822 opx("-","Audio glitch "..target.Name.." enabled")
8823 amuteall = true
8824 repeat wait(1)
8825 for i,v in pairs(workspace:GetDescendants()) do
8826 if v:IsA("Sound") and v.Parent.Parent.Parent.Name == target.Name then
8827 v.TimePosition = arguments[3]
8828 end
8829 end
8830 until amuteall == false
8831 else
8832 opx("*","Player does not exist!")
8833 end
8834 end
8835 else
8836 opx("*","3 arguments are needed for this command!")
8837 end
8838end
8839
8840function useCommand.unaudioglitch()
8841 opx("-","Audio glitch all disabled")
8842 amuteall = false
8843end
8844
8845local chatlag = false
8846function useCommand.lagchat()
8847 opx("-","Now lagging chat")
8848 chatlag = true
8849 while chatlag == true do
8850 wait()
8851 game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("_______________________________________", "All")
8852 end
8853end
8854
8855function useCommand.trollchat()
8856 trollChat = {"I'm level 126 on Clockwork's Level Calculator","This game is honestly so bad, don't know why people play it.","Anyone else play Roblox here?","I'm new, any help?","Can you give me Robux, please?","Please stop trolling!","You aren't cool stop trying to kill me.","Why are you so mean?","Guys, kill the bacon for free Cheez-Its.","Why do people even buy headless? It's really useless!","Stop!!!!!!!","_____________________","Please leave me alone?","Sources say David Baszucki is looking at a 20 year sentence for fiddling with kids.","Why do people even hate on Fortnite?","I heard Erik Cassel has been working on an update for 7 years.","Welcome to Roblox!","I'm considering picking up Roblox as a long term job.","Club Iris's owner, SoulJem is adding more backdoors in his game today.","I use JJSploit, It's way better than Synapse X.","Why am I getting so much attention?","Everyone hates me. :(","Flamingo is a good youtuber he is my favourite, YO TENGO!","Why is no one talking to me? I'm famous you know?","You are all poor, I have 10 robux.","I have 100 followers, you are a nobody.","I heard maplestick feeds exploiters with his hats, is this true?","Removing TIX was a good idea like that thing was so useless, XD.","What is TIX? xd? Sounds stupid XD.","I heard InceptionTime is in the gzxy bar right now.","Guys use the weakest weapons, it raises your chance to deal 100 damage.","Guys is Synapse X a virus?","Hello. Im Am. Play. Roblox,","Hi Youtube today we are playing this game.","Poor people are the bane of this game, pls nerf.","I am on the leaderboards of this game, everyone here is bad.","My dads goldfish works for Roblox.","Guys how do I fake cxncer to get a Sinister Valk?","Why are you bald? Are you planning to get Sinister Valk?","Guys my bed time is in 10 minutes, please hurry up.","Why are you taking so long?","Can you be quiet? Stop talking.","What is Builders Club XD? It sounds stupid tbh.","I have the best score on this game, plus I know the owner.","Guys you can all leave you are useless I can do this on my own.","This game is pretty bad tbh XD, I could make better.","You have trash scripts XD I use JJSploit and invisible fling.","......... bad. xd","I'm considering building a game about breaking out of a jail and robbing stuff, should I?","I'm considering making a game about breaking bones, should I?","I'm considering making Roblox streaming a full time job, I got a 2$ donation.","I use UltimateDLLInjector, what DLL's do you use? Can you send me them?","All old games are bad, why would you even play them they are glitchy.","Old robloxians, are stupid I bet they can't even play Bloxburg as well as me","I love DenisDaily I want to meet him."}
8857 local value = math.random(1,#trollChat)
8858 local picked_value = trollChat[value]
8859 opx("-","You troll chatted")
8860 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(tostring(picked_value), "All")
8861end
8862
8863function useCommand.unbodypositionwalkspeed()
8864 bodyPos = false
8865 for i,v in pairs(cmdlp.Character:GetDescendants()) do
8866 if v.Name == "rocket" then
8867 v:Destroy()
8868 end
8869 end
8870 opx("-","BodyPositionWalkSpeed disabled")
8871end
8872
8873function useCommand.removegears()
8874 opx("-","Removed gears")
8875 for i,v in pairs(cmdlp.Backpack:GetChildren()) do
8876 if v:IsA("Tool") then
8877 v:Destroy()
8878 end
8879 end
8880end
8881
8882function useCommand.unclicktp()
8883 opx("-","No longer clicktping")
8884 clicktps = false
8885end
8886
8887function useCommand.unswimwalk()
8888 workspace.Gravity = 198
8889 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Climbing,true)
8890 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.FallingDown,true)
8891 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Flying,true)
8892 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Freefall,true)
8893 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.GettingUp,true)
8894 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Jumping,true)
8895 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Landed,true)
8896 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Physics,true)
8897 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.PlatformStanding,true)
8898 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Ragdoll,true)
8899 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Running,true)
8900 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.RunningNoPhysics,true)
8901 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Seated,true)
8902 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.StrafingNoPhysics,true)
8903 cmdlp.Character.Humanoid:SetStateEnabled(Enum.HumanoidStateType.Swimming,true)
8904 cmdlp.Character.Humanoid:ChangeState(Enum.HumanoidStateType.RunningNoPhysics)
8905 opx("-","No longer swimming")
8906end
8907
8908function useCommand.unlagchat()
8909 opx("-","No longer lagging chat")
8910 chatlag = false
8911end
8912
8913function useCommand.rocket()
8914 opx("-","If you had a rocket then you are now holding it")
8915 for _, hat in pairs(cmdlp.Character.Humanoid:GetAccessories()) do
8916 if hat.Handle ~= nil then
8917 local tool = Instance.new("Tool", cmdlp.Backpack)
8918 tool.Name = hat.Name
8919 tool.GripPos = Vector3.new(1, 0, 0)
8920 tool.GripRight = Vector3.new(-0.245, 0, 0.969)
8921 tool.GripUp = Vector3.new(-0.749, 0.634, -0.19)
8922 tool.GripForward = Vector3.new(0.615, 0.773, 0.156)
8923 local hathandle = hat.Handle
8924 hathandle:FindFirstChildOfClass("Weld"):Destroy()
8925 hathandle.Parent = tool
8926 hathandle.Massless = true
8927 end
8928 end
8929end
8930
8931function useCommand.clip()
8932 if Noclipping then
8933 Noclipping:Disconnect()
8934 end
8935 Clip = true
8936 opx("-","Noclip disabled")
8937end
8938
8939function useCommand.closeorbit()
8940 if arguments[2] then
8941 target = findplr(arguments[2])
8942 if target ~= nil then
8943 local rp = Instance.new("RocketPropulsion")
8944 rp.Parent = cmdlp.Character.HumanoidRootPart
8945 rp.CartoonFactor = 1
8946 rp.MaxThrust = 5000
8947 rp.MaxSpeed = 100
8948 rp.ThrustP = 5000
8949 rp.Name = "OrbitalDestruction"
8950 rp.Target = target.Character.HumanoidRootPart
8951 rp:Fire()
8952 cmdlp.Character.Humanoid.Sit = true
8953 opx("-","Now orbiting: "..target.Name)
8954 else
8955 opx("*","Player does not exist!")
8956 end
8957 else
8958 opx("*","2 arguments are needed for this command!")
8959 end
8960end
8961
8962function useCommand.orbit()
8963 if arguments[2] then
8964 target = findplr(arguments[2])
8965 if target ~= nil then
8966 opx("-","Now orbiting: "..target.Name)
8967 local P = Instance.new("Part", target.Character)
8968 P.Transparency = 1
8969 P.Name = "ThePart"
8970 P.Size = Vector3.new(1.7,1.7,1.7)
8971 P.Massless = true
8972 P.CanCollide = false
8973 local W = Instance.new("Weld", P)
8974 W.Part1 = target.Character.HumanoidRootPart
8975 W.Part0 = P
8976 local sine = 0
8977 local change = 1
8978 local spin = 0
8979 local spin2 = 0
8980 local rp = Instance.new("RocketPropulsion")
8981 rp.Parent = cmdlp.Character.HumanoidRootPart
8982 rp.CartoonFactor = 1
8983 rp.MaxThrust = 5000
8984 rp.MaxSpeed = 100
8985 rp.ThrustP = 5000
8986 rp.Name = "OrbitalDestructionPart"
8987 rp.Target = target.Character.ThePart
8988 rp:Fire()
8989 cmdlp.Character.Humanoid.PlatformStand = true
8990 while true do
8991 game:GetService("RunService").RenderStepped:wait()
8992 sine = sine + change
8993 spin2 = spin2 + 0.6
8994 spin = spin + 1
8995 W.C0 = CFrame.new(7 * math.cos(20),-2 - 2 * math.sin(sine/10),7 * math.sin(20))*CFrame.Angles(math.rad(0),math.rad(spin),math.rad(0))
8996 end
8997 else
8998 opx("*","Player does not exist!")
8999 end
9000 else
9001 opx("*","2 arguments are needed for this command!")
9002 end
9003end
9004
9005function useCommand.unorbit()
9006 for i,v in pairs(cmdlp.Character:GetDescendants()) do
9007 if v.Name == "OrbitalDestructionPart" or v.Name == "OrbitalDestruction" then
9008 v:Destroy()
9009 end
9010 end
9011 cmdlp.Character.Humanoid.PlatformStand = false
9012 cmdlp.Character.Humanoid.Sit = false
9013 opx("-","Stopped orbiting")
9014end
9015
9016function useCommand.suggestions()
9017 if arguments[2] == "on" then
9018 suggestions = true
9019 updatesaves()
9020 opx("-","Suggestions set to on")
9021 elseif arguments[2] == "off" then
9022 suggestions = false
9023 updatesaves()
9024 opx("-","Suggestions set to off")
9025 else
9026 opx("*","A valid preset is needed!")
9027 end
9028end
9029
9030local bringc = false
9031function useCommand.clientbring()
9032 if arguments[2] then
9033 target = findplr(arguments[2])
9034 if target ~= nil then
9035 bringc = true
9036 opx("-","Bringing "..target.Name.." on client.")
9037 while bringc == true do
9038 wait()
9039 if target.Character and target.Character:FindFirstChild("HumanoidRootPart") then
9040 target.Character.HumanoidRootPart.CFrame = cmdlp.Character.HumanoidRootPart.CFrame + cmdlp.Character.HumanoidRootPart.CFrame.lookVector * 2
9041 end
9042 end
9043 else
9044 opx("*","Player does not exist!")
9045 end
9046 else
9047 opx("*","2 arguments are required for this command!")
9048 end
9049end
9050
9051function useCommand.unclientbring()
9052 bringc = false
9053 opx("-","Stopped client bringing")
9054end
9055
9056function useCommand.playercases()
9057 opx("-","Printed player cases in F9")
9058 print("\
9059 me - Chooses you\
9060 random - Chooses a random player\
9061 new - Chooses a player under the age of 30\
9062 old - Chooses a player over the age of 30\
9063 bacon - Chooses a player with a bacon hair\
9064 friend - Chooses a player that is friends with you\
9065 notfriend - Chooses a player that is not friends with you\
9066 ally - Chooses a player that is on the same team as you\
9067 enemy - Chooses a player that is not on the same team as you\
9068 near - Chooses a player that is close to you\
9069 far - Chooses a player that is not close to you")
9070end
9071
9072function useCommand.ppsize()
9073 if arguments[2] then
9074 target = findplr(arguments[2])
9075 if target ~= nil then
9076 local PPTable = {"Non-Existant","Microscopic","Tiny","Very Small","Small","Moderate","Average","Above Average","Big","Massive","Hugh Mungus","Gut Destroyer"}
9077 local pickPP = math.random(1,#PPTable)
9078 opx("-",target.Name.." has a "..PPTable[pickPP].." size PP")
9079 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(target.Name.." has a "..PPTable[pickPP].." size PP","All")
9080 else
9081 opx("*","Player does not exist!")
9082 end
9083 else
9084 opx("*","2 arguments are required for this command!")
9085 end
9086end
9087
9088function useCommand.gaysize()
9089 if arguments[2] then
9090 target = findplr(arguments[2])
9091 if target ~= nil then
9092 local gayREAL = math.random(0,100)
9093 opx("-",target.Name.." is "..gayREAL.."% gay")
9094 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(target.Name.." is "..gayREAL.."% gay","All")
9095 else
9096 opx("*","Player does not exist!")
9097 end
9098 else
9099 opx("*","2 arguments are required for this command!")
9100 end
9101end
9102
9103function useCommand.matchmake()
9104 if arguments[3] then
9105 target = findplr(arguments[2])
9106 target2 = findplr(arguments[3])
9107 if target ~= nil and target2 ~= nil then
9108 local matchREAL = math.random(0,100)
9109 opx("-",target.Name.." and "..target2.Name.." are a "..matchREAL.."% match")
9110 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(target.Name.." and "..target2.Name.." are a "..matchREAL.."% match","All")
9111 else
9112 opx("*","Player does not exist!")
9113 end
9114 else
9115 opx("*","3 arguments are required for this command!")
9116 end
9117end
9118
9119function useCommand.height()
9120 if arguments[2] then
9121 target = findplr(arguments[2])
9122 if target ~= nil then
9123 local height1 = math.random(0,7)
9124 local height2 = math.random(0,10)
9125 opx("-",target.Name.." is "..height1.."'"..height2)
9126 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(target.Name.." is "..height1.."'"..height2,"All")
9127 else
9128 opx("*","Player does not exist!")
9129 end
9130 else
9131 opx("*","2 arguments are required for this command!")
9132 end
9133end
9134
9135function useCommand.randomchat()
9136 local tbl1 = game:HttpGet("https://pastebin.com/raw/aUD58y32"):gsub('"',""):gsub('{',""):gsub('}',""):split(",")--english words
9137 local tbl2 = game:HttpGet("https://pastebin.com/raw/Bj97ZwPp"):gsub('"',""):gsub('{',""):gsub('}',""):split(",")--tbl1
9138 local tbl3 = game:HttpGet("https://pastebin.com/raw/jNWum66L"):gsub('"',""):gsub('{',""):gsub('}',""):split(",")--tbl2
9139 local tbl4 = game:HttpGet("https://pastebin.com/raw/9GdmNVrc"):gsub('"',""):gsub('{',""):gsub('}',""):split(",")--tbl3
9140 local tbl5 = game:HttpGet("https://pastebin.com/raw/izGHZLha"):gsub('"',""):gsub('{',""):gsub('}',""):split(",")--tbl5
9141 local tbl6 = game:HttpGet("https://pastebin.com/raw/PFHG47S2"):gsub('"',""):gsub('{',""):gsub('}',""):split(",")--tbl4
9142 local tbl7 = game:HttpGet("https://pastebin.com/raw/HPZswDsv"):gsub('"',""):gsub('{',""):gsub('}',""):split(",")--tbl6
9143 local tbl8 = game:HttpGet("https://pastebin.com/raw/tKpFPgzj"):gsub('"',""):gsub('{',""):gsub('}',""):split(",")--tbl7
9144 local tbl9 = game:HttpGet("https://pastebin.com/raw/9uHe83wS"):gsub('"',""):gsub('{',""):gsub('}',""):split(",")--tbl8
9145 local r1 = math.random(1,#tbl1)
9146 local r2 = math.random(1,#tbl2)
9147 local r3 = math.random(1,#tbl3)
9148 local r4 = math.random(1,#tbl4)
9149 local r5 = math.random(1,#tbl5)
9150 local r6 = math.random(1,#tbl6)
9151 local r7 = math.random(1,#tbl7)
9152 local r8 = math.random(1,#tbl8)
9153 local r9 = math.random(1,#tbl9)
9154 opx("-",tbl1[r1].." "..tbl2[r2].." "..tbl3[r3].." "..tbl4[r4].." "..tbl5[r5].." "..tbl6[r6].." "..tbl7[r7].." "..tbl8[r8].." "..tbl9[r9])
9155 cmdrs.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(tbl1[r1].." "..tbl2[r2].." "..tbl3[r3].." "..tbl4[r4].." "..tbl5[r5].." "..tbl6[r6].." "..tbl7[r7].." "..tbl8[r8].." "..tbl9[r9],"All")
9156end
9157
9158function useCommand.noresult()
9159 output1.Text = output2.Text
9160 output2.Text = output3.Text
9161 output3.Text = output4.Text
9162 output4.Text = output5.Text
9163 output5.Text = output6.Text
9164 output6.Text = output7.Text
9165 output7.Text = output8.Text
9166 output8.Text = output9.Text
9167end
9168
9169user.Changed:connect(function()
9170 user.Text = user.Text:sub(1,13)..">"
9171end)
9172---------------------------------------
9173-- GUI Hotkeys: -----------------------
9174mouse.KeyDown:connect(function(key)
9175 if key == hotkeyopen then
9176 if holder.Visible == false then
9177 if force == true then
9178 wait(.1)
9179 output.Visible = true
9180 end
9181 holder.Visible = true
9182 else
9183 if output.Visible == true then
9184 force = true
9185 else
9186 force = false
9187 end
9188 output.Visible = false
9189 holder.Visible = false
9190 end
9191 elseif key == hotkeyopx then
9192 if output.Visible == true then
9193 for i = 1,10 do
9194 wait(.1)
9195 for i,v in pairs(output:GetDescendants()) do
9196 if v:IsA("ImageLabel") then
9197 v.ImageTransparency = v.ImageTransparency + 0.1
9198 v:TweenSize(UDim2.new(0,525,0,0), "InOut", "Quart",1)
9199 elseif v:IsA("TextLabel") then
9200 v.TextTransparency = v.TextTransparency + 0.1
9201 end
9202 end
9203 output.Transparency = output.Transparency + 0.1
9204 output:TweenPosition(UDim2.new(0, output.Position.X.Offset, 0, 290), "InOut", "Quart",1)
9205 output:TweenSize(UDim2.new(0,525,0,0), "InOut", "Quart",1)
9206 end
9207 output.Visible = false
9208 holder.Active = false
9209 else
9210 output.Visible = true
9211 holder.Active = true
9212 for i = 1,10 do
9213 wait(.1)
9214 for i,v in pairs(output:GetDescendants()) do
9215 if v:IsA("ImageLabel") then
9216 v.ImageTransparency = v.ImageTransparency - 0.1
9217 v:TweenSize(UDim2.new(0,525,0,253), "InOut", "Quart",1)
9218 elseif v:IsA("TextLabel") then
9219 v.TextTransparency = v.TextTransparency - 0.1
9220 end
9221 end
9222 output.Transparency = output.Transparency - 0.1
9223 output:TweenPosition(UDim2.new(0, -8, 0, 19), "InOut", "Quart",1)
9224 output:TweenSize(UDim2.new(0,525,0,253), "InOut", "Quart",1)
9225 end
9226 end
9227 elseif key == hotkeyfocus then
9228 cmd:CaptureFocus(wait(.01))
9229 elseif key == hotkeyfly then
9230 if FLYING == true then
9231 FLYING = false
9232 game.Players.LocalPlayer.Character.Humanoid.PlatformStand = false
9233 else
9234 sFLY()
9235 speedofthefly = permflyspeed
9236 end
9237 elseif key == hotkeyxray then
9238 if transparent == true then
9239 transparent = false
9240 x(transparent)
9241 else
9242 transparent = true
9243 x(transparent)
9244 end
9245 elseif key == hotkeyaimbot then
9246 if Enabledaimbot == false then
9247 Enabledaimbot = true
9248 wait(1)
9249 BodyAimbot()
9250 else
9251 Enabledaimbot = false
9252 wait(1)
9253 BodyAimbot()
9254 end
9255 elseif key == hotkeyesp then
9256 if ESPenabled == false then
9257 ESPenabled = true
9258 for i,v in pairs(cmdp:GetChildren()) do
9259 if v.ClassName == "Player" and v.Name ~= cmdp.LocalPlayer.Name then
9260 ESP(v)
9261 end
9262 end
9263 else
9264 ESPenabled = false
9265 for i,v in pairs(cmdp:GetChildren()) do
9266 local espplr = v
9267 for i,c in pairs(cmdlp.PlayerGui:GetChildren()) do
9268 if c.Name == espplr.Name..'_ESP' then
9269 c:Destroy()
9270 end
9271 end
9272 end
9273 for i,v in pairs(game.Players:GetPlayers()) do
9274 local poop = v
9275 local player = v.Name
9276 for i,m in pairs(v.Character:GetChildren()) do
9277 if m:IsA("Part") or m:IsA("MeshPart") then
9278 if m.Name ~= "HumanoidRootPart" and m.Name ~= "Handle" or (m:IsA("Part")) then
9279 m.Material = "Plastic"
9280 end
9281 elseif m:IsA("Accessory") then
9282 m.Handle.Material = "Plastic"
9283 end
9284 end
9285 end
9286 end
9287 else
9288 for i,_ in pairs(hkBinds) do
9289 if key == hkBinds[i].K then
9290 wait(.1)
9291 alignFunctions(hkBinds[i].C)
9292 pcall(function()
9293 useCommand[hkBinds[i].C]()
9294 end)
9295 end
9296 end
9297 end
9298end)
9299---------------------------------------
9300-- Print Function: --------------------
9301print("[CMD-X LOADED] "..game.Players.LocalPlayer.Name.." Donor: false Version: "..ver.." Whitelisted: true")
9302print("\
9303 _____ _____ _____ \
9304 /\\ \\ /\\ \\ /\\ \\ ______ \
9305 /::\\ \\ /::\\____\\ /::\\ \\ :: \
9306 /::::\\ \\ /:::: /::::\\ \\ :: \
9307 /::::::\\ \\ /::::: /::::::\\ \\ :: \
9308 /:::/\\:::\\ \\ /:::::: /:::/\\:::\\ \\ :: \
9309 /:::/ \\:::\\ \\ /:::/:: /:::/ \\:::\\ \\ :: \
9310 /:::/ \\:::\\ \\ /:::/ :: /:::/ \\:::\\ \\ :: \
9311 /:::/ / \\:::\\ \\ /:::/ ::_________ /:::/ / \\:::\\ \\ :: \
9312 /:::/ / \\:::\\ \\ /:::/ ::::::::\\ \\ /:::/ / \\:::\\ ___\\ ______::______ ____ \
9313/:::/____/ \\:::\\____\\/:::/ :::::::::\\____\\/:::/____/ \\::: ::::::::::::::::: \
9314\\:::\\ \\ \\::/ /\\::/ / ~~~~~/:::/ /\\:::\\ \\ /:::____::::::::::::::::: \
9315 \\:::\\ \\ \\/____/ \\/____/ /:::/ / \\:::\\ \\ /:::/ / ~~~~~~::~~~~~~ ~~~~ \
9316 \\:::\\ \\ /:::/ / \\:::\\ \\ /:::/ / :: \
9317 \\:::\\ \\ /:::/ / \\:::\\ /:::/ / :: \
9318 \\:::\\ \\ /:::/ / \\:::\\ /:::/ / :: \
9319 \\:::\\ \\ /:::/ / \\:::\\/:::/ / :: \
9320 \\:::\\ \\ /:::/ / \\::::::/ / :: \
9321 \\:::\\____\\ /:::/ / \\::::/ / :: \
9322 \\::/ / \\::/ / \\__/____/ ::___ \
9323 \\/____/ \\/____/ ~~ ")
9324print("made by pigeon#1818 & hz#4777")
9325print("\
9326Having trouble?\
9327Press U for output\
9328Press Q to close and open\
9329Press ; to auto focus\
9330(Free exploits do not work with CMD-X)\
9331Type support into the cmd bar for anymore support (if needed)\
9332To use chat commands use the prefix '"..prefix.."'")
9333
9334local StarterGui = game:GetService("StarterGui")
9335StarterGui:SetCore("ChatMakeSystemMessage", {Text = "Welcome to CMD-X, "..game.Players.LocalPlayer.Name..".";Color = Color3.fromRGB(50, 50, 50);Font = Enum.Font.SourceSansBold;TextSize = 25})
9336StarterGui:SetCore("ChatMakeSystemMessage", {Text = "Press U for output and F9 for more info!";Color = Color3.fromRGB(100, 100, 100);Font = Enum.Font.SourceSansBold;TextSize = 20})
9337StarterGui:SetCore("ChatMakeSystemMessage", {Text = "To use chat commands use the prefix '"..prefix.."'";Color = Color3.fromRGB(100, 100, 100);Font = Enum.Font.SourceSansBold;TextSize = 20})
9338---------------------------------------
9339-- Start CMDs: ------------------------
9340if #enterCMD > 0 then
9341 for i = 1,#enterCMD do
9342 wait(.1)
9343 cmd:CaptureFocus()
9344 cmd.Text = enterCMD[i]
9345 cmd:ReleaseFocus()
9346 end
9347end
9348user.Changed:connect(function()
9349 user.Text = user.Text:sub(1,13)..">"
9350end)
9351cmd.Focused:connect(function()
9352 local NumberOf = #History
9353 cmduis.InputBegan:Connect(function()
9354 if cmduis:IsKeyDown(Enum.KeyCode.LeftShift) and cmduis:IsKeyDown(Enum.KeyCode.Backspace) then
9355 cmd.Text = ""
9356 elseif cmduis:IsKeyDown(Enum.KeyCode.Up) then
9357 if #History ~= 0 and NumberOf ~= 0 then
9358 cmd.Text = History[NumberOf]
9359 NumberOf = NumberOf - 1
9360 end
9361 end
9362 end)
9363end)
9364output.Visible = true
9365holder.Active = true
9366holder.Draggable = true
9367---------------------------------------
9368-- Themes: ----------------------------
9369
9370styleAS = dStyle:split(" ")
9371
9372function getAsset(ID)
9373 return("http://www.roblox.com/Thumbs/Asset.ashx?format=png&width=420&height=420&assetId="..ID)
9374end
9375
9376if dStyle == "rounded" then
9377 output.Style = Enum.FrameStyle.RobloxRound
9378elseif dStyle == "squared" then
9379 output.Style = Enum.FrameStyle.RobloxSquare
9380elseif dStyle == "blended" then
9381 output.Style = Enum.FrameStyle.Custom
9382elseif dStyle == "smalled" then
9383 output.Style = Enum.FrameStyle.DropShadow
9384elseif dStyle == "lightblue" then
9385 entry.BackgroundColor3 = Color3.fromRGB(170, 170, 170)
9386 output1.TextColor3 = Color3.fromRGB(1, 1, 1)
9387 output2.TextColor3 = Color3.fromRGB(1, 1, 1)
9388 output3.TextColor3 = Color3.fromRGB(1, 1, 1)
9389 output4.TextColor3 = Color3.fromRGB(1, 1, 1)
9390 output5.TextColor3 = Color3.fromRGB(1, 1, 1)
9391 output6.TextColor3 = Color3.fromRGB(1, 1, 1)
9392 output7.TextColor3 = Color3.fromRGB(1, 1, 1)
9393 output8.TextColor3 = Color3.fromRGB(1, 1, 1)
9394 output9.TextColor3 = Color3.fromRGB(1, 1, 1)
9395 cmd.TextColor3 = Color3.fromRGB(1,1,1)
9396 cmd.PlaceholderColor3 = Color3.fromRGB(1,1,1)
9397 output.Style = Enum.FrameStyle.ChatBlue
9398elseif dStyle == "lightgreen" then
9399 entry.BackgroundColor3 = Color3.fromRGB(170, 170, 170)
9400 output1.TextColor3 = Color3.fromRGB(1, 1, 1)
9401 output2.TextColor3 = Color3.fromRGB(1, 1, 1)
9402 output3.TextColor3 = Color3.fromRGB(1, 1, 1)
9403 output4.TextColor3 = Color3.fromRGB(1, 1, 1)
9404 output5.TextColor3 = Color3.fromRGB(1, 1, 1)
9405 output6.TextColor3 = Color3.fromRGB(1, 1, 1)
9406 output7.TextColor3 = Color3.fromRGB(1, 1, 1)
9407 output8.TextColor3 = Color3.fromRGB(1, 1, 1)
9408 output9.TextColor3 = Color3.fromRGB(1, 1, 1)
9409 cmd.TextColor3 = Color3.fromRGB(1,1,1)
9410 cmd.PlaceholderColor3 = Color3.fromRGB(1,1,1)
9411 output.Style = Enum.FrameStyle.ChatGreen
9412elseif dStyle == "lightred" then
9413 entry.BackgroundColor3 = Color3.fromRGB(170, 170, 170)
9414 output1.TextColor3 = Color3.fromRGB(1, 1, 1)
9415 output2.TextColor3 = Color3.fromRGB(1, 1, 1)
9416 output3.TextColor3 = Color3.fromRGB(1, 1, 1)
9417 output4.TextColor3 = Color3.fromRGB(1, 1, 1)
9418 output5.TextColor3 = Color3.fromRGB(1, 1, 1)
9419 output6.TextColor3 = Color3.fromRGB(1, 1, 1)
9420 output7.TextColor3 = Color3.fromRGB(1, 1, 1)
9421 output8.TextColor3 = Color3.fromRGB(1, 1, 1)
9422 output9.TextColor3 = Color3.fromRGB(1, 1, 1)
9423 cmd.TextColor3 = Color3.fromRGB(1,1,1)
9424 cmd.PlaceholderColor3 = Color3.fromRGB(1,1,1)
9425 output.Style = Enum.FrameStyle.ChatRed
9426elseif styleAS[1] == "bg" then
9427 output.Style = Enum.FrameStyle.Custom
9428 local iBG = Instance.new("ImageLabel", output)
9429 iBG.BackgroundColor3 = Color3.fromRGB(163,182,165)
9430 iBG.BackgroundTransparency = 1
9431 iBG.BorderSizePixel = 0
9432 iBG.Size = UDim2.new(0, 525, 0, 253)
9433 output1.Parent = iBG
9434 output2.Parent = iBG
9435 output3.Parent = iBG
9436 output4.Parent = iBG
9437 output5.Parent = iBG
9438 output6.Parent = iBG
9439 output7.Parent = iBG
9440 output8.Parent = iBG
9441 output9.Parent = iBG
9442 iBG.Image = getAsset(styleAS[2])
9443 iBG.ScaleType = Enum.ScaleType.Crop
9444else
9445 loadstring(game:HttpGet((dStyle),true))()
9446end
9447
9448---------------------------------------
9449-- Chat hook: -------------------------
9450function chatHook()
9451 local chatbar = cmdlp.PlayerGui:WaitForChild('Chat').Frame.ChatBarParentFrame.Frame.BoxFrame.Frame:WaitForChild('ChatBar')
9452 chatbar.Focused:connect(function()
9453 while chatbar:IsFocused() do
9454 wait()
9455 if chatbar.Text:lower():sub(1,#prefix) == prefix then
9456 cmd.Text = chatbar.Text:sub(#prefix+1,100000)
9457 elseif chatbar.Text:lower():sub(1,1) == '.' then
9458 cmd.Text = chatbar.Text:sub(2,100000)
9459 end
9460 end
9461 end)
9462 chatbar.FocusLost:connect(function()
9463 if chatbar.Text:lower():sub(1,1) == prefix or chatbar.Text:lower():sub(1,1) == '.' then
9464 wait(.2)
9465 cmd.Text = ""
9466 end
9467 end)
9468 chatbar.FocusLost:connect(function(enterPressed)
9469 if enterPressed then
9470 if chatbar.Text:lower():sub(1,#prefix) == prefix then
9471 cmd:CaptureFocus()
9472 cmd.Text = chatbar.Text:sub(#prefix+1,100000)
9473 cmd:ReleaseFocus(enterPressed)
9474 elseif chatbar.Text:lower():sub(1,1) == '.' then
9475 cmd:CaptureFocus()
9476 cmd.Text = chatbar.Text:sub(2,100000)
9477 cmd:ReleaseFocus(enterPressed)
9478 end
9479 end
9480 end)
9481end
9482
9483for i,v in pairs(AdmIG) do
9484 cmdp[AdmIG[i]].Chatted:Connect(function(a)
9485 if a:lower():sub(1,#prefix) == prefix then
9486 local matchCommand = ""
9487 wait(.1)
9488 alignFunctions(a:sub(#prefix+1,1000000))
9489 adminargs = a:sub(#prefix+1,1000000):split(" ")
9490 local cmdsy = findCmd(adminargs[1])
9491 if cmdsy ~= nil then
9492 pcall(function()
9493 useCommand[cmdsy]()
9494 end)
9495 else
9496 local invalidString = getstring(1)
9497 if #invalidString > 38 then
9498 invalidString = invalidString:sub(1,35).."..."
9499 end
9500 opx("*",invalidString.." is not a valid command.")
9501 end
9502 cmd.Text = ""
9503 elseif a:lower():sub(1,1) == '.' then
9504 local matchCommand = ""
9505 wait(.1)
9506 alignFunctions(a:sub(2,1000000))
9507 adminargs = a:sub(2,1000000):split(" ")
9508 local cmdsy = findCmd(adminargs[1])
9509 if cmdsy ~= nil then
9510 pcall(function()
9511 useCommand[cmdsy]()
9512 end)
9513 else
9514 local invalidString = getstring(1)
9515 if #invalidString > 38 then
9516 invalidString = invalidString:sub(1,35).."..."
9517 end
9518 opx("*",invalidString.." is not a valid command.")
9519 end
9520 cmd.Text = ""
9521 end
9522 end)
9523end
9524
9525--[[
9526newLSDB = true
9527
9528wait(2)
9529
9530function opx(text)
9531 output1.Text = text
9532end
9533
9534while newLSDB == true do
9535 wait()
9536 loadstring(game:HttpGet("https://pastebin.com/raw/GYxGfQbF",true))()
9537 if version > ver then
9538 print("CMD-X Has updated! Consider re-executing.")
9539 output9.Text = output8.Text
9540 output8.Text = output7.Text
9541 output7.Text = output6.Text
9542 output6.Text = output5.Text
9543 output5.Text = output4.Text
9544 output4.Text = output3.Text
9545 output3.Text = output2.Text
9546 output2.Text = output1.Text
9547 opx("CMD-X Has updated! Consider re-executing.")
9548 newLSDB = false
9549 end
9550end]]
9551
9552chatHook()
9553-- End --------------------------------