What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Universal Realistic Lighting (SOURCE)

Version / Update: v1.0.0
Download / Script Link
local lighting = game:GetService("Lighting")
local tool = Instance.new("Tool", game:GetService("Players").LocalPlayer.Backpack)
local part = Instance.new("Part", tool)
local spotlight = Instance.new("SpotLight", part)
tool.LevelOfDetail = "StreamingMesh"
tool.ToolTip = "Light"
tool.Name = "Light"
tool.ModelStreamingMode = "Atomic"
tool.RequiresHandle = true

part.Material = "SmoothPlastic"
part.Reflectance = 1
part.Size = Vector3.new(1, 1, 1)
part.CanCollide = false
part.Name = "Handle"
part.Anchored = false
part.Massless = true
part.Shape = "Ball"

spotlight.Angle = 90
spotlight.Brightness = 5
spotlight.Color = Color3.fromRGB(255, 255, 255)
spotlight.Face = "Front"
spotlight.Range = 16
spotlight.Shadows = true

lighting.Ambient = Color3.fromRGB(0, 0, 0)
lighting.Brightness = 3
lighting.ColorShift_Bottom = Color3.fromRGB(0, 0, 0)
lighting.ColorShift_Top = Color3.fromRGB(0, 0, 0)
lighting.EnvironmentDiffuseScale = 1
lighting.EnvironmentSpecularScale = 1
lighting.GlobalShadows = true
lighting.LightingStyle = "Realistic"
lighting.OutdoorAmbient = Color3.fromRGB(0, 0, 0)
lighting.Outlines = true
lighting.PrioritizeLightingQuality = true
lighting.ShadowColor = Color3.fromRGB(0, 0, 0)
lighting.ShadowSoftness = 0.125
lighting.Technology = "Future"
lighting.ExposureCompensation = 0
[ View More ]
421f1987-57a1-4e22-bb40-0f57376c5e10.webp


the script changes properties of lighting service.the script was designed for people wants realism or stress test mobile.
 
Back
Top