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

How Do I make the Text Same as the Player Walkspeed Stats?

Asked by 4 years ago
Edited 4 years ago

I need to know the humanoid stats, if the humanoid walkspeed stats is 300, the text in the text label will show "300" as well, can someone help me with it?

2 answers

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

his is ok, but takes more resource! this one

humanoid:GetPropertyChangedSignal'WalkSpeed':connect(function(ws)
    script.Parent.Text = tostring(ws)
end)
Ad
Log in to vote
-1
Answered by 4 years ago
while true do 
    wait(2)
    script.Parent.Text = workspace[game.Players.LocalPlayer.Name].HumanoidWalkSpeed
end

Answer this question