Holaaa34

ROPA

Feb 16th, 2025
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. -- Script para Roblox Delta Executor (Brookhaven y juegos similares) -- Permite cambiar avatares, equipar ítems y ropa 3D dentro del juego
  2.  
  3. local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Parent = player.PlayerGui
  4.  
  5. -- 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
  6.  
  7. 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
  8.  
  9. 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
  10.  
  11. 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
  12.  
  13. 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
  14.  
  15. -- 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
  16.  
  17. -- 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
  18.  
  19. -- 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)
  20.  
  21. 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)
  22.  
  23. closeButton.MouseButton1Click:Connect(function() screenGui:Destroy() end)
  24.  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment