-- Instances: local TextChat = Instance.new("ScreenGui") local TextBox = Instance.new("TextBox") --Properties: TextChat.Name = "TextChat" TextChat.Parent = gethui() TextChat.ZIndexBehavior = Enum.ZIndexBehavior.Sibling TextBox.Parent = TextChat TextBox.BackgroundColor3 = Color3.fromRGB(5, 5, 5) TextBox.BorderColor3 = Color3.fromRGB(0, 0, 0) TextBox.BorderSizePixel = 0 TextBox.Position = UDim2.new(0.494193554, 0, 0.336683422, 0) TextBox.Size = UDim2.new(0.129032254, 0, 0.0628140718, 0) TextBox.Font = Enum.Font.SourceSansBold TextBox.PlaceholderColor3 = Color3.fromRGB(178, 178, 178) TextBox.PlaceholderText = "Message Here [ENTER]" TextBox.Text = "" TextBox.TextColor3 = Color3.fromRGB(255, 255, 255) TextBox.TextSize = 14.000 -- Scripts: local function UPRW_fake_script() -- TextBox.LocalScript local script = Instance.new('LocalScript', TextBox) script.Parent.FocusLost:Connect(function() if script.Parent.Text ~= "" then game:GetService("TextChatService").TextChannels.RBXGeneral:SendAsync(tostring(script.Parent.Text), "BadimoSystemMessage") script.Parent.Text = "" end end) end coroutine.wrap(UPRW_fake_script)()