rigtype of local player is R15, not sure what i'm doing wrong...
-- MAKE PLAYER BIGGER game.ReplicatedStorage.PlayerBigger.OnServerEvent:Connect(function(player) local humanoid = player.Character.Humanoid if humanoid then if humanoid.BodyWidthScale then print("found BodyWidthScale") else print("no BodyWidthScale") end end end)
BodyWidthScale is not a valid member of Humanoid "Workspace.Player1.Humanoid"
game.ReplicatedStorage.PlayerBigger.OnServerEvent:Connect(function(plr) local myVar = nil -- put the number you want your player to grow right here local character = plr.Character local humanoid = character:WaitForChild("Humanoid) humanoid.BodyWidthScale.Value += (myVar) end)
If this doesnt work, send me the error