of     1   

Niveum
#146414784Saturday, September 20, 2014 7:55 AM GMT

how exactly do you make local lighting? (like to where one person can see a game in day time and another at night at the same time) ive been seeing it around in a few games (like super bomb survival for example) and I cant figure it out; can anyone explain this to me?
zorgan9220
#146414831Saturday, September 20, 2014 7:58 AM GMT

Script - Pieces of code that runs serversided. LocalScript - Pieces of code that runs from your client. So it's obvious that it needs to be in a LocalScript. So, maybe you could make a LocalScript inside Workspace, make sure it's not enabled and do this: game.Lighting.TimeOfDay = 0:00:00 wait(3) game.Lighting.TimeOfDay = 0:00:00 Then in the serverside script, you do this: s = Workspace.LocalScript:Clone() s.Parent = Players.LocalPlayer s.Enabled = true idk, just an idea. -i am atlanticblox
Niveum
#146414870Saturday, September 20, 2014 8:01 AM GMT

hmmm ok thnx

    of     1