I assume one of your Developers recently changed one of your properties which in result the game lighting appears to be glowing green.
I just checked plugins in your inventory and I believed you may have malicious plugin and botted plugin in it.
Here the unfamiliar plugins youâve owned:
https://www.roblox.com/library/5351664164/NEW-TREES-Tree-Generator
https://www.roblox.com/library/4970546106/GapFill-V1-2
Theyâre not the original owner, so I recommended you to delete them in your inventory.
As you can see the tree generator, if you look into his profile. You can clearly see his join date: 7/14/2020 which could have backdoor in the plugin.
Also the GapFill, youâve installed the wrong plugin, hereâs the original and correct plugin you should have:
Next, try use the bind:
CTRL + SHIFT + F
Now search ârequireâ, or any unfamiliar type of scripts in it.
Or in the explorer, type âscriptâ, âspreadâ, âinfectionsâ, âweldâ, âlagâ, âantiâ,âcreatorâ, etc.
I hope this help you.
In this cause check for back doors using a back door scanner.
I put look in the lighting settings in game (by printing) and check what doesnât fit right.
Almost like this
local Lighting = game:GetService("Lighting")
local lightingSettings = {
OutdoorAmbient = Lighting.OutdoorAmbient
FogColor = Lighting.FogColor;
Ambient = Lighting.Ambient
}
print(table.unpack(lightingSettings))
-- Find anything that is green
Then, if you find the property the bad script is changing, then change it using a script
for i=1,50,1 do wait()
Lighting.BadProperty = GoodProperty
end
This will not remove the bad script, but it will make your game no longer green
Edit: I am also really sorry this has happened to you
Try to check the fogend in Lighting if its 1000 then youâre good and change the color of fog to 0, 0 ,0
If it didnât work try check if thereâs any free models that youâve added to your game delete them one by one and see if a free model is causing this green fog.
This is most likely the result of a malicious script, could you make a new place and check if this still happens?
This post might help. Sorry for bumping, but this might have some valuable information in it.
Did you change the fog to be green by accident?
There are a couple of things that might have caused this. Check all of them and I am sure it can be fixed.
- You could have inserted a free model such as a fake HD admin that does that.
- You could have used a plugin that is a virus/backdoor.
- Could have modified the gameâs lighting through a script or in the gameâs properties under lighting.
Ways you can fix these issues:
- You can try to search through all your scripts. Do the shortcut Ctrl + Shift + F. Then you can enter your keyword youâre searching for in a script. So you can enter âlightingâ or âgreenâ and see if you get any results.
- Try searching through your plugins and see if you can perhaps find a suspicious plugin. Look for the original owner of a plugin because sometimes, people make duplications then will insert viruses or backdoors into your game.
- Check your game settings under Lighting for any sort of change in the properties.
How to avoid this in the future?
- Avoid uploading free models or using plugins that you can not confirm are safe.
Best of luck! I replied because I did not see any solution.
Hey! Could you tell if it is also like that in studio or in studio and also when playing a game. If it is in studio and game, not sure if anyone told you but you could check lightning fog. Change fogcolor property to another color and check if that color changed from green to the color you picked. If it was the reason, you could simply change fog color to white or any other color you want.
If it is while only playing a game (not studio) you could search in all scripts (Ctrl+Shift+F) âlightingâ or âgreenâ, â0, 255, 0â as @Dxrkzc said. You could also search in all scripts for ârequire(â to see if there are any âvirusesâ or any obfuscated scripts that you donât âtrustâ to.
Well, that was what I wanted to say. Good luck with that.
Most likely a plug-in or a type of plug in. Maybe check your lighting just in case!
It does not always come from a free model, I had this before when I was loading up my game. I fixed the issue by just booting up Roblox Studio and changing the fog colour.
Iâd say itâs one of these causes.
- Maybe a fake plugin.
- Maybe the wrong HD Admin.
- Maybe a glitch / bug.
- Maybe you set the lighting wrong
- Maybe you accidently did something wrong with a script that does a effect to lighting.
It may or may not be one of these, but these might be the most likely! Hope you can fix your game!
That looks like fog, make sure you didnât add any fog by accident.
Check the fog color under lighting. Sometimes older maps when updated into the newer versions of studio can get lighting errors. Where the fog color would become something bizarre like -209491.982, 23941.0943,-40012.44.
Check Lighting, there should be a thing called âFog Colorâ, change it to the set color you want! This might be the reason
You can also use this script:
local Lighting = game:GetService("Lighting")
Lighting.FogColor = Color3.fromRGB(192, 192, 192)