-- Gui to Lua -- Version: 3.2 -- Instances: local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TextButton = Instance.new("TextButton") local TextButton_2 = Instance.new("TextButton") local TextBox = Instance.new("TextBox") local TextLabel = Instance.new("TextLabel") --Properties: ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("CoreGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(0, 170, 0) Frame.BorderColor3 = Color3.fromRGB(0, 0, 0) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0.266526997, 0, 0.20804438, 0) Frame.Size = UDim2.new(0, 278, 0, 161) TextButton.Parent = Frame TextButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton.BorderSizePixel = 0 TextButton.Position = UDim2.new(0, 0, 0.689440966, 0) TextButton.Size = UDim2.new(0, 109, 0, 50) TextButton.Font = Enum.Font.SourceSans TextButton.Text = "execute" TextButton.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton.TextScaled = true TextButton.TextSize = 14.000 TextButton.TextWrapped = true TextButton_2.Parent = TextButton TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 0, 0) TextButton_2.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton_2.BorderSizePixel = 0 TextButton_2.Position = UDim2.new(1.57798171, 0, 0, 0) TextButton_2.Size = UDim2.new(0, 106, 0, 50) TextButton_2.Font = Enum.Font.SourceSans TextButton_2.Text = "clear" TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton_2.TextScaled = true TextButton_2.TextSize = 14.000 TextButton_2.TextWrapped = true TextBox.Parent = TextButton TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 0) TextBox.BorderColor3 = Color3.fromRGB(0, 0, 0) TextBox.BorderSizePixel = 0 TextBox.Position = UDim2.new(0, 0, -1.5, 0) TextBox.Size = UDim2.new(0, 278, 0, 75) TextBox.Font = Enum.Font.SourceSans TextBox.Text = "script here..." TextBox.TextColor3 = Color3.fromRGB(0, 0, 0) TextBox.TextSize = 14.000 TextLabel.Parent = TextButton TextLabel.BackgroundColor3 = Color3.fromRGB(0, 85, 255) TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Position = UDim2.new(0, 0, -2.22000003, 0) TextLabel.Size = UDim2.new(0, 278, 0, 36) TextLabel.Font = Enum.Font.SourceSans TextLabel.Text = "Tr1ag3_T00lb0x executor v0.1" TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0) TextLabel.TextScaled = true TextLabel.TextSize = 14.000 TextLabel.TextWrapped = true -- Scripts: local function JAOSAFB_fake_script() -- TextButton_2.LocalScript local script = Instance.new('LocalScript', TextButton_2) script.Parent.MouseButton1Click:Connect(function() script.Parent.Parent.Source.Text = '' end) end coroutine.wrap(JAOSAFB_fake_script)() local function DUZJIT_fake_script() -- TextButton.LocalScript local script = Instance.new('LocalScript', TextButton) script.Parent.MouseButton1Click:Connect(function() loadstring(script.Parent.Parent.Source.Text)() end) end coroutine.wrap(DUZJIT_fake_script)() local function PSPSQOF_fake_script() -- ScreenGui.LocalScript local script = Instance.new('LocalScript', ScreenGui) script.Parent.Active = true script.Parent.Draggable = true end coroutine.wrap(PSPSQOF_fake_script)()