Hello, I have a problem with your plugin, when I want to set enable to true this does not work ! 
Here my script :
spawn(function()
while wait() do
if Time == "12:00:00" then
if Summer then
if math.random(0,5) < 5 then
game.StarterPlayer.StarterPlayerScripts.RainScript.Disabled = true
Clouds.Cover = math.random(0,50)/100
Clouds.Color = Color3.new(1, 1, 1)
game.Lighting.Brightness = 6
else
game.StarterPlayer.StarterPlayerScripts.RainScript.Disabled = true
Clouds.Cover = math.random(50,75)
Clouds.Color = Color3.new(1, 1, 1)
game.Lighting.Brightness = 6
end
elseif Autumn then
if math.random(0,2) == 1 then
game.StarterPlayer.StarterPlayerScripts.RainScript.Disabled = true
Clouds.Cover = math.random(50,100)/100
Clouds.Color = Color3.new(0.713725, 0.713725, 0.713725)
game.Lighting.Brightness = 4
if math.random(0,10) == 1 and Clouds.Cover > 0.9 then
game.StarterPlayer.StarterPlayerScripts.RainScript.Disabled = false
Clouds.Color = Color3.new(0.458824, 0.458824, 0.458824)
game.Lighting.Brightness = 2
end
elseif math.random(0,5) == 1 then
game.StarterPlayer.StarterPlayerScripts.RainScript.Disabled = true
Clouds.Cover = math.random(0,50)/100
Clouds.Color = Color3.new(0.882353, 0.882353, 0.882353)
game.Lighting.Brightness = 4
else
game.StarterPlayer.StarterPlayerScripts.RainScript.Disabled = true
Clouds.Cover = math.random(0,25)/100
Clouds.Color = Color3.new(1, 1, 1)
game.Lighting.Brightness = 6
end
elseif Winter then
if math.random(0,3) < 3 then
if math.random(0,3) < 3 then
game.StarterPlayer.StarterPlayerScripts.RainScript.Disabled = false
Clouds.Cover = math.random(90,100)/100
Clouds.Color = Color3.new(0.45098, 0.45098, 0.45098)
game.Lighting.Brightness = 2
else
game.StarterPlayer.StarterPlayerScripts.RainScript.Disabled = true
Clouds.Cover = math.random(90,100)/100
Clouds.Color = Color3.new(0.45098, 0.45098, 0.45098)
game.Lighting.Brightness = 2
end
else
game.StarterPlayer.StarterPlayerScripts.RainScript.Disabled = true
Clouds.Cover = math.random(70,90)/100
Clouds.Color = Color3.new(0.619608, 0.619608, 0.619608)
game.Lighting.Brightness = 4
end
elseif Spring then
if math.random(0,5) < 3 then
game.StarterPlayer.StarterPlayerScripts.RainScript.Disabled = true
Clouds.Cover = math.random(30,70)/100
Clouds.Color = Color3.new(1, 1, 1)
game.Lighting.Brightness = 6
elseif math.random(0,5) < 5 then
game.StarterPlayer.StarterPlayerScripts.RainScript.Disabled = true
Clouds.Cover = math.random(70,90)/100
Clouds.Color = Color3.new(0.619608, 0.619608, 0.619608)
game.Lighting.Brightness = 4
else
game.StarterPlayer.StarterPlayerScripts.RainScript.Disabled = true
Clouds.Cover = math.random(90,100)/100
Clouds.Color = Color3.new(0.45098, 0.45098, 0.45098)
game.Lighting.Brightness = 2
if math.random(0,4) == 1 then
game.StarterPlayer.StarterPlayerScripts.RainScript.Disabled = false
end
end
end
end
end
end)