Search
 
SCRIPT & CODE EXAMPLE
 

LUA

roblox tween 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 :: how to teleport all players in roblox studio 
Lua :: roblox how to loop through all players 
Lua :: try except lua 
Lua :: how do you find a humanoid in roblox 
Lua :: wait function rebuilt in lua 
Lua :: luau how to find something in table 
Lua :: rotate object roblox 
Lua :: lua roblox global variables 
Lua :: lua what is _ENV 
Lua :: lua how to concatenate string 
Lua :: Lua numbers 
Lua :: check lua version 
Lua :: function return lua 
Lua :: lua wait function 
Lua :: lua hash table length 
Lua :: while loop lua 
Lua :: unsur unsur hidrogen 
Lua :: lua how to print NUMBER 
Lua :: global variables lua 
Matlab :: matlab parameter in title 
Matlab :: matlab plotting multiple lines on one graph 
Matlab :: how to print ceratin rows of dataframe 
Basic :: visual basic get mouse position 
Basic :: sequnce function vb.net 
Elixir :: ** (Ecto.ConstraintError) constraint error when attempting to insert struct: * id_fkey (foreign_key_constraint) 
Scala :: scala get file from url as string 
Scala :: scala in hadoop 
Actionscript :: mount_osxfuse: /Users/em/mount_dev: Input/output error 
Excel :: add drop down in excel 
Perl :: comments in perl 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =