-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathhugecharacter.lua
More file actions
22 lines (20 loc) · 869 Bytes
/
hugecharacter.lua
File metadata and controls
22 lines (20 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
local UserInputService = game:GetService("UserInputService")
local GuiService = game:GetService("GuiService")
local LocalPlayer = game:GetService("Players").LocalPlayer
local doa = true
game:GetService("RunService").Stepped:Connect(function()
if UserInputService:IsKeyDown(Enum.KeyCode.B) then
if doa then
doa = false
fireclickdetector(workspace.ClothingRacks.ClothingRack.Hitbox.ClickDetector)
for _,v in ipairs(game:GetService("Players").LocalPlayer.Character:GetDescendants()) do
if v.Name == "OriginalSize" then v:Destroy() end
end
for _,v in ipairs(game:GetService("Players").LocalPlayer.Character.Humanoid:GetChildren()) do
if string.find(v.Name,"Scale") then v:Destroy() end
end
doa = true
end
wait(.1)
end
end)