@@ -79,14 +79,71 @@ commands = {
7979 rconsoleprint (i .. " .) " .. key .. " \n " )
8080 end
8181 end ,
82+ removelegs = function (...)
83+ for i ,v in pairs (character :GetChildren ()) do
84+ if v :IsA (" BasePart" ) and
85+ v .Name == " RightUpperLeg" or
86+ v .Name == " LeftUpperLeg" then
87+ v :Destroy ()
88+ end
89+ end
90+ task .wait ()
91+ for i ,v in pairs (character :GetChildren ()) do
92+ if v :IsA (" BasePart" ) and
93+ v .Name == " Right Leg" or
94+ v .Name == " Left Leg" then
95+ v :Destroy ()
96+ end
97+ end
98+ end
99+ end ,
100+
101+ removearms = function (...)
102+ for i ,v in pairs (character :GetChildren ()) do
103+ if v :IsA (" BasePart" ) and
104+ v .Name == " RightUpperArm" or
105+ v .Name == " LeftUpperArm" then
106+ v :Destroy ()
107+ end
108+ end
109+ task .wait ()
110+ for i ,v in pairs (character :GetChildren ()) do
111+ if v :IsA (" BasePart" ) and
112+ v .Name == " Right Arm" or
113+ v .Name == " Left Arm" then
114+ v :Destroy ()
115+ end
116+ end
117+ end
118+ end ,
82119
120+ sit = function (...)
121+ character :FindFirstChildOfClass (" Humanoid" ).Sit = true
122+ end ,
123+
124+ jump = function (...)
125+ character :FindFirstChildOfClass (" Humanoid" ):ChangeState (Enum .HumanoidStateType .Jumping )
126+ end ,
127+
83128 execute = function (...)
84129 local args = {... }
85130 local text = args [1 ]
86131
87132 loadstring (text )
88133 end ,
89134
135+ removetoolmesh = function (...)
136+ for _ ,v in pairs (character :GetChildren ()) do
137+ if v :IsA (" Tool" ) or v :IsA (" HopperBin" ) then
138+ for i ,c in pairs (v :GetDescendants ()) do
139+ if c :IsA (" SpecialMesh" ) then
140+ c :Destroy ()
141+ end
142+ end
143+ end
144+ end
145+ end ,
146+
90147 getremotes = function (...)
91148 for i , v in pairs (game :GetDescendants ()) do
92149 if string.match (v .ClassName , " RemoteEvent" ) then
0 commit comments