Search
 
SCRIPT & CODE EXAMPLE
 

LUA

roblox tween color3

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 tween part color 
Lua :: lua last item in table 
Lua :: my second long scripting 
Lua :: lua globals 
Lua :: luau table.find 
Lua :: roblox studio random part color 
Lua :: lua click button 
Lua :: for i in pairs lua 
Lua :: error: LINK : fatal error LNK1561: entry point must be defined 
Lua :: glua varargs 
Lua :: for loop roblox 
Lua :: lua print 
Lua :: get index of value in table lua 
Lua :: lua class 
Lua :: lua call custom function 
Lua :: how to make a day/night script roblox 
Lua :: https://web.roblox.com/games/1334669864/Lua-Learning-Bloxy?refPageId=e6fa4d30-3657-463c-b6f0-a32a84183315 
Lua :: how to make a math text in lua 
Lua :: name is not a valid member of Folder roblox 
Matlab :: matlab if 
Matlab :: matlab single and double 
Matlab :: BIDS json IntendedFor field examples 
Basic :: what to include in basic C 
Elixir :: elixir string to date 
Elixir :: liveview component mount 
Scala :: quantification scalaire 
Scala :: how loop in scala 
Excel :: google sheets concatenate non blank cells from two columns 
Excel :: google sheets conditional formatting other sheet 
Perl :: Perl (perl 2018.12) sample 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =