Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

How would I make it so the walkspeed doesnt reset on death?

Asked by
Ben_B 9
4 years ago
01game.Players.PlayerAdded:Connect(function(player)
02wait(1)
03local hasPass = false
04local success, message = pcall(function()
05    hasPass = MarketplaceService:UserOwnsGamePassAsync(player.UserId,           gamePassID)
06end)
07if hasPass == true or player.UserId == 94204218 then
08 
09    player.Character.Humanoid.WalkSpeed = 30
10end

end)

0
That script is a ServerScript inside ServerScriptService, i have this script in StarterPlayerScripts: Ben_B 9 — 4y
0
l o o p i t greatneil80 2647 — 4y

2 answers

Log in to vote
2
Answered by
Ziffixture 6913 Moderation Voter Community Moderator
4 years ago
Edited 4 years ago
01local MarketplaceService = game:GetService("MarketplaceService")
02local Players = game:GetService("Players")
03 
04local GamepassId = --// Id
05local GamepassWalkspeed = 30
06 
07local GiveToIds = {
08    [94204218] = true
09}
10 
11local function SetWalkSpeed(Player)
12    local HasPass = MarketplaceService:UserOwnsAssetAsync(Player.UserId, GamepassId)
13    if (HasPass or GiveToIds[Player.UserId] then
14        Player.CharacterAdded:Connect(function(Character)
15            local Humanoid = Character:FindFirstChildOfClass("Humanoid")
View all 23 lines...
Ad
Log in to vote
1
Answered by 4 years ago

Make a nested function that triggers every time the player's character respawns.

Try this:

01game.Players.PlayerAdded:Connect(function(player)
02 
03    local AssetID = 123456789 -- Insert your AssetID here
04 
05    player.CharacterAdded:Connect(function(player)
06 
07        if game:GetService("MarketplaceService"):PlayerOwnsAsset(player, AssetID) or player.UserId == 94204218 then
08 
09            player.Character.Humanoid.WalkSpeed = 30
10 
11        end
12    end)   
13 
14end)

Answer this question