local plr = game.Players.LocalPlayer
local walkGui = script.Parent
local walkSpeedText = walkGui.walkSpeedText1
local jumpPowerText = walkGui.jumpPowerText1
while wait(1) do
walkSpeedText.Text = "Walkspeed: " .. plr.Character.Humanoid.WalkSpeed
jumpPowerText.Text = "Jump Power: " .. plr.Character.Humanoid.JumpPower
end
local players = game:GetService("Players")
local player = players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")
local walkGui = script.Parent
local walkSpeedText = walkGui.walkSpeedText1
local jumpPowerText = walkGui.jumpPowerText1
while task.wait(1) do
walkSpeedText.Text = "Walkspeed: "..humanoid.WalkSpeed
jumpPowerText.Text = "Jump Power: "..humanoid.JumpPower
end
Yes, i tried your script.
Here is output
Callstack:
cloud_144938633.archimedesTwo.initiatePlugin.MainModule, line 30
cloud_144938633.archimedesTwo.initiatePlugin.MainModule, line 28
Server
16:31:36.183 Humanoid is not a valid member of Model âWorkspace.SpynApple_Pâ - Client - LocalScript:7
16:31:36.183 Stack Begin - Studio
16:31:36.183 Script âPlayers.SpynApple_P.PlayerGui.WALKGUI.LocalScriptâ, Line 7 - Studio - LocalScript:7
16:31:36.183 Stack End - Studio
Oh, I thought you were referring to the video you sent, in that case youâll need a different implementation entirely.
Hereâs an example.
local players = game:GetService("Players")
local player = players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")
local label = script.Parent
humanoid.Running:Connect(function(speed)
label.Text = "Speed: "..speed
end)