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

Commit

Permalink
Merge pull request #3 from ttwizz/dev
Browse files Browse the repository at this point in the history
Release 3.3
  • Loading branch information
JustMerely authored Mar 10, 2024
2 parents f101148 + d828ccc commit d664451
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions source-minified.lua

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions source.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--! Nanocore Internal UI
--! Version: 3.2
--! Version: 3.3
--! Copyright (c) 2024 ttwiz_z


Expand All @@ -22,9 +22,9 @@ end)

--? Constants

local TweenService = game:GetService("TweenService")
local ExecutorTweenInfo = TweenInfo.new(0.075)
local StrokeTweenInfo = TweenInfo.new(0.1, Enum.EasingStyle.Sine, Enum.EasingDirection.Out)

local ButtonHover = Color3.fromRGB(120, 120, 120)
local ButtonDown = Color3.fromRGB(170, 170, 170)

Expand Down Expand Up @@ -70,7 +70,7 @@ end

local function Tween(Object, TweenInfo, Properties)
if Object and typeof(Object) == "Instance" and TweenInfo and typeof(TweenInfo) == "TweenInfo" and Properties and type(Properties) == "table" then
TweenService:Create(Object, TweenInfo, Properties):Play()
game:GetService("TweenService"):Create(Object, TweenInfo, Properties):Play()
end
end

Expand Down

0 comments on commit d664451

Please sign in to comment.