local ScreenGui = Instance.new("ScreenGui") local mainframe = Instance.new("Frame") local titleLabel = Instance.new("TextLabel") local textbox = Instance.new("TextBox") local EncodeButton = Instance.new("TextButton") -- GUI Setup ScreenGui.Name = "Roblox" ScreenGui.ResetOnSpawn = false ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") mainframe.Name = "RobloxIcon" mainframe.Parent = ScreenGui mainframe.BackgroundColor3 = Color3.fromRGB(255, 255, 255) mainframe.Size = UDim2.new(0.35, 0, 0.55, 0) mainframe.Position = UDim2.new(0.375, 0, 0.3, 0) mainframe.BorderSizePixel = 1.5 mainframe.BorderColor3 = Color3.fromRGB(0, 0, 0) mainframe.Active = true mainframe.Draggable = true titleLabel.Parent = mainframe titleLabel.Text = "LigmaScator v1.1 by 67" titleLabel.Size = UDim2.new(1, 0, 0.1, 0) titleLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) titleLabel.TextColor3 = Color3.fromRGB(0, 0, 0) titleLabel.Font = Enum.Font.Code titleLabel.TextScaled = true textbox.Parent = mainframe textbox.Size = UDim2.new(0.94, 0, 0.63, 0) textbox.Position = UDim2.new(0.03, 0, 0.15, 0) textbox.BackgroundColor3 = Color3.fromRGB(255, 255, 255) textbox.TextColor3 = Color3.fromRGB(0, 0, 0) textbox.PlaceholderText = "Fill Script Here..." textbox.PlaceholderColor3 = Color3.fromRGB(169, 169, 169) textbox.ClearTextOnFocus = false textbox.TextWrapped = true textbox.TextXAlignment = Enum.TextXAlignment.Left textbox.TextYAlignment = Enum.TextYAlignment.Top textbox.TextScaled = false textbox.MultiLine = true textbox.Font = Enum.Font.Code textbox.RichText = false textbox.Text = "" EncodeButton.Parent = mainframe EncodeButton.Text = "Encode" EncodeButton.Size = UDim2.new(0.7, 0, 0.09, 0) EncodeButton.Position = UDim2.new(0.15, 0, 0.82, 0) EncodeButton.BackgroundColor3 = Color3.fromRGB(254, 254, 254) EncodeButton.TextColor3 = Color3.fromRGB(0, 0, 0) EncodeButton.Font = Enum.Font.SourceSans EncodeButton.TextScaled = true EncodeButton.MouseButton1Click:Connect(function() local source = textbox.Text if source == "" then return end local asciiList = {} for i = 1, #source do local byte = string.byte(source, i) table.insert(asciiList, tostring(byte)) end local asciiStr = table.concat(asciiList, "/") local obfuscated = "loadstring((function(str) local t={} for v in string.gmatch(str,'[^/]+') do table.insert(t,string.char(tonumber(v))) end return table.concat(t) end)(\"" .. asciiStr .. "\"))()" if setclipboard then setclipboard(obfuscated) elseif syn and syn.write_clipboard then syn.write_clipboard(obfuscated) elseif Clipboard and Clipboard.set then Clipboard.set(obfuscated) end end) print("Ligma ligma ballz ligma ballz ligma ballz")