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)
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.
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?