-- Harkinan Executor Studio (All‑in‑One) local player = game.Players.LocalPlayer -- GUI local gui = Instance.new("ScreenGui") gui.Name = "HarkinanExecutor" gui.Parent = player:WaitForChild("PlayerGui") gui.ResetOnSpawn = false -- OPEN BUTTON local open = Instance.new("TextButton") open.Parent = gui open.Size = UDim2.new(0,140,0,35) open.Position = UDim2.new(0,10,0,10) open.Text = "Open Executor" open.BackgroundColor3 = Color3.fromRGB(40,40,40) open.TextColor3 = Color3.new(1,1,1) -- MAIN WINDOW local frame = Instance.new("Frame") frame.Parent = gui frame.Size = UDim2.new(0,900,0,420) frame.Position = UDim2.new(0.5,-450,0.5,-210) frame.BackgroundColor3 = Color3.fromRGB(35,35,35) frame.Visible = false frame.Active = true frame.Draggable = true -- TITLE local title = Instance.new("TextLabel") title.Parent = frame title.Size = UDim2.new(1,0,0,30) title.Text = "Harkinan Executor Studio" title.BackgroundColor3 = Color3.fromRGB(25,25,25) title.TextColor3 = Color3.new(1,1,1) -- CLOSE local close = Instance.new("TextButton") close.Parent = frame close.Size = UDim2.new(0,30,0,30) close.Position = UDim2.new(1,-30,0,0) close.Text = "X" close.BackgroundColor3 = Color3.fromRGB(120,40,40) close.TextColor3 = Color3.new(1,1,1) -- SCRIPT EDITOR local editor = Instance.new("TextBox") editor.Parent = frame editor.Size = UDim2.new(0.6,-20,0,300) editor.Position = UDim2.new(0,10,0,40) editor.MultiLine = true editor.ClearTextOnFocus = false editor.TextXAlignment = Enum.TextXAlignment.Left editor.TextYAlignment = Enum.TextYAlignment.Top editor.BackgroundColor3 = Color3.fromRGB(50,50,50) editor.TextColor3 = Color3.new(1,1,1) editor.Text = "-- write lua script here" -- EXECUTE BUTTON local execute = Instance.new("TextButton") execute.Parent = frame execute.Size = UDim2.new(0.6,-20,0,40) execute.Position = UDim2.new(0,10,1,-50) execute.Text = "Execute" execute.BackgroundColor3 = Color3.fromRGB(60,60,60) execute.TextColor3 = Color3.new(1,1,1) execute.MouseButton1Click:Connect(function() local func,err = loadstring(editor.Text) if func then pcall(func) else warn(err) end end) -- SIDE PANEL local side = Instance.new("Frame") side.Parent = frame side.Size = UDim2.new(0.35,-10,1,-40) side.Position = UDim2.new(0.65,10,0,40) side.BackgroundColor3 = Color3.fromRGB(45,45,45) local panelTitle = Instance.new("TextLabel") panelTitle.Parent = side panelTitle.Size = UDim2.new(1,0,0,35) panelTitle.Text = "Studio Scripts" panelTitle.BackgroundColor3 = Color3.fromRGB(60,60,60) panelTitle.TextColor3 = Color3.new(1,1,1) -- ========================= -- KRYSTAL DANCE BUTTON -- ========================= local krystal = Instance.new("TextButton") krystal.Parent = side krystal.Size = UDim2.new(0.8,0,0,40) krystal.Position = UDim2.new(0.1,0,0,60) krystal.Text = "Krystal Dance" krystal.BackgroundColor3 = Color3.fromRGB(80,80,80) krystal.TextColor3 = Color3.new(1,1,1) krystal.MouseButton1Click:Connect(function() game:GetService("TextChatService").TextChannels.RBXGeneral:SendAsync("oldhacfards krystal dance V2 reanimate") task.wait(5) game:GetService("TextChatService").TextChannels.RBXGeneral:SendAsync("Thanks For Executing krystal dance by oldhacfard / loading this is take while") task.wait(6) loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Myworld-reanimate-oldhacfards-reanimation-script-V2-92186"))() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-FIXED-Krystal-Dance-V3-48682"))() end) -- ========================= -- ACHROMATIC BUTTON -- ========================= local achromatic = Instance.new("TextButton") achromatic.Parent = side achromatic.Size = UDim2.new(0.8,0,0,40) achromatic.Position = UDim2.new(0.1,0,0,120) achromatic.Text = "ACHROMATIC" achromatic.BackgroundColor3 = Color3.fromRGB(80,80,80) achromatic.TextColor3 = Color3.new(1,1,1) achromatic.MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://raw.githubusercontent.com/AZYsGithub/Delta-Scripts/main/MobileKeyboard.txt"))() task.wait(1) loadstring(game:HttpGet("https://raw.githubusercontent.com/epepic847647474747ryfhfhf/67/main/FE%20achromatic%20swords.lua"))() end) -- ========================= -- GELATEK HUB BUTTON -- ========================= local gelatek = Instance.new("TextButton") gelatek.Parent = side gelatek.Size = UDim2.new(0.8,0,0,40) gelatek.Position = UDim2.new(0.1,0,0,180) gelatek.Text = "Gelatek Hub" gelatek.BackgroundColor3 = Color3.fromRGB(80,80,80) gelatek.TextColor3 = Color3.new(1,1,1) gelatek.MouseButton1Click:Connect(function() warn("oi mate do not copy the script kthx") loadstring(game:HttpGet("https://raw.githubusercontent.com/Gelatekussy/GelatekHub/main/src/packages/FunctionPack.lua"))() loadstring(game:HttpGet("https://raw.githubusercontent.com/Gelatekussy/GelatekHub/main/src/lib/AltUiLib.lua"))() end) -- OPEN / CLOSE open.MouseButton1Click:Connect(function() frame.Visible = true end) close.MouseButton1Click:Connect(function() frame.Visible = false end)