Search
 
SCRIPT & CODE EXAMPLE
 

LUA

roblox tween color part

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 :: luau loop all players 
Lua :: roblox tween part color 
Lua :: open gui script 
Lua :: lua hello world 
Lua :: conda find package version 
Lua :: how to exit current scope roblox 
Lua :: roblox key pressed script 
Lua :: lua gsub 
Lua :: grepper lua 
Lua :: lua dict 
Lua :: lua documentation 
Lua :: lua clear table 
Lua :: check if player owns gamepass 
Lua :: how to end if statement roblox 
Lua :: FiveM Lua How to create table of all online player id 
Lua :: check if string is in string[] c# 
Lua :: lua pairs 
Lua :: pico8 poke 
Lua :: roblox lua scripts 
Matlab :: matlab how to get object type 
Matlab :: matlab log 
Matlab :: octave return dimensions 
Basic :: how to round a number in visual basic 
Basic :: do you like messi in korean 
Elixir :: elixir ecto pluck ids 
Scala :: scala reverse list 
Scala :: scala home set up 
Actionscript :: add to github 
Excel :: freeze row in excel 
Perl :: perl rename a file 
ADD CONTENT
Topic
Content
Source link
Name
3+4 =