Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Script para Roblox Delta Executor (Brookhaven y juegos similares) -- Permite cambiar avatares, equipar ítems y ropa 3D dentro del juego
- local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Parent = player.PlayerGui
- -- Crear la interfaz principal local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 300, 0, 200) frame.Position = UDim2.new(0.5, -150, 0.5, -100) frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) frame.Parent = screenGui
- local titleLabel = Instance.new("TextLabel") titleLabel.Size = UDim2.new(1, 0, 0, 40) titleLabel.Text = "MOD RP" titleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) titleLabel.TextSize = 24 titleLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0) titleLabel.Parent = frame
- local closeButton = Instance.new("TextButton") closeButton.Size = UDim2.new(0, 40, 0, 40) closeButton.Position = UDim2.new(1, -40, 0, 0) closeButton.Text = "X" closeButton.TextColor3 = Color3.fromRGB(255, 255, 255) closeButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) closeButton.Parent = frame
- local avatarButton = Instance.new("TextButton") avatarButton.Size = UDim2.new(1, 0, 0, 40) avatarButton.Position = UDim2.new(0, 0, 0, 60) avatarButton.Text = "Cuerpos Completos" avatarButton.TextColor3 = Color3.fromRGB(255, 255, 255) avatarButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0) avatarButton.Parent = frame
- local itemsButton = Instance.new("TextButton") itemsButton.Size = UDim2.new(1, 0, 0, 40) itemsButton.Position = UDim2.new(0, 0, 0, 110) itemsButton.Text = "Items y Ropa 3D" itemsButton.TextColor3 = Color3.fromRGB(255, 255, 255) itemsButton.BackgroundColor3 = Color3.fromRGB(0, 255, 255) itemsButton.Parent = frame
- -- Función para cambiar el avatar completo local function changeAvatar(name) local humanoid = player.Character:FindFirstChild("Humanoid") if humanoid then humanoid:ApplyDescription(game.Players:GetHumanoidDescriptionFromUserId(name)) end end
- -- Función para equipar ítems y ropa 3D local function equipItem(itemId) local humanoid = player.Character:FindFirstChild("Humanoid") if humanoid then humanoid:AddAccessory(game:GetService("InsertService"):LoadAsset(itemId):FindFirstChildOfClass("Accessory")) end end
- -- Conectar botones con funciones avatarButton.MouseButton1Click:Connect(function() local userInput = game:GetService("UserInputService"):InputBox("Escribe el nombre del avatar:", "Nombre de Avatar") if userInput then changeAvatar(userInput) end end)
- itemsButton.MouseButton1Click:Connect(function() local userInput = game:GetService("UserInputService"):InputBox("Escribe el ID del ítem:", "ID del Ítem o Ropa 3D") if userInput then equipItem(tonumber(userInput)) end end)
- closeButton.MouseButton1Click:Connect(function() screenGui:Destroy() end)
Advertisement
Add Comment
Please, Sign In to add comment