-- Gui to Lua -- Version: 3.2 -- Instances: local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local TextLabel_2 = Instance.new("TextLabel") local TextLabel_3 = Instance.new("TextLabel") --Properties: ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Frame.BorderColor3 = Color3.fromRGB(255, 0, 0) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0.133419693, 0, 0.357798159, 0) Frame.Size = UDim2.new(0, 211, 0, 124) TextLabel.Parent = Frame TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Position = UDim2.new(0.347728699, 0, -0.0504428484, 0) TextLabel.Size = UDim2.new(0, 78, 0, 29) TextLabel.Font = Enum.Font.SourceSans TextLabel.Text = "YourExec" TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0) TextLabel.TextScaled = true TextLabel.TextSize = 14.000 TextLabel.TextWrapped = true TextLabel_2.Parent = Frame TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel_2.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel_2.BorderSizePixel = 0 TextLabel_2.Position = UDim2.new(0.0584810823, 0, 0.232910424, 0) TextLabel_2.Size = UDim2.new(0, 187, 0, 30) TextLabel_2.Font = Enum.Font.SourceSans TextLabel_2.Text = "" TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0) TextLabel_2.TextSize = 14.000 TextLabel_3.Parent = Frame TextLabel_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel_3.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel_3.BorderSizePixel = 0 TextLabel_3.Position = UDim2.new(0.049002409, 0, 0.553586066, 0) TextLabel_3.Size = UDim2.new(0, 189, 0, 30) TextLabel_3.Font = Enum.Font.SourceSans TextLabel_3.Text = "" TextLabel_3.TextColor3 = Color3.fromRGB(0, 0, 0) TextLabel_3.TextSize = 14.000 -- Scripts: local function DXZRK_fake_script() -- TextLabel_2.LocalScript local script = Instance.new('LocalScript', TextLabel_2) script.Parent.Text = getexecutorname() end coroutine.wrap(DXZRK_fake_script)() local function JTKT_fake_script() -- TextLabel_3.LocalScript local script = Instance.new('LocalScript', TextLabel_3) script.Parent.Text = identifyexecutor() end coroutine.wrap(JTKT_fake_script)() local function BTLKYI_fake_script() -- Frame.DraggableGUI local script = Instance.new('LocalScript', Frame) local UIS = game:GetService('UserInputService') local frame = script.Parent local dragToggle = nil local dragSpeed = 0.25 local dragStart = nil local startPos = nil local function updateInput(input) local delta = input.Position - dragStart local position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) game:GetService('TweenService'):Create(frame, TweenInfo.new(dragSpeed), {Position = position}):Play() end frame.InputBegan:Connect(function(input) if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then dragToggle = true dragStart = input.Position startPos = frame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragToggle = false end end) end end) UIS.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then if dragToggle then updateInput(input) end end end) end coroutine.wrap(BTLKYI_fake_script)()