+100 WalkSpeed when developer product bought?
Hey, i have this script which give u +100 walk speed when u buy a developer product, the problem is when i go on my game and buy it so i can test it out, it doesn't make me walk faster.
04 | local MarketplaceService = Game:GetService( "MarketplaceService" ) |
05 | function UsernameFromID(ID) |
06 | if type (ID) ~ = "number" then |
09 | local sets = game:service( "InsertService" ):GetUserSets(ID) |
10 | for k, v in next , sets do |
11 | if v.Name = = "My Models" then |
16 | function giveRewards(player) |
18 | Workspace.player.Humanoid.WalkSpeed = Workspace.player.Humanoid.WalkSpeed + 100 |
20 | return Enum.ProductPurcaseDecision.PurchaseGranted |
22 | MarketplaceService.ProcessReceipt = function (receiptInfo) |
23 | giveRewards(UsernameFromID(receiptInfo.PlayerId)) |
25 | script.Parent.MouseButton 1 Down:connect( function () |
26 | Game:GetService( "MarketplaceService" ):PromptProductPurchase(script.Parent.Parent.Parent.Parent, productId) |
EXTRA
Can any one help me fix the script below which is like the one on the top but it gives u +15 Health, Thank you.
04 | local MarketplaceService = Game:GetService( "MarketplaceService" ) |
05 | function UsernameFromID(ID) |
06 | if type (ID) ~ = "number" then |
09 | local sets = game:service( "InsertService" ):GetUserSets(ID) |
10 | for k, v in next , sets do |
11 | if v.Name = = "My Models" then |
16 | function giveRewards(player) |
17 | local human = player.Parent:findFirstChild( "Humanoid" ) |
19 | human.MaxHealth = human.MaxHealth + 15 |
20 | human.Health = human.Health + 15 |
22 | return Enum.ProductPurcaseDecision.PurchaseGranted |
24 | MarketplaceService.ProcessReceipt = function (receiptInfo) |
25 | giveRewards(UsernameFromID(receiptInfo.PlayerId)) |
27 | script.Parent.MouseButton 1 Down:connect( function () |
28 | Game:GetService( "MarketplaceService" ):PromptProductPurchase(script.Parent.Parent.Parent.Parent, productId) |
Thank you