ya tengo mi juego pero no lo e podido hacer mas wins
2026-07-29 16:13:06
0
abuu_lua :
tutorial
2026-07-29 23:35:16
0
Aaron el pro :
SpauwnBola
2026-08-01 01:45:33
0
Aaron el pro :
Destino
2026-08-01 01:44:49
0
Aaron el pro :
Bola
2026-08-01 01:46:19
0
Tᴜᴛᴏʀɪᴀʟᴇs々Aᴅʀɪᴀɴ :
local ServerStorage = game:GetService("ServerStorage")
local destino = workspace:WaitForChild("Destino")
local spawn = workspace:WaitForChild("SpawnBola")
while true do
local bola = ServerStorage.Bola:Clone()
bola.Parent = workspace
bola.Position = spawn.Position
bola.Anchored = false
bola.CanCollide = true
local velocidad = 50
local direccion = (destino.Position - bola.Position).Unit
local bodyVelocity = Instance.new("BodyVelocity")
bodyVelocity.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
bodyVelocity.Velocity = direccion * velocidad
bodyVelocity.Parent = bola
bola.Touched:Connect(function(hit)
if hit == destino then
bola:Destroy()
end
end)
repeat
task.wait()
until not bola.Parent
task.wait(5) -- Cambia a 3 si quieres que aparezca cada 3 segundos
end
2026-07-29 17:18:25
1
LEIVA💙 :
local ServerStorage = game:GetService("ServerStorage")
local destino = workspace:WaitForChild("Destino")
local spawn = workspace:WaitForChild("SpawnBola")
while true do
local bola = ServerStorage.Bola:Clone()
bola.Parent = workspace
bola.Position = spawn.Position
bola.Anchored = false
bola.CanCollide = true
local velocidad = 50
local direccion = (destino.Position - bola.Position).Unit
local bodyVelocity = Instance.new("BodyVelocity")
bodyVelocity.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
bodyVelocity.Velocity = direccion * velocidad
bodyVelocity.Parent = bola
bola.Touched:Connect(function(hit)
if hit == destino then
bola:Destroy()
end
end)
repeat
task.wait()
until not bola.Parent
task.wait(5) -- Cambia a 3 si quieres que aparezca cada 3 segundos
end
2026-08-01 17:13:39
0
LEIVA💙 :
local ServerStorage = game:GetService("ServerStorage")
local destino = workspace:WaitForChild("Destino")
local spawn = workspace:WaitForChild("SpawnBola")
while true do
local bola = ServerStorage.Bola:Clone()
bola.Parent = workspace
bola.Position = spawn.Position
bola.Anchored = false
bola.CanCollide = true
local velocidad = 50
local direccion = (destino.Position - bola.Position).Unit
local bodyVelocity = Instance.new("BodyVelocity")
bodyVelocity.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
bodyVelocity.Velocity = direccion * velocidad
bodyVelocity.Parent = bola
bola.Touched:Connect(function(hit)
if hit == destino then
bola:Destroy()
end
end)
repeat
task.wait()
until not bola.Parent
task.wait(5) -- Cambia a 3 si quieres que aparezca cada 3 segundos
end
2026-08-03 04:00:03
0
LEIVA💙 :
local ServerStorage = game:GetService("ServerStorage")
local destino = workspace:WaitForChild("Destino")
local spawn = workspace:WaitForChild("SpawnBola")
while true do
local bola = ServerStorage.Bola:Clone()
bola.Parent = workspace
bola.Position = spawn.Position
bola.Anchored = false
bola.CanCollide = true
local velocidad = 50
local direccion = (destino.Position - bola.Position).Unit
local bodyVelocity = Instance.new("BodyVelocity")
bodyVelocity.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
bodyVelocity.Velocity = direccion * velocidad
bodyVelocity.Parent = bola
bola.Touched:Connect(function(hit)
if hit == destino then
bola:Destroy()
end
end)
repeat
task.wait()
until not bola.Parent
task.wait(5) --
2026-07-30 18:14:50
0
CUENTA NO ENCONTRADA0.04 :
local ServerStorage = game:GetService("ServerStorage")
local destino = workspace:WaitForChild("Destino")
local spawn = workspace:WaitForChild("SpawnBola")
while true do
local bola = ServerStorage.Bola:Clone()
bola.Parent = workspace
bola.Position = spawn.Position
bola.Anchored = false
bola.CanCollide = true
local velocidad = 50
local direccion = (destino.Position - bola.Position).Unit
local bodyVelocity = Instance.new("BodyVelocity")
bodyVelocity.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
bodyVelocity.Velocity = direccion * velocidad
bodyVelocity.Parent = bola
bola.Touched:Connect(function(hit)
if hit == destino then
bola:Destroy()
end
end)
repeat
task.wait()
until not bola.Parent
task.wait(5) -- Cambia a 3 si quieres que aparezca cada 3 segundos
end
2026-08-07 14:00:05
0
Tᴜᴛᴏʀɪᴀʟᴇs々Aᴅʀɪᴀɴ :
local teleporterPart = script.Parent
local function onTouch(otherPart)
-- Buscamos el modelo del jugador que tocó la pieza
local character = otherPart.Parent
local humanoidRootPart = character:FindFirstChild("HumanoidRootPart")
-- Si encontramos al personaje, lo movemos al SpawnLocation
if humanoidRootPart then
local spawnLocation = game.Workspace:FindFirstChildWhichIsA("SpawnLocation")
if spawnLocation then
-- Teletransportamos al jugador a la posición del spawn (con un poco de altura)
humanoidRootPart.CFrame = spawnLocation.CFrame + Vector3.new(0, 3, 0)
else
warn("No se encontró ningún SpawnLocation en el Workspace")
end
end
end
teleporterPart.Touched:Connect(onTouch)
2026-07-29 17:18:15
0
To see more videos from user @adrian90272, please go to the Tikwm
homepage.