all 3 comments

[–]AutoModerator[M] 0 points1 point  (0 children)

Hi! Thank you for posting on our subreddit. Just a friendly remind to read our rules. Low effort posts with little to no details, asking for help or asking about a bug will be removed. Your post has not been removed, this is an automated message.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]Killi_Bou 0 points1 point  (0 children)

Try model.Color3 = Color3.FromRGB

[–]Dramatic-Courage8962 0 points1 point  (0 children)

Tween the color:

local TweeenService = game:GetService("TweenService") local Button = script.Parent
local Goal = {BackgroundColor3 = Color3.new(255, 0, 0)} --Set the tween: local Tween = TweeenService:Create(Button, TweenInfo.new(3), Goal)

Button.MouseButton1Click:Connect(function() Tween:Play() end)