I want to lower the default chat instead of having it be in the top left corner, but I'm not sure how to do this.
Is this possible, or would I have to make my own custom chat entirely?
There's something called the Lua Chat System.
Hope this helped
Hi Ram,
local players = game:GetService("Players"); players.PlayerAdded:Connect(function(plr) local gui = plr:WaitForChild("PlayerGui"):WaitForChild("Chat"):WaitForChild("Frame"); local desired_pos = UDim2.new(0, 0, 0.6, 0); gui.Position = desired_pos; end)
Thanks,
Best regards,
~~ KingLoneCat