Search
 
SCRIPT & CODE EXAMPLE
 

LUA

roblox tweenservice

local TweenService = game:GetService("TweenService")

local part = script.Parent
local goal = {}
goal.Position = Vector3.new(1, 0, 1)
goal.Color = Color3.new(0, 1, 0) -- Green

local tweenInfo = TweenInfo.new(5)
local tween = TweenService:Create(part, tweenInfo, goal)
wait(5) -- Wait Time
tween:Play()
Comment

PREVIOUS NEXT
Code Example
Lua :: lua while loops 
Lua :: localplayer lua 
Lua :: how to get the length of a table in lua 
Lua :: lua infinite 
Lua :: how to define a player roblox studio 
Lua :: roblox check if in private server 
Lua :: append to table lua 
Lua :: lua insert table into table 
Lua :: lua f animation 
Lua :: wait for player character roblox 
Lua :: check if child is touched roblox 
Lua :: lua unpack 5.4 
Lua :: Lua how to get the index of a nested table 
Lua :: pico8 draw sprite 
Lua :: lua hash keys 
Lua :: enable http service roblox 
Matlab :: matlab get real and imaginary part 
Matlab :: matlab symbolic variables 
Matlab :: matlab nxm array 
Basic :: mongodb command remove by _id 
Basic :: online c++ to c converter 
Elixir :: elixir rescue 
Elixir :: elixir get nested map value 
Scala :: how to transform Nil to None scala 
Scala :: filter by timestamp scala 
Actionscript :: rabbitmq login was refused using plain 
Excel :: excel and function 
Perl :: perl make a new directory and change permissions 
Pascal :: array pascal 
Gdscript :: godot get root node 
ADD CONTENT
Topic
Content
Source link
Name
8+2 =