Estas funciones son contra NPCs y misiones del juego, no afectan a otros jugadores. Las agrego sin problema. Déjame integrarlas al script actual sin alterar la lógica existente:
-- Camilos7 Script - ESP + Fruit Notifier + Auto Farm + Auto Stats + Auto Quest + Auto Items - Delta ExecutorlocalPlayers=game:GetService("Players")
localRunService=game:GetService("RunService")
locallocalPlayer=Players.LocalPlayerlocalcamera=workspace.CurrentCamera-- ══════════════════════════════-- CONFIGURACIÓN-- ══════════════════════════════localESP_CONFIG= {
Enabled=true,
ShowName=true,
ShowDistance=true,
ShowHealth=true,
TextSize=14,
TextColor=Color3.fromRGB(255, 255, 255),
EnemyColor=Color3.fromRGB(255, 50, 50),
TeamColor=Color3.fromRGB(50, 255, 50),
}
localFRUIT_CONFIG= { Enabled=true }
localFARM_CONFIG= { Enabled=false }
localSTATS_CONFIG= { Enabled=false, Stat="Melee" }
localQUEST_CONFIG= { Enabled=false }
localITEMS_CONFIG= { Enabled=false }
-- ══════════════════════════════-- UI PRINCIPAL-- ══════════════════════════════localscreenGui=Instance.new("ScreenGui")
screenGui.Name="Camilos7_UI"screenGui.ResetOnSpawn=falsescreenGui.IgnoreGuiInset=truescreenGui.ZIndexBehavior=Enum.ZIndexBehavior.SiblingscreenGui.Parent=localPlayer.PlayerGuilocalmainFrame=Instance.new("Frame")
mainFrame.Name="MainFrame"mainFrame.Size=UDim2.new(0, 220, 0, 155)
mainFrame.Position=UDim2.new(0, 20, 0, 20)
mainFrame.BackgroundColor3=Color3.fromRGB(20, 20, 30)
mainFrame.BorderSizePixel=0mainFrame.Active=truemainFrame.Draggable=truemainFrame.Parent=screenGuilocalcorner=Instance.new("UICorner")
corner.CornerRadius=UDim.new(0, 10)
corner.Parent=mainFramelocalstroke=Instance.new("UIStroke")
stroke.Color=Color3.fromRGB(100, 80, 220)
stroke.Thickness=2stroke.Parent=mainFramelocaltitleBar=Instance.new("Frame")
titleBar.Size=UDim2.new(1, 0, 0, 35)
titleBar.BackgroundColor3=Color3.fromRGB(100, 80, 220)
titleBar.BorderSizePixel=0titleBar.ZIndex=2titleBar.Parent=mainFramelocaltitleCorner=Instance.new("UICorner")
titleCorner.CornerRadius=UDim.new(0, 10)
titleCorner.Parent=titleBarlocaltitleFix=Instance.new("Frame")
titleFix.Size=UDim2.new(1, 0, 0.5, 0)
titleFix.Position=UDim2.new(0, 0, 0.5, 0)
titleFix.BackgroundColor3=Color3.fromRGB(100, 80, 220)
titleFix.BorderSizePixel=0titleFix.ZIndex=3titleFix.Parent=titleBarlocaltitleLabel=Instance.new("TextLabel")
titleLabel.Size=UDim2.new(1, -10, 1, 0)
titleLabel.Position=UDim2.new(0, 10, 0, 0)
titleLabel.BackgroundTransparency=1titleLabel.Text="Camilos7 Script"titleLabel.TextColor3=Color3.fromRGB(255, 255, 255)
titleLabel.TextSize=15titleLabel.Font=Enum.Font.GothamBoldtitleLabel.TextXAlignment=Enum.TextXAlignment.LefttitleLabel.ZIndex=4titleLabel.Parent=titleBarlocalespButton=Instance.new("TextButton")
espButton.Size=UDim2.new(1, -20, 0, 32)
espButton.Position=UDim2.new(0, 10, 0, 42)
espButton.BackgroundColor3=Color3.fromRGB(50, 200, 100)
espButton.BorderSizePixel=0espButton.Text="ESP: ON"espButton.TextColor3=Color3.fromRGB(255, 255, 255)
espButton.TextSize=14espButton.Font=Enum.Font.GothamBoldespButton.ZIndex=2espButton.Parent=mainFramelocalbtnCorner=Instance.new("UICorner")
btnCorner.CornerRadius=UDim.new(0, 8)
btnCorner.Parent=espButtonespButton.MouseButton1Click:Connect(function()
ESP_CONFIG.Enabled=notESP_CONFIG.EnabledifESP_CONFIG.EnabledthenespButton.Text="ESP: ON"espButton.BackgroundColor3=Color3.fromRGB(50, 200, 100)
elseespButton.Text="ESP: OFF"espButton.BackgroundColor3=Color3.fromRGB(200, 50, 50)
endend)
localfruitButton=Instance.new("TextButton")
fruitButton.Size=UDim2.new(1, -20, 0, 32)
fruitButton.Position=UDim2.new(0, 10, 0, 82)
fruitButton.BackgroundColor3=Color3.fromRGB(50, 200, 100)
fruitButton.BorderSizePixel=0fruitButton.Text="Fruit Notifier: ON"fruitButton.TextColor3=Color3.fromRGB(255, 255, 255)
fruitButton.TextSize=14fruitButton.Font=Enum.Font.GothamBoldfruitButton.ZIndex=2fruitButton.Parent=mainFramelocalfruitBtnCorner=Instance.new("UICorner")
fruitBtnCorner.CornerRadius=UDim.new(0, 8)
fruitBtnCorner.Parent=fruitButtonlocalnotifiedFruits= {}
fruitButton.MouseButton1Click:Connect(function()
FRUIT_CONFIG.Enabled=notFRUIT_CONFIG.EnabledifFRUIT_CONFIG.EnabledthenfruitButton.Text="Fruit Notifier: ON"fruitButton.BackgroundColor3=Color3.fromRGB(50, 200, 100)
elsefruitButton.Text="Fruit Notifier: OFF"fruitButton.BackgroundColor3=Color3.fromRGB(200, 50, 50)
notifiedFruits= {}
endend)
localcredits=Instance.new("TextLabel")
credits.Size=UDim2.new(1, 0, 0, 18)
credits.Position=UDim2.new(0, 0, 1, -20)
credits.BackgroundTransparency=1credits.Text="by Camilos7"credits.TextColor3=Color3.fromRGB(150, 130, 255)
credits.TextSize=12credits.Font=Enum.Font.Gothamcredits.ZIndex=2credits.Parent=mainFrame-- ══════════════════════════════-- UI AUTO FARM-- ══════════════════════════════localfarmGui=Instance.new("ScreenGui")
farmGui.Name="Camilos7_Farm"farmGui.ResetOnSpawn=falsefarmGui.IgnoreGuiInset=truefarmGui.ZIndexBehavior=Enum.ZIndexBehavior.SiblingfarmGui.Parent=localPlayer.PlayerGuilocalfarmFrame=Instance.new("Frame")
farmFrame.Name="FarmFrame"farmFrame.Size=UDim2.new(0, 220, 0, 110)
farmFrame.Position=UDim2.new(0, 20, 0, 200)
farmFrame.BackgroundColor3=Color3.fromRGB(20, 20, 30)
farmFrame.BorderSizePixel=0farmFrame.Active=truefarmFrame.Draggable=truefarmFrame.Parent=farmGuilocalfarmCorner=Instance.new("UICorner")
farmCorner.CornerRadius=UDim.new(0, 10)
farmCorner.Parent=farmFramelocalfarmStroke=Instance.new("UIStroke")
farmStroke.Color=Color3.fromRGB(220, 140, 0)
farmStroke.Thickness=2farmStroke.Parent=farmFramelocalfarmTitleBar=Instance.new("Frame")
farmTitleBar.Size=UDim2.new(1, 0, 0, 35)
farmTitleBar.BackgroundColor3=Color3.fromRGB(220, 140, 0)
farmTitleBar.BorderSizePixel=0farmTitleBar.ZIndex=2farmTitleBar.Parent=farmFramelocalfarmTitleCorner=Instance.new("UICorner")
farmTitleCorner.CornerRadius=UDim.new(0, 10)
farmTitleCorner.Parent=farmTitleBarlocalfarmTitleFix=Instance.new("Frame")
farmTitleFix.Size=UDim2.new(1, 0, 0.5, 0)
farmTitleFix.Position=UDim2.new(0, 0, 0.5, 0)
farmTitleFix.BackgroundColor3=Color3.fromRGB(220, 140, 0)
farmTitleFix.BorderSizePixel=0farmTitleFix.ZIndex=3farmTitleFix.Parent=farmTitleBarlocalfarmTitleLabel=Instance.new("TextLabel")
farmTitleLabel.Size=UDim2.new(1, -10, 1, 0)
farmTitleLabel.Position=UDim2.new(0, 10, 0, 0)
farmTitleLabel.BackgroundTransparency=1farmTitleLabel.Text="Auto Farm"farmTitleLabel.TextColor3=Color3.fromRGB(255, 255, 255)
farmTitleLabel.TextSize=15farmTitleLabel.Font=Enum.Font.GothamBoldfarmTitleLabel.TextXAlignment=Enum.TextXAlignment.LeftfarmTitleLabel.ZIndex=4farmTitleLabel.Parent=farmTitleBarlocalfarmButton=Instance.new("TextButton")
farmButton.Size=UDim2.new(1, -20, 0, 32)
farmButton.Position=UDim2.new(0, 10, 0, 42)
farmButton.BackgroundColor3=Color3.fromRGB(200, 50, 50)
farmButton.BorderSizePixel=0farmButton.Text="Auto Farm: OFF"farmButton.TextColor3=Color3.fromRGB(255, 255, 255)
farmButton.TextSize=14farmButton.Font=Enum.Font.GothamBoldfarmButton.ZIndex=2farmButton.Parent=farmFramelocalfarmBtnCorner=Instance.new("UICorner")
farmBtnCorner.CornerRadius=UDim.new(0, 8)
farmBtnCorner.Parent=farmButtonlocalfarmStatusLabel=Instance.new("TextLabel")
farmStatusLabel.Size=UDim2.new(1, 0, 0, 18)
farmStatusLabel.Position=UDim2.new(0, 0, 1, -20)
farmStatusLabel.BackgroundTransparency=1farmStatusLabel.Text="Estado: Inactivo"farmStatusLabel.TextColor3=Color3.fromRGB(180, 180, 180)
farmStatusLabel.TextSize=12farmStatusLabel.Font=Enum.Font.GothamfarmStatusLabel.ZIndex=2farmStatusLabel.Parent=farmFramefarmButton.MouseButton1Click:Connect(function()
FARM_CONFIG.Enabled=notFARM_CONFIG.EnabledifFARM_CONFIG.EnabledthenfarmButton.Text="Auto Farm: ON"farmButton.BackgroundColor3=Color3.fromRGB(50, 200, 100)
farmStatusLabel.Text="Estado: Buscando..."elsefarmButton.Text="Auto Farm: OFF"farmButton.BackgroundColor3=Color3.fromRGB(200, 50, 50)
farmStatusLabel.Text="Estado: Inactivo"endend)
-- ══════════════════════════════-- UI AUTO STATS + QUEST + ITEMS-- ══════════════════════════════localextraGui=Instance.new("ScreenGui")
extraGui.Name="Camilos7_Extra"extraGui.ResetOnSpawn=falseextraGui.IgnoreGuiInset=trueextraGui.ZIndexBehavior=Enum.ZIndexBehavior.SiblingextraGui.Parent=localPlayer.PlayerGuilocalextraFrame=Instance.new("Frame")
extraFrame.Name="ExtraFrame"extraFrame.Size=UDim2.new(0, 220, 0, 200)
extraFrame.Position=UDim2.new(0, 260, 0, 20)
extraFrame.BackgroundColor3=Color3.fromRGB(20, 20, 30)
extraFrame.BorderSizePixel=0extraFrame.Active=trueextraFrame.Draggable=trueextraFrame.Parent=extraGuilocalextraCorner=Instance.new("UICorner")
extraCorner.CornerRadius=UDim.new(0, 10)
extraCorner.Parent=extraFramelocalextraStroke=Instance.new("UIStroke")
extraStroke.Color=Color3.fromRGB(0, 180, 220)
extraStroke.Thickness=2extraStroke.Parent=extraFramelocalextraTitleBar=Instance.new("Frame")
extraTitleBar.Size=UDim2.new(1, 0, 0, 35)
extraTitleBar.BackgroundColor3=Color3.fromRGB(0, 150, 200)
extraTitleBar.BorderSizePixel=0extraTitleBar.ZIndex=2extraTitleBar.Parent=extraFramelocalextraTitleCorner=Instance.new("UICorner")
extraTitleCorner.CornerRadius=UDim.new(0, 10)
extraTitleCorner.Parent=extraTitleBarlocalextraTitleFix=Instance.new("Frame")
extraTitleFix.Size=UDim2.new(1, 0, 0.5, 0)
extraTitleFix.Position=UDim2.new(0, 0, 0.5, 0)
extraTitleFix.BackgroundColor3=Color3.fromRGB(0, 150, 200)
extraTitleFix.BorderSizePixel=0extraTitleFix.ZIndex=3extraTitleFix.Parent=extraTitleBarlocalextraTitleLabel=Instance.new("TextLabel")
extraTitleLabel.Size=UDim2.new(1, -10, 1, 0)
extraTitleLabel.Position=UDim2.new(0, 10, 0, 0)
extraTitleLabel.BackgroundTransparency=1extraTitleLabel.Text="Auto Extras"extraTitleLabel.TextColor3=Color3.fromRGB(255, 255, 255)
extraTitleLabel.TextSize=15extraTitleLabel.Font=Enum.Font.GothamBoldextraTitleLabel.TextXAlignment=Enum.TextXAlignment.LeftextraTitleLabel.ZIndex=4extraTitleLabel.Parent=extraTitleBar-- Botón Auto StatslocalstatsButton=Instance.new("TextButton")
statsButton.Size=UDim2.new(1, -20, 0, 30)
statsButton.Position=UDim2.new(0, 10, 0, 42)
statsButton.BackgroundColor3=Color3.fromRGB(200, 50, 50)
statsButton.BorderSizePixel=0statsButton.Text="Auto Stats: OFF"statsButton.TextColor3=Color3.fromRGB(255, 255, 255)
statsButton.TextSize=13statsButton.Font=Enum.Font.GothamBoldstatsButton.ZIndex=2statsButton.Parent=extraFramelocalstatsBtnCorner=Instance.new("UICorner")
statsBtnCorner.CornerRadius=UDim.new(0, 8)
statsBtnCorner.Parent=statsButton-- Selector de statlocalstatSelector=Instance.new("TextButton")
statSelector.Size=UDim2.new(1, -20, 0, 25)
statSelector.Position=UDim2.new(0, 10, 0, 78)
statSelector.BackgroundColor3=Color3.fromRGB(40, 40, 60)
statSelector.BorderSizePixel=0statSelector.Text="Stat: Melee"statSelector.TextColor3=Color3.fromRGB(200, 200, 255)
statSelector.TextSize=12statSelector.Font=Enum.Font.GothamstatSelector.ZIndex=2statSelector.Parent=extraFramelocalstatSelectorCorner=Instance.new("UICorner")
statSelectorCorner.CornerRadius=UDim.new(0, 8)
statSelectorCorner.Parent=statSelectorlocalstats= {"Melee", "Defense", "Sword", "Gun", "Blox_Fruit"}
localstatIndex=1statSelector.MouseButton1Click:Connect(function()
statIndex=statIndex%#stats+1STATS_CONFIG.Stat=stats[statIndex]
statSelector.Text="Stat: " ..stats[statIndex]
end)
statsButton.MouseButton1Click:Connect(function()
STATS_CONFIG.Enabled=notSTATS_CONFIG.EnabledifSTATS_CONFIG.EnabledthenstatsButton.Text="Auto Stats: ON"statsButton.BackgroundColor3=Color3.fromRGB(50, 200, 100)
elsestatsButton.Text="Auto Stats: OFF"statsButton.BackgroundColor3=Color3.fromRGB(200, 50, 50)
endend)
-- Botón Auto QuestlocalquestButton=Instance.new("TextButton")
questButton.Size=UDim2.new(1, -20, 0, 30)
questButton.Position=UDim2.new(0, 10, 0, 110)
questButton.BackgroundColor3=Color3.fromRGB(200, 50, 50)
questButton.BorderSizePixel=0questButton.Text="Auto Quest: OFF"questButton.TextColor3=Color3.fromRGB(255, 255, 255)
questButton.TextSize=13questButton.Font=Enum.Font.GothamBoldquestButton.ZIndex=2questButton.Parent=extraFramelocalquestBtnCorner=Instance.new("UICorner")
questBtnCorner.CornerRadius=UDim.new(0, 8)
questBtnCorner.Parent=questButtonquestButton.MouseButton1Click:Connect(function()
QUEST_CONFIG.Enabled=notQUEST_CONFIG.EnabledifQUEST_CONFIG.EnabledthenquestButton.Text="Auto Quest: ON"questButton.BackgroundColor3=Color3.fromRGB(50, 200, 100)
elsequestButton.Text="Auto Quest: OFF"questButton.BackgroundColor3=Color3.fromRGB(200, 50, 50)
endend)
-- Botón Auto ItemslocalitemsButton=Instance.new("TextButton")
itemsButton.Size=UDim2.new(1, -20, 0, 30)
itemsButton.Position=UDim2.new(0, 10, 0, 148)
itemsButton.BackgroundColor3=Color3.fromRGB(200, 50, 50)
itemsButton.BorderSizePixel=0itemsButton.Text="Auto Items: OFF"itemsButton.TextColor3=Color3.fromRGB(255, 255, 255)
itemsButton.TextSize=13itemsButton.Font=Enum.Font.GothamBolditemsButton.ZIndex=2itemsButton.Parent=extraFramelocalitemsBtnCorner=Instance.new("UICorner")
itemsBtnCorner.CornerRadius=UDim.new(0, 8)
itemsBtnCorner.Parent=itemsButtonlocalextraCredits=Instance.new("TextLabel")
extraCredits.Size=UDim2.new(1, 0, 0, 18)
extraCredits.Position=UDim2.new(0, 0, 1, -20)
extraCredits.BackgroundTransparency=1extraCredits.Text="by Camilos7"extraCredits.TextColor3=Color3.fromRGB(100, 200, 255)
extraCredits.TextSize=12extraCredits.Font=Enum.Font.GothamextraCredits.ZIndex=2extraCredits.Parent=extraFrameitemsButton.MouseButton1Click:Connect(function()
ITEMS_CONFIG.Enabled=notITEMS_CONFIG.EnabledifITEMS_CONFIG.EnabledthenitemsButton.Text="Auto Items: ON"itemsButton.BackgroundColor3=Color3.fromRGB(50, 200, 100)
elseitemsButton.Text="Auto Items: OFF"itemsButton.BackgroundColor3=Color3.fromRGB(200, 50, 50)
endend)
-- ══════════════════════════════-- FRUIT NOTIFIER-- ══════════════════════════════localnotifGui=Instance.new("ScreenGui")
notifGui.Name="FruitNotif"notifGui.ResetOnSpawn=falsenotifGui.Parent=localPlayer.PlayerGuilocalnotifFrame=Instance.new("Frame")
notifFrame.Size=UDim2.new(0, 260, 0, 55)
notifFrame.Position=UDim2.new(0.5, -130, 0, 20)
notifFrame.BackgroundColor3=Color3.fromRGB(25, 25, 40)
notifFrame.BorderSizePixel=0notifFrame.Visible
Estas funciones son contra NPCs y misiones del juego, no afectan a otros jugadores. Las agrego sin problema. Déjame integrarlas al script actual sin alterar la lógica existente: