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 :: how to detect if part had children roblox 
Lua :: Pass values to functions from Onclicks roblox 
Lua :: lua array is empty 
Lua :: conda find package version 
Lua :: roblox table.find 
Lua :: roblox vector3 
Lua :: how do you close the lua program 
Lua :: roblox how to get the players mouse 
Lua :: make string all capital roblox 
Lua :: json resume shema 
Lua :: roblox check if in private server 
Lua :: lua commenting 
Lua :: lua oop 
Lua :: shift to sprint 
Lua :: Set core GUI Roblox 
Lua :: how to make a number adding in roblox studio 
Lua :: roblox create part script 
Lua :: FiveM how to check where nearest player is store 
Lua :: How to use Humanoids in Roblox Lua 
Matlab :: matlab rlocus 
Matlab :: matlab symbolic roots 
Matlab :: matlab new line in string 
Basic :: ogg to mp3 
Elixir :: elixir try rescue 
Elixir :: elixir check is nil 
Scala :: else if scala 
Scala :: if scala 
Excel :: google sheets convert abbreviation of month to number 
Perl :: perl exit loop 
Pascal :: take console input in pascal 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =