From 725585c28a4ea5ef45120a9bde6e5e1f11a42fca Mon Sep 17 00:00:00 2001 From: HTMLGUYNOOB <155635557+HTMLGUYNOOB@users.noreply.github.com> Date: Mon, 24 Mar 2025 22:05:29 +0300 Subject: [PATCH] Update and Esp and Speed --- Esp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Esp b/Esp index c8faad3..3d34403 100644 --- a/Esp +++ b/Esp @@ -1,6 +1,5 @@ local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") -local Workspace = game:GetService("Workspace") -- Create a RemoteEvent for communication (Server to Client) local aimEvent = Instance.new("RemoteEvent") @@ -31,6 +30,15 @@ local function increaseWalkSpeed(character) end end +-- Function to reset walk speed to normal (19) +local function resetWalkSpeed(character) + local humanoid = character:FindFirstChild("Humanoid") + if humanoid then + -- Set WalkSpeed to 19 (default speed) + humanoid.WalkSpeed = 19 + end +end + -- Function to handle player joining and applying ESP and WalkSpeed local function onPlayerAdded(player) -- Only apply to the target player "HelloGuysscript"