local gui = Instance.new("ScreenGui") gui.Name = "Support pc/mobile" gui.Parent = game.CoreGui local Ui = Instance.new("Frame") Ui.Size = UDim2.new(0.0, 450, 0.0, 300) Ui.Position = UDim2.new(0.0, 200, 0.0, 0) Ui.BackgroundColor3 = Color3.new(1, 1, 1) Ui.BorderColor3 = Color3.new(0, 0, 0) Ui.BorderSizePixel = 0 Ui.Active = true Ui.BackgroundTransparency = 1 Ui.Draggable = true Ui.Parent = gui local Image = Instance.new("ImageLabel") Image.Size = UDim2.new(0.0, 450, 0.0, 301) Image.Position = UDim2.new(0.0, 0, 0.0, 0) Image.BackgroundColor3 = Color3.new(0, 0, 0) Image.ImageColor3 = Color3.new(1, 1, 1) Image.Image = "rbxassetid://81903564318854" Image.ImageTransparency = 0 Image.Parent = Ui Image.BackgroundTransparency = 1 local TextBox = Instance.new("TextBox") TextBox.Size = UDim2.new(0.0, 350, 0.0, 233) TextBox.Position = UDim2.new(0.0, 9, 0.0, 29) TextBox.BackgroundColor3 = Color3.new(1, 1, 1) TextBox.BorderColor3 = Color3.new(0, 0, 0) TextBox.BorderSizePixel = 0 TextBox.Text = "This is the PC/mobile Support version " TextBox.TextColor3 = Color3.new(0, 0, 0) TextBox.BackgroundTransparency = 0 TextBox.Font = Enum.Font.Code TextBox.TextSize = 15 TextBox.Parent = Image TextBox.TextSize = 18 TextBox.TextYAlignment = Enum.TextYAlignment.Top TextBox.TextXAlignment = Enum.TextXAlignment.Left TextBox.ClearTextOnFocus = failed TextBox.MultiLine = true TextBox.TextWrapped = true local Exe = Instance.new("TextButton") Exe.Size = UDim2.new(0.0, 69, 0.0, 48) Exe.Position = UDim2.new(0.0, 375, 0.0, 30) Exe.BackgroundColor3 = Color3.new(0, 0, 0) Exe.BorderColor3 = Color3.new(0, 0, 0) Exe.BorderSizePixel = 0 Exe.Text = "" Exe.BackgroundTransparency = 1 Exe.TextColor3 = Color3.new(255, 255, 255) Exe.Font = Enum.Font.Code Exe.Parent = Image Exe.MouseButton1Click:Connect(function() assert(loadstring(TextBox.Text))() end) local clea = Instance.new("TextButton") clea.Size = UDim2.new(0.0, 69, 0.0, 48) clea.Position = UDim2.new(0.0, 375, 0.0, 85) clea.BackgroundColor3 = Color3.new(0, 0, 0) clea.BorderColor3 = Color3.new(0, 0, 0) clea.BorderSizePixel = 0 clea.Text = "" clea.BackgroundTransparency = 1 clea.TextColor3 = Color3.new(255, 255, 255) clea.Font = Enum.Font.Code clea.Parent = Image clea.MouseButton1Click:Connect(function() TextBox.Text = "" end) local X = Instance.new("TextButton") X.Size = UDim2.new(0.0, 19, 0.0, 19) X.Position = UDim2.new(0.0, 425, 0.0, 0) X.BackgroundColor3 = Color3.new(0, 0, 0) X.BorderColor3 = Color3.new(0, 0, 0) X.BorderSizePixel = 0 X.Text = "" X.BackgroundTransparency = 1 X.TextColor3 = Color3.new(255, 255, 255) X.Font = Enum.Font.Code X.Parent = Image X.MouseButton1Click:Connect(function() Ui:Remove() end)