Search
 
SCRIPT & CODE EXAMPLE
 

LUA

roblox tween part color

local TweenService = game:GetService("TweenService")
local part = workspace.ColorPart
local red = Color3.fromRGB(255, 0, 0)
local blue = Color3.fromRGB(0, 0, 255)
part.Color = red
local partColorTweenInfo = TweenInfo.new(5 --[[seconds]])
local tweenPartColor = TweenService:Create(part, partColorTweenInfo, {Color = blue})
task.wait(5)
tweenPartColor:Play()
Comment

PREVIOUS NEXT
Code Example
Lua :: roblox interpolate color 
Lua :: roblox part tween 
Lua :: lua last item in table 
Lua :: roblox lua gui drag 
Lua :: roblox studio Teleport service not working 
Lua :: roblox table.find 
Lua :: loop true childs roblox 
Lua :: how to check if a sting incules something roblox 
Lua :: what is script.Parent? 
Lua :: do while lua 
Lua :: how to define a player roblox studio 
Lua :: how to print in lua 
Lua :: lua string to date 
Lua :: how to kill humanoid with click detector roblox 
Lua :: lua how to make a click to activate button 
Lua :: roblox format string 
Lua :: what is lua programming language 
Lua :: how to make a run in roblox lua 
Lua :: lua print hi 
Matlab :: matlab title with variable 
Matlab :: matlab symbolic simplify fraction 
Matlab :: matlab pan 
Basic :: Console.OutputEncoding c# 
Basic :: visual basic non modal message box 
Elixir :: elixir eval ast 
Scala :: scala concatenate list 
Scala :: filter by timestamp scala 
Actionscript :: dig WWW.EXAMPLE.COM +nostats +nocomments +nocmd 
Excel :: set row as header excel 
Perl :: perl mechanize infinite scroll with attempt count 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =