Hey there,
I have just made a Car GUI but when i Enable the GUI from a Script in ServerScriptService it says it is enabled, the button it visible and there is no scripts that are disabling it. What can i do to make this GUI visible?
Here’s my code:
local dss = game:GetService("DataStoreService")
local ds = dss:GetDataStore("JeepData")
local Jeep = game.ServerStorage.Jeep
game.Players.PlayerAdded:Connect(function(plr)
local async = ds:GetAsync(plr.UserId)
if async == true then
local clone = Jeep:Clone()
clone.Parent = workspace
local GUI = game.StarterGui.JeepGui
GUI.Enabled = true
end
end)
Thanks and Merry Christmas,
Kieran