Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why isn't this working, it says the scales(Like body height scale) is not there?

Asked by 4 years ago
function Playersize(player)
    local Sv = 5
    local humanoid = player.Character.Humanoid
        humanoid.BodyHeightScale = Sv
        humanoid.BodyWidthScale = Sv
        humanoid.BodyDepthScale = Sv
        humanoid.HeadScale = Sv
end
local player = game.Players.LocalPlayer 

game.ReplicatedStorage.Events.Transformation.OnServerEvent:Connect(function(player)
    Playersize(game.Players.Brockanthony10)
end)

0
Are you trying to resize your avatar? iiMxtt_Destinyii 62 — 4y
0
I was doing that to test Brockanthony10 19 — 4y
0
OnServerEvent can only be called by a server script yet you are using local player? epicgnomer 15 — 4y

Answer this question