This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Servicios | |
local Players = game:GetService("Players") | |
local TweenService = game:GetService("TweenService") | |
local SoundService = game:GetService("SoundService") | |
local ReplicatedStorage = game:GetService("ReplicatedStorage") | |
-- Configuración | |
local LOCAL_PLAYER = Players.LocalPlayer | |
local SOUNDS = { | |
Win = "rbxassetid://8304443672", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Script para Delta Executor - Tools Finder Mobile (Versión Mejorada) | |
local Players = game:GetService("Players") | |
local ServerStorage = game:GetService("ServerStorage") | |
local ReplicatedStorage = game:GetService("ReplicatedStorage") | |
local UserInputService = game:GetService("UserInputService") | |
local player = Players.LocalPlayer | |
local isMobile = UserInputService.TouchEnabled | |
-- Función mejorada para buscar tools |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Script para Delta Executor - Ultra Hub Mobile con Editor de Items | |
local Players = game:GetService("Players") | |
local player = Players.LocalPlayer | |
local TweenService = game:GetService("TweenService") | |
local UserInputService = game:GetService("UserInputService") | |
-- Detectar si es móvil | |
local isMobile = UserInputService.TouchEnabled | |
-- Crear la interfaz de usuario |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Crear la GUI de Créditos | |
local ScreenGui = Instance.new("ScreenGui") | |
ScreenGui.Parent = game.CoreGui | |
local TextLabel = Instance.new("TextLabel") | |
TextLabel.Parent = ScreenGui | |
TextLabel.Size = UDim2.new(0.5, 0, 0.1, 0) -- Tamaño del mensaje (50% de la pantalla) | |
TextLabel.Position = UDim2.new(0.25, 0, 0.45, 0) -- Centrado en la pantalla | |
TextLabel.BackgroundTransparency = 1 -- Sin fondo | |
TextLabel.Text = "Credits to Kiriot22 and ScriptByRC" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if not game:IsLoaded() then | |
game.Loaded:Wait() | |
end | |
local player = game.Players.LocalPlayer | |
local playerGui = player:FindFirstChild("PlayerGui") | |
if not playerGui then return end | |
local screenGui = Instance.new("ScreenGui") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if not game:IsLoaded() then | |
game.Loaded:Wait() | |
end | |
local player = game.Players.LocalPlayer | |
local playerGui = player:FindFirstChild("PlayerGui") | |
if not playerGui then return end | |
local screenGui = Instance.new("ScreenGui") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Crear la GUI en StarterGui | |
local player = game.Players.LocalPlayer | |
local screenGui = Instance.new("ScreenGui") | |
screenGui.Parent = player:WaitForChild("PlayerGui") | |
-- Crear el TextButton | |
local button = Instance.new("TextButton") | |
button.Size = UDim2.new(0, 200, 0, 50) -- Tamaño del botón | |
button.Position = UDim2.new(0.5, -100, 0.5, -25) -- Posición centrada en la pantalla | |
button.Text = "¡Ejecutar Script!" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Crear la GUI en StarterGui | |
local player = game.Players.LocalPlayer | |
local screenGui = Instance.new("ScreenGui") | |
screenGui.Parent = player:WaitForChild("PlayerGui") | |
-- Crear el TextButton | |
local button = Instance.new("TextButton") | |
button.Size = UDim2.new(0, 200, 0, 50) -- Tamaño del botón | |
button.Position = UDim2.new(0.5, -100, 0.5, -25) -- Posición centrada en la pantalla | |
button.Text = "¡Ejecutar Script!" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local player = game.Players.LocalPlayer | |
-- Función para resaltar jugadores | |
local function highlightPlayers() | |
for _, otherPlayer in pairs(game.Players:GetPlayers()) do | |
if otherPlayer ~= player and otherPlayer.Character and otherPlayer.Character:FindFirstChild("Head") then | |
-- Crear Highlight rojo | |
if not otherPlayer.Character:FindFirstChild("Highlight") then | |
local highlight = Instance.new("Highlight") | |
highlight.FillColor = Color3.fromRGB(255, 0, 0) -- Rojo |