#obby stage skip

1 messages · Page 1 of 1 (latest)

sterile anchor
#

yall like i got my stage skip its working but when someone spend robux on it it doesnt take him to next stage its on still same stage and what i do

normal trail
#

Code?

sterile anchor
marsh matrix
#

show ur code

sterile anchor
zinc fjord
sterile anchor
zinc fjord
sterile anchor
# zinc fjord A script contains code yes

script.Parent.MouseButton1Down:Connect(function()
local MarketplaceService = game:GetService("MarketplaceService")
MarketplaceService:PromptProductPurchase(game.Players.LocalPlayer, 3385506784) -- change the productID to yours
end)

marsh matrix
#

its only that?

sterile anchor
#

uhh yeah like i got intvalue and i through it work immidiately

sterile anchor
marsh matrix
#

oh and its onlyy that

#

okay i see

#

soo

#

ur missing the part where you make the player skip a stage

sterile anchor
marsh matrix
sterile anchor
marsh matrix
#

just ask chatgpt at this point 🙏

#

-- Put this LocalScript inside your Skip Button (StarterGui > ScreenGui > TextButton)

local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")

-- RemoteEvent for skipping (make sure one exists in ReplicatedStorage!)
local skipEvent = ReplicatedStorage:WaitForChild("SkipStage")

script.Parent.MouseButton1Click:Connect(function()
local player = Players.LocalPlayer
skipEvent:FireServer(player)
end)