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

Game Pass Error Inf Pet Equip? [closed]

Asked by 3 years ago
Edited 3 years ago

This question already has an answer here:

Game Pass Error Inf Pet Equip?

Im trying to make inf pet equip gamepass but i dont know the script i looked at youtube and google i found noting Pls help.

local service = game:GetService("MarketplaceService") local gamepass = 10077816 local player = game.Players.LocalPlayer script.Parent.MouseButton1Click:Connect(function() service:PromptGamePassPurchase(player, gamepass) end)

service.PromptGamePassPurchaseFinished:Connect(function() --your script here player.Character.Humanoid.PetEquip = 999999 end)

0
... CaIcuIati0n 246 — 3y
0
This isn't a request site. Cynical_Innovation 595 — 3y
0
this is a question Superman20002007 -30 — 3y
0
Well, it's not constructive. Cynical_Innovation 595 — 3y
View all comments (4 more)
0
i have posted the script Superman20002007 -30 — 3y
0
Please put it in code blocks. Cynical_Innovation 595 — 3y
0
Please code format your code, i barely can read it. CaIcuIati0n 246 — 3y
0
fixed Superman20002007 -30 — 3y

Marked as Duplicate by evaera

This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 3 years ago
local service = game:GetService("MarketplaceService")
local gamepass = 
local player = game.Players.LocalPlayer
script.Parent.MouseButton1Click:Connect(function()
    service:PromptGamePassPurchase(player, gamepass)
end)

service.PromptGamePassPurchaseFinished:Connect(function()
    --your script here
    player.Character.Humanoid.WalkSpeed = 50
end)

You have to change WalkSpeed for something else.I dont know what you want to do here.

0
Make sure it's in a localscript inside a textbutton.Tell me if this helps. SitaruDaniel 44 — 3y
0
Actually, I think I did something wrong on purchase finished. SitaruDaniel 44 — 3y
0
hey thx for answer but when u get the game pass i want it to give infinite pet equip and not walk speed. Superman20002007 -30 — 3y
0
hey u saw my reply? Superman20002007 -30 — 3y
Ad