Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion Esp
Original file line number Diff line number Diff line change
@@ -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")
Expand Down Expand Up @@ -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"
Expand Down