local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer -- Function to set walk speed local function setWalkSpeed() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("Humanoid") then local humanoid = LocalPlayer.Character.Humanoid if humanoid.WalkSpeed ~= 45 then humanoid.WalkSpeed = 45 game.StarterGui:SetCore("SendNotification", {Title="Inf Speed (45)"; Text="Speed changed !"; Duration=1;}) end end end -- Loop to continuously set walk speed while true do setWalkSpeed() wait(0.1) -- Adding a small delay to prevent freezing end