Need help with Dev Products ?
Well I want a dev product to give health and speed and to be able to stack. I do not want the health to be restored but to just add to there maximum health. And when they die they lose the speed or health whatever they bought forever until they buy more. My recent problem with it is that you lose it on death but when you rejoin the game you get all the speed you paid for and i don't want that with the gear or health and neither the speed I want them all to be gone from the people forever until they buy more. Hope you guys can help! :D
If you got a reply tell me the script or maybe a link. :P If you know just one of those scripts to just add speed let me know you don't have to give me all three of them .! Thank you for reading!
Not a request you dont need to! :)
Since I am having problems with my speed one where it adds speed and you lose it when you die but when you rejoin you get all of it back!
Here is the script I have in the starter pack:
local developerProduct = 20433249 -- Id of the developer product
local speedInc = 15 --Change this to the amount of Walkspeed you'd like to give.
01 | Game:GetService( "MarketplaceService" ).ProcessReceipt = function (receipt) |
02 | if receipt.ProductId = = developerProduct then |
03 | for i,v in pairs (game.Players:GetPlayers()) do |
04 | if v.userId = = receipt.PlayerId then |
05 | if v.Character and v.Character:FindFirstChild( "Humanoid" ) then |
06 | v.Character.Humanoid.WalkSpeed = v.Character.Humanoid.WalkSpeed + speedInc |
And here is the one in the button:
local marketplace = Game:GetService("MarketplaceService")
local developerProduct = 20433249 -- id of the developer product
local player = game.Players.LocalPlayer
1 | script.Parent.MouseButton 1 Down:connect( function () |
2 | marketplace:PromptProductPurchase(player, developerProduct) |
You dont have to help its not a request only if you want to :)!