Город МОСКОВСКИЙ
00:03:54

UI Effects Tutorial | Roblox Studio

Аватар
Игры и Эмоциональный Опыт
Просмотры:
25
Дата загрузки:
30.10.2023 11:33
Длительность:
00:03:54
Категория:
Разное

Описание

Make sure to like the video if this helped, and subscribe if you would like to.
Join my discord: https://discord.gg/64N9rvk5Kt

Code:
local tweenService = game:GetService('TweenService');

script.Parent.MouseEnter:Connect(function()
local tween = tweenService:Create(script.Parent, TweenInfo.new(0.2), {BackgroundColor3 = script.Parent.TextColor3})
tween:Play()
end)

script.Parent.MouseLeave:Connect(function()
local tween = tweenService:Create(script.Parent, TweenInfo.new(0.2), {BackgroundColor3 = Color3.fromRGB(255, 255, 255)})
tween:Play()
end)

Рекомендуемые видео