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

Speed Gamepass Resets When Player Dies?

Asked by 5 years ago

Speed Gamepass resets whenever the player dies even though I made sure to make it active again once they die?!

ServerScript

01local MPS = game:GetService("MarketplaceService")
02 
03MPS.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
07end)
08 
09 
10game.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()
15wait(6)
View all 26 lines...

PrompPurchase

01local MarketplaceService = game:GetService("MarketplaceService")
02local Players = game:GetService("Players")
03 
04local GamepassID = 8946601  -- Change this to your developer product ID
05 
06-- Function to prompt purchase of the developer product
07script.Parent.MouseButton1Click:Connect(function()
08    MarketplaceService:PromptGamePassPurchase(game.Players.LocalPlayer, GamepassID)
09end)
10 
11MarketplaceService.PromptGamePassPurchaseFinished:connect(function(player, id, purchased)
12    if id == GamepassID and purchased then
13        game.ReplicatedStorage.VIP:FireServer()
14    end
15end)

3 answers

Log in to vote
1
Answered by 5 years ago
Edited 5 years ago

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:

1game.Players.LocalPlayer.CharacterAdded:Connect(function()
2   print("The player just died, or loaded in")
3end)

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!

0
I'm using a serverscript? How would I get .LocalPlayer Jomeliter 55 — 5y
0
you can't use .LocalPlayer inside of a normal script, there are other ways to do it instead jediplocoon 877 — 5y
Ad
Log in to vote
0
Answered by
0msh 333 Moderation Voter
5 years ago
Edited 5 years ago

just add a CharacterAdded to check when the player's character is added and change the walkspeed

new server script:

01local MPS = game:GetService("MarketplaceService")
02 
03MPS.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
07end)
08 
09 
10game.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
15end)
View all 22 lines...
0
Doesn't work Jomeliter 55 — 5y
0
mb, forgot to change the way of finding the player's character way to char. should work now. and the speed remote isn't a good idea 0msh 333 — 5y
0
? JesseSong 3916 — 5y
Log in to vote
0
Answered by
JesseSong 3916 Moderation Voter Community Moderator
5 years ago

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)

1plr.Character:WaitForChild("Humanoid").WalkSpeed = plr.Character:WaitForChild("Humanoid").WalkSpeed * 2

end)~~~~~~~~~~~~~

Answer this question