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"