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

+100 WalkSpeed when developer product bought?

Asked by
DanzLua 2879 Moderation Voter Community Moderator
10 years ago

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.

01--[[This script goes inside of a TextBox which should be inside of a ScreenGui]]
02productId = 21073044 -- Replace 123123123 with the id of your developer product.
03 
04local MarketplaceService = Game:GetService("MarketplaceService")
05function UsernameFromID(ID)
06    if type(ID) ~= "number" then
07    return
08    end
09    local sets = game:service("InsertService"):GetUserSets(ID)
10    for k, v in next, sets do
11        if v.Name == "My Models" then
12            return v.CreatorName
13        end
14    end
15end
View all 27 lines...

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.

01--[[This script goes inside of a TextBox which should be inside of a ScreenGui]]
02productId = 20986884 -- Replace 123123123 with the id of your developer product.
03 
04local MarketplaceService = Game:GetService("MarketplaceService")
05function UsernameFromID(ID)
06    if type(ID) ~= "number" then
07    return
08    end
09    local sets = game:service("InsertService"):GetUserSets(ID)
10    for k, v in next, sets do
11        if v.Name == "My Models" then
12            return v.CreatorName
13        end
14    end
15end
View all 29 lines...

Thank you

2 answers

Log in to vote
2
Answered by 10 years ago

Well obviously. A Humanoid's default WalkSpeed is 16. And a Humanoid's default MaxHealth is 100 So. Just do.

1wait(7) -- each time you respawn. Don't touch it. You can only do higher
2game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 116
1wait(7) -- each time you respawn. Don't touch it. You can only do higher
2game.Players.LocalPlayer.Character.MaxHealth = 115
3game.Players.LocalPlayer.Character.Health = 115

Hope this helps!

Ad
Log in to vote
-1
Answered by 7 years ago

to add and subtract walkspeed or jumppower do

to change walkspeed to JumpPower just change WalkSpeed to JumpPower :D

Make sure you make a developer product first and then copy the id of the product and rename the scripts name as the id!

01local plr = script.Parent.Parent.Parent.Parent.Parent
02local link = game:GetService("MarketplaceService")
03deb = 0
04 
05script.Parent.MouseButton1Click:connect(function()
06local marketId = script.Name --this is the id of your developer product, rename script to id!
07link:PromptProductPurchase(plr,marketId)
08link.ProcessReceipt = function(receiptInfo)
09if Enum.ProductPurchaseDecision.PurchaseGranted and receiptInfo.PlayerId == plr.userId then
10if deb == 0 then
11deb = 1
12plr.Character.Humanoid.WalkSpeed = plr.Character.Humanoid.WalkSpeed + 100
13wait(1)
14deb = 0
15end
16end
17end
18end)
0
This was 2 years agooooo m88888 ;pp DanzLua 2879 — 7y
0
lol Goldenkings11 -11 — 7y

Answer this question