local Players = game:GetService("Players")
local MarketPlaceService = game:GetService("MarketplaceService")
Players.PlayerAdded:Connect(function(Player)
Player.CharacterAdded:Connect(function(Character)
local Humanoid = Character:WaitForChild("Humanoid")
local GamepassID = 1679281028 -- Change this ID to your Gamepass ID
local Multiplier = 2 -- Change this to the amount you want the default walkspeed to multiply by
if MarketPlaceService:UserOwnsGamePassAsync(Player.UserId, GamepassID) then
Humanoid.WalkSpeed = Humanoid.WalkSpeed * Multiplier
end
end)
end)