Speed Gamepass resets whenever the player dies even though I made sure to make it active again once they die?!
ServerScript
01 | local MPS = game:GetService( "MarketplaceService" ) |
02 |
03 | MPS.PromptGamePassPurchaseFinished:Connect( function (plr,ido,purchased) |
04 | if purchased and 8946555 = = ido then |
05 | plr.Character.Humanoid.WalkSpeed = plr.Character.Humanoid.WalkSpeed * 2 |
06 | end |
07 | end ) |
08 |
09 |
10 | game.Players.PlayerAdded:Connect( function (plr) |
11 | if MPS:UserOwnsGamePassAsync(plr.UserId, 8946555 ) then |
12 | game.Workspace:WaitForChild(plr.Name):WaitForChild( "Humanoid" ).WalkSpeed = game.Workspace:WaitForChild(plr.Name):WaitForChild( "Humanoid" ).WalkSpeed * 2 |
13 | end |
14 | plr.Character:FindFirstChild( "Humanoid" ).Died:Connect( function () |
15 | wait( 6 ) |
PrompPurchase
01 | local MarketplaceService = game:GetService( "MarketplaceService" ) |
02 | local Players = game:GetService( "Players" ) |
03 |
04 | local GamepassID = 8946601 -- Change this to your developer product ID |
05 |
06 | -- Function to prompt purchase of the developer product |
07 | script.Parent.MouseButton 1 Click:Connect( function () |
08 | MarketplaceService:PromptGamePassPurchase(game.Players.LocalPlayer, GamepassID) |
09 | end ) |
10 |
11 | MarketplaceService.PromptGamePassPurchaseFinished:connect( function (player, id, purchased) |
12 | if id = = GamepassID and purchased then |
13 | game.ReplicatedStorage.VIP:FireServer() |
14 | end |
15 | end ) |
It's actually very simple :D
I once struggled with this too, i know it's a pain in the ass not getting things done.
We simply use a function called .CharacterAdded
Every-time the player loads in, this function will be called. Useful in calculating the players deaths
Here's a short example:
1 | game.Players.LocalPlayer.CharacterAdded:Connect( function () |
2 | print ( "The player just died, or loaded in" ) |
3 | end ) |
I won't tell you the script, but it's got to do something with this. Why you may ask?
You learn by researching, and improvising.
This is how i learned LUA.
Enjoy your scripting career!
just add a CharacterAdded
to check when the player's character is added and change the walkspeed
new server script:
01 | local MPS = game:GetService( "MarketplaceService" ) |
02 |
03 | MPS.PromptGamePassPurchaseFinished:Connect( function (plr,ido,purchased) |
04 | if purchased and 8946555 = = ido then |
05 | plr.Character.Humanoid.WalkSpeed = plr.Character.Humanoid.WalkSpeed * 2 |
06 | end |
07 | end ) |
08 |
09 |
10 | game.Players.PlayerAdded:Connect( function (plr) |
11 | plr.CharacterAdded:Connect( function (char) |
12 | if MPS:UserOwnsGamePassAsync(plr.UserId, 8946555 ) then |
13 | char.Humanoid.WalkSpeed = char.Humanoid.WalkSpeed * 2 |
14 | end |
15 | end ) |
I would suggest using a while loop to check whether the player has died then promptgamepasspurchase on line 14 And I'm on mobile so I can't test it
Script ~~~~~~~~~~~~~~~~~
~~~local MPS = game:GetService("MarketplaceService")
MPS.PromptGamePassPurchaseFinished:Connect(function(plr,ido,purchased) if purchased and 8946555 == ido then plr.Character.Humanoid.WalkSpeed = plr.Character.Humanoid.WalkSpeed * 2 end end)
game.Players.PlayerAdded:Connect(function(plr) plr.CharacterAdded:Connect(function(char) if MPS:UserOwnsGamePassAsync(plr.UserId,8946555 ) then char.Humanoid.WalkSpeed = char.Humanoid.WalkSpeed * 2 end end) end)
game.ReplicatedStorage.Speed.OnServerEvent:Connect(function(plr)
1 | plr.Character:WaitForChild( "Humanoid" ).WalkSpeed = plr.Character:WaitForChild( "Humanoid" ).WalkSpeed * 2 |
end)~~~~~~~~~~~~~