Not changing text or colors

	local GamepassID = 94546777
	game.Players.PlayerAdded:Connect(function(player)
		if game:GetService("MarketplaceService"):UserOwnsGamePassAsync(player.UserID, GamepassID) then
			clone3.TextLabel = "[CLEARED]"
			clone3.TextLabel.TextColor = Color3.fromRGB(0, 255, 17)
		end

This is my code for a overhead, but it does not seem to be working, meaning it won’t change text or colors. What did I do wrong?

This doesn’t appear to be the full code, could I see the full code?

Here, head to the new post, I accidently deleted then reopened this post.

your missing the text and it should be:

	clone3.TextLabel.Text  = "[CLEARED]"
1 Like