Search
 
SCRIPT & CODE EXAMPLE
 

LUA

roblox interpolate 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 how to loop through all players 
Lua :: roblox tween part 
Lua :: Connect Text Label to Leaderstats 
Lua :: lua array is empty 
Lua :: color3 not working lua 
Lua :: roblox random part color 
Lua :: how to give yourself money in your roblox game 
Lua :: lua find key in table 
Lua :: what is the point of local varaibles in lua 
Lua :: while true do lua 
Lua :: lua get time 
Lua :: lua how to add something to a table 
Lua :: lua script 
Lua :: wait for player character roblox 
Lua :: finding humanoid roblox. part 
Lua :: lua difference between pairs and ipairs 
Lua :: lua stack 
Lua :: C++ 914 card 
Lua :: roblox part touched 
Matlab :: matlab symbolic function 
Matlab :: display sequence in matlab 
Matlab :: geom_density_2d 
Basic :: basic authentication bash 
Elixir :: elixir debug 
Elixir :: elixir enum any 
Scala :: how to transform Nil to None scala 
Scala :: scala named function 
Excel :: Google Sheets How to Count business Days Between Two Dates 
Excel :: google sheets apply formula to entire column 
Perl :: How to run a pearl script 
ADD CONTENT
Topic
Content
Source link
Name
1+9 =