My R15 Character doesnt have scale values in the humanoid.
Any alternate ways i can use without breaking anything?
Just trying to make a button that shrinks the player, but theres no values to do so.
game.ReplicatedStorage.Purification.OnServerEvent:Connect(function(plr)
local Humanoid = plr.Character:FindFirstChild("Humanoid")
if Humanoid then
for i, Child in pairs(Humanoid:GetChildren()) do
if Child:IsA('NumberValue')then
Child.Value = 1.5
end
end
end
end)
That was in play test mode, do i have to put down a humanoid description inorder to turn it off?
Also, if i turn it off while playing, it breaks the camera.