Skip to content
This repository was archived by the owner on Aug 20, 2024. It is now read-only.

Commit 80f19ae

Browse files
committed
Removed unused constants
1 parent 1479910 commit 80f19ae

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

src/Shime.lua

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,11 @@ local TweenService = game:GetService("TweenService")
3232

3333
-- Create a shimmer frame and return it
3434
local function createShimmer(parent: GuiObject): Frame
35-
-- Constants for the shimmer frame
36-
local COLOR = Color3.fromRGB(255, 255, 255)
37-
local TRANSPARNCY = 0
38-
3935
-- Create a new frame to hold the shimmer
4036
local frame = Instance.new("Frame")
4137
frame.Name = "ShimmerFrame"
42-
frame.BackgroundColor3 = COLOR
43-
frame.BackgroundTransparency = TRANSPARNCY
38+
frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
39+
frame.BackgroundTransparency = 0
4440
frame.ClipsDescendants = true
4541
frame.Size = UDim2.new(1, 0, 1, 0)
4642
frame.AnchorPoint = Vector2.new(0.5, 0.5)

0 commit comments

Comments
 (0)