I am trying to get the walkspeed indicator gui to show the character's walkspeed, and I couldn't figure how to get it to function
local textIndicator = script.Parent.Text
players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
local humanoid = char:WaitForChild("Humanoid")
while wait() do
textIndicator = ""..humanoid.WalkSpeed
end
end)
end)```
** You are now Level 1! **