So i have this script wich is suposed to enable a script orinaly in StarterScripts. However a player does not have that in roblox player?
pl = script.Parent.Parent.Parent.Parent script.Parent.MouseButton1Click:connect(function () pl.StarterPlayer.StartTheGame.Disabled = false --this --pl.PlayerScripts --pl.StarterScripts Neither of these three work script.Parent:remove() end)
Players do not have a folder in them called 'StarterPlayer'. What you are looking for is called 'StarterGear'.
'StarterPlayer' is a service, a child of 'game'.
http://wiki.roblox.com/index.php/Place_hierarchy
EDIT:
You won't be able to do it properly, your hierarchy needs to be this:
Your script should be:
pl = script.Parent.Parent.Parent.Parent script.Parent.MouseButton1Click:connect(function () pl.StartTheGame.Disabled = false --this script.Parent:remove() end)