How can I make the character larger through a script? Like in those strength training simulators - you just become giant yk?
if Humanoid then
Humanoid.HumanoidDescription.HeadScale += 1
end
this no work
if Humanoid then
local Description = Humanoid:GetAppliedDescription()
-- code
end
script.Parent.Equipped:Connect(function()
local stats = script.Parent
local Char = script.Parent.Parent
local Humanoid = Char:WaitForChild("Humanoid")
print("a")
script.Parent.Activated:Connect(function()
local Description = Humanoid:GetAppliedDescription()
Description.HeadScale += 1
print("b")
end)
end)
What am I doing wrong
:ApplyDescription()
1 Like
Thanks wonderful people
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.