-- Gui to Lua -- Version: 3.2 -- Instances: local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TextButton = Instance.new("TextButton") local TextLabel = Instance.new("TextLabel") --Properties: ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling ScreenGui.ResetOnSpawn = false Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(51, 10, 255) Frame.BorderColor3 = Color3.fromRGB(0, 0, 0) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0.872053862, 0, 0.0328719728, 0) Frame.Size = UDim2.new(0, 217, 0, 147) Frame.Active = true TextButton.Parent = ScreenGui TextButton.BackgroundColor3 = Color3.fromRGB(8, 66, 255) TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton.BorderSizePixel = 0 TextButton.Position = UDim2.new(0.874747455, 0, 0.080449827, 0) TextButton.Size = UDim2.new(0, 200, 0, 79) TextButton.Font = Enum.Font.SourceSans TextButton.Text = "Copy (change the text if u want)" TextButton.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton.TextSize = 18.000 TextButton.MouseButton1Down:Connect(function() setclipboard("what every u want them too copy") end) TextLabel.Parent = ScreenGui TextLabel.BackgroundColor3 = Color3.fromRGB(51, 10, 255) TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Position = UDim2.new(0.874747455, 0, 0.0328719728, 0) TextLabel.Size = UDim2.new(0, 200, 0, 40) TextLabel.Font = Enum.Font.SourceSans TextLabel.Text = "put ur title here!" TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0) TextLabel.TextSize = 30.000