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

Commit d664451

Browse files
authored
Merge pull request #3 from ttwizz/dev
Release 3.3
2 parents f101148 + d828ccc commit d664451

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

source-minified.lua

Lines changed: 3 additions & 3 deletions
Large diffs are not rendered by default.

source.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--! Nanocore Internal UI
2-
--! Version: 3.2
2+
--! Version: 3.3
33
--! Copyright (c) 2024 ttwiz_z
44

55

@@ -22,9 +22,9 @@ end)
2222

2323
--? Constants
2424

25-
local TweenService = game:GetService("TweenService")
2625
local ExecutorTweenInfo = TweenInfo.new(0.075)
2726
local StrokeTweenInfo = TweenInfo.new(0.1, Enum.EasingStyle.Sine, Enum.EasingDirection.Out)
27+
2828
local ButtonHover = Color3.fromRGB(120, 120, 120)
2929
local ButtonDown = Color3.fromRGB(170, 170, 170)
3030

@@ -70,7 +70,7 @@ end
7070

7171
local function Tween(Object, TweenInfo, Properties)
7272
if Object and typeof(Object) == "Instance" and TweenInfo and typeof(TweenInfo) == "TweenInfo" and Properties and type(Properties) == "table" then
73-
TweenService:Create(Object, TweenInfo, Properties):Play()
73+
game:GetService("TweenService"):Create(Object, TweenInfo, Properties):Play()
7474
end
7575
end
7676

0 commit comments

Comments
 (0)