01 | game.Players.PlayerAdded:Connect( function (player) |
02 | wait( 1 ) |
03 | local hasPass = false |
04 | local success, message = pcall ( function () |
05 | hasPass = MarketplaceService:UserOwnsGamePassAsync(player.UserId, gamePassID) |
06 | end ) |
07 | if hasPass = = true or player.UserId = = 94204218 then |
08 |
09 | player.Character.Humanoid.WalkSpeed = 30 |
10 | end |
end)
01 | local MarketplaceService = game:GetService( "MarketplaceService" ) |
02 | local Players = game:GetService( "Players" ) |
03 |
04 | local GamepassId = --// Id |
05 | local GamepassWalkspeed = 30 |
06 |
07 | local GiveToIds = { |
08 | [ 94204218 ] = true |
09 | } |
10 |
11 | local 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" ) |
Make a nested function that triggers every time the player's character respawns.
Try this:
01 | game.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 |
14 | end ) |