Skip to content
This repository was archived by the owner on Aug 3, 2024. It is now read-only.

Commit b4a14e3

Browse files
authored
Update admin.lua
1 parent a7f42ed commit b4a14e3

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

admin.lua

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,19 +286,24 @@ commands = {
286286
btools = function(...)
287287
local Player = Players.LocalPlayer
288288
local backpack = Player.Backpack
289+
289290
local hammer = Instance.new("HopperBin")
290291
hammer.Name = "Hammer"
291292
hammer.BinType = 4
292293
hammer.Parent = backpack
294+
293295
local cloneTool = Instance.new("HopperBin")
294296
cloneTool.Name = "Clone"
295297
cloneTool.BinType = 3
296298
cloneTool.Parent = backpack
299+
297300
local grabTool = Instance.new("HopperBin")
298301
grabTool.Name = "Grab"
299302
grabTool.BinType = 2
300303
grabTool.Parent = backpack
304+
301305
task.wait()
306+
302307
rconsolewarn('Anything you add or delete using "btools" will be client-side only.')
303308

304309
end,
@@ -322,18 +327,21 @@ commands = {
322327
walkspeed = function(...)
323328
local args = {...}
324329
local ws = args[1]
330+
325331
Humanoid.WalkSpeed = ws
326332
end,
327333

328334
jumppower = function(...)
329335
local args = {...}
330336
local jp = args[1]
337+
331338
Humanoid.JumpPower = jp
332339
end,
333340

334341
hipheight = function(...)
335342
local args = {...}
336343
local hh = args[1]
344+
337345
Humanoid.HipHeight = hh
338346
end,
339347

0 commit comments

Comments
 (0)