I put a Script under a “Highlight” part, and I’m not sure whatever script I have currently even works with it.
local TweenService = game:GetService("TweenService")
local part = script.Parent
local TweeningInformation = TweenInfo.new(
0.1,
Enum.EasingStyle.Quad,
Enum.EasingDirection.Out,
753475938457843579348573,
true,
0
)
local PartProperties = {
Color = Color3.new(0,0,0)
}
local Tween = TweenService:Create(part,TweeningInformation,PartProperties)
Tween:Play()
Other tweaks i need: Is there a better way to continuously have the color change instead of having a high number for a repeat count, and easier way to make it switch between 2 colors repeatedly? (for this example i have it change from black to white, back and forth)
Tweaked this a bit, but the color isn’t going from black to red repeatedly, nor smoothly, as I tried to make it do.
local TweenService = game:GetService("TweenService")
local part = script.Parent
local tweenInfo = TweenInfo.new(
0.1,
Enum.EasingStyle.Quad,
Enum.EasingDirection.Out
)
local goal = {}
goal.OutlineColor = Color3.new(1,0,0)
local mainTween = TweenService:Create(part,tweenInfo,goal)
mainTween:Play()