i have searched up youtube tutorials it dont work i have tried everything. im making a game and when i join i need my model thats by the counter to disapear so i can stand in there instead
Put this in StarterPlayerScripts as a local script:
game.Players.PlayerAdded:Connect(function(player) if player.Name == "YourUsernameHere" then game.WherEverYourModelIs.Model:Destroy() end end)