how do i fix this script?
local newBlur = Instance.new("BlurEffect")
newBlur.Size = 0
newBlur.Parent = game:GetService("Lighting")
game:GetService("TweenService"):Create(newBlur, TweenInfo.new(1, Enum.EasingStyle.Quint), {size = 15}):Play()
how do i fix this script?
local newBlur = Instance.new("BlurEffect")
newBlur.Size = 0
newBlur.Parent = game:GetService("Lighting")
game:GetService("TweenService"):Create(newBlur, TweenInfo.new(1, Enum.EasingStyle.Quint), {size = 15}):Play()
When dealing with properties, capitalization matters. So the S in “size = 15” needs to be “Size = 15”.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.