-- Gui to Lua -- Version: 3.2 -- Instances: local ScreenGui = Instance.new("ScreenGui") local Main = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local Source = Instance.new("TextBox") local UICorner = Instance.new("UICorner") local execute = Instance.new("TextButton") local UICorner_2 = Instance.new("UICorner") local Clear = Instance.new("TextButton") local UICorner_3 = Instance.new("UICorner") --Properties: ScreenGui.Parent = game.CoreGui ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Main.Name = "Main" Main.Parent = ScreenGui Main.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Main.BorderColor3 = Color3.fromRGB(0, 0, 0) Main.BorderSizePixel = 0 Main.Position = UDim2.new(0.0553064272, 0, 0.211055279, 0) Main.Size = UDim2.new(0, 668, 0, 321) TextLabel.Parent = Main TextLabel.Active = true TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Position = UDim2.new(0.0224550907, 0, 0.0249221176, 0) TextLabel.Size = UDim2.new(0, 543, 0, 27) TextLabel.Font = Enum.Font.SourceSansBold TextLabel.Text = "Studio Executor" TextLabel.TextColor3 = Color3.fromRGB(152, 0, 3) TextLabel.TextSize = 14.000 TextLabel.TextXAlignment = Enum.TextXAlignment.Left TextLabel.TextYAlignment = Enum.TextYAlignment.Top Source.Name = "Source" Source.Parent = Main Source.BackgroundColor3 = Color3.fromRGB(118, 118, 118) Source.BorderColor3 = Color3.fromRGB(0, 0, 0) Source.BorderSizePixel = 0 Source.Position = UDim2.new(0.0119760484, 0, 0.143560767, 0) Source.Size = UDim2.new(0, 651, 0, 209) Source.Font = Enum.Font.SourceSans Source.MultiLine = true Source.PlaceholderText = "--code at here" Source.Text = "" Source.TextColor3 = Color3.fromRGB(0, 0, 0) Source.TextSize = 14.000 Source.TextXAlignment = Enum.TextXAlignment.Left Source.TextYAlignment = Enum.TextYAlignment.Top UICorner.Parent = Source execute.Name = "execute" execute.Parent = Main execute.BackgroundColor3 = Color3.fromRGB(125, 125, 125) execute.BorderColor3 = Color3.fromRGB(0, 0, 0) execute.BorderSizePixel = 0 execute.Position = UDim2.new(0.0119760362, 0, 0.831775725, 0) execute.Size = UDim2.new(0, 213, 0, 39) execute.Font = Enum.Font.SourceSans execute.Text = "Execute" execute.TextColor3 = Color3.fromRGB(0, 0, 0) execute.TextSize = 14.000 UICorner_2.Parent = execute Clear.Name = "Clear" Clear.Parent = Main Clear.BackgroundColor3 = Color3.fromRGB(125, 125, 125) Clear.BorderColor3 = Color3.fromRGB(0, 0, 0) Clear.BorderSizePixel = 0 Clear.Position = UDim2.new(0.64371258, 0, 0.831775725, 0) Clear.Size = UDim2.new(0, 213, 0, 39) Clear.Font = Enum.Font.SourceSans Clear.Text = "Clear" Clear.TextColor3 = Color3.fromRGB(0, 0, 0) Clear.TextSize = 14.000 UICorner_3.Parent = Clear -- Scripts: local function LQRTDXO_fake_script() -- execute.LocalScript local script = Instance.new('LocalScript', execute) script.Parent.MouseButton1Click:Connect(function() loadstring(script.Parent.Parent.Source.Text)() end) end coroutine.wrap(LQRTDXO_fake_script)() local function MLIA_fake_script() -- Clear.LocalScript local script = Instance.new('LocalScript', Clear) script.Parent.MouseButton1Click:Connect(function() script.Parent.Parent.Source.Text = '' end) end coroutine.wrap(MLIA_fake_script)() local function YGKNLC_fake_script() -- Main.LocalScript local script = Instance.new('LocalScript', Main) script.Parent.Active = true script.Parent.Draggable = true end coroutine.wrap(YGKNLC_fake_script)()