local id = 18411129 parent = script.Parent player = game.Players.LocalPlayer AnotherBrick = game.Workspace.winners parent.Touched:connect(function(part) -- 3 if part.Parent.Humanoid then -- * if part.Parent.Humanoid.Health > 0 then -- 4 if game:GetService("GamePassService"):PlayerHasPass(player, id) then part.Parent:MoveTo(AnotherBrick.Position) -- 5 print("success!") else player:PromptGamePassPurchase(player, id) end end end end)