Search
 
SCRIPT & CODE EXAMPLE
 

LUA

roblox how to 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 :: try except lua 
Lua :: Connect Text Label to Leaderstats 
Lua :: lua hello world 
Lua :: roblox studio Teleport service not working 
Lua :: roblox how to find value in table 
Lua :: input in lua 
Lua :: prompt game pass purchase 
Lua :: lua hello world function 
Lua :: lua list append 
Lua :: what does local mean in roblox 
Lua :: loop roblox studio 
Lua :: roblox table find 
Lua :: awesome wm tasklist disabled icon 
Lua :: roblox player chatter event 
Lua :: roblox lua how to apply gravity to a object 
Lua :: while main.lua 
Lua :: lua scp 914 card script 
Lua :: how to see greatest value in a table lua 
Lua :: FiveM how to check where nearest player is 
Matlab :: transfer function get num and den matlab 
Matlab :: how to run a p code matlab 
Matlab :: how to multiply matrixes in matlab 
Basic :: Trollbox 
Elixir :: elixir length of list 
Elixir :: phoenix ecto preload 
Scala :: scala match default 
Scala :: scala anonymous function 
Excel :: excel use offset in conditional formatting 
Perl :: perl print an array 
Perl :: first line perl 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =