Nuestros desarrolladores estrellas agotaron sus depósitos de café, en su búsqueda noche y día por la solución, hasta que Angélica halló el hallazgo en Gitea y ahora la compartimos con nosotros.
Ejemplo 1: servicio tweenser de roblox
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)-- Greenlocal tweenInfo = TweenInfo.new(5)local tween = TweenService:Create(part, tweenInfo, goal)wait(5)-- Wait Time
tween:Play()
Ejemplo 2: Ejemplo de Roblox Studio TweenService en lua 2020
local TweenService = game:GetService("TweenService")local Part = script.Parent
local info = TweenInfo.new(5,
Enum.EasingStyle.Sine,
Enum.EasingDirection.Out,0,false,0)local Goals =
Size = Vector3.new(15,15,15);local MakePartBigger = TweenService:Create(Part, info, Goals)wait(5)
MakePartBigger:Play()
Ejemplo 3: Ejemplo de TweenService
local TweenService = game:GetService("TweenService")local Part = script.Parent
local info = TweenInfo.new(5,
Enum.EasingStyle.Sine,
Enum.EasingDirection.Out,0,false,0)local Goals =
Size = Vector3.new(15,15,15);local MakePartBigger = TweenService:Create(Part, info, Goals)wait(5)
MakePartBigger:Play()--Script By Rigby#9052 on Discord
Aquí tienes las comentarios y puntuaciones
Finalizando este artículo puedes encontrar las notas de otros administradores, tú igualmente tienes la opción de mostrar el tuyo si te apetece.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)