For some reason, this GUI opener isn't working. This is a localscript. Nothing is appearing at all. No errors? This is making me really mad.
local clickdetector = game.Workspace.SELECT.ClickDetector clickdetector.MouseClick:Connect(function() game.Players.LocalPlayer:WaitForChild('PlayerGui').SpawnCar.Enabled = true end)
with the MouseClick you don't have to find the player. you put a word in the parenthesis ex player and then just do player:WaitForChild etc. also i think if your trying to make a gui apear you would use visible and not enabled. also use a normal script. here should be the fixed script:
local clickdetector = game.Workspace.SELECT.ClickDetector clickdetector.MouseClick:Connect(function(player) player:WaitForChild('PlayerGui').SpawnCar.Visible = true end)