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,
1 | local players = game:GetService( "Players" ); |
2 |
3 | players.PlayerAdded:Connect( function (plr) |
4 | local gui = plr:WaitForChild( "PlayerGui" ):WaitForChild( "Chat" ):WaitForChild( "Frame" ); |
5 | local desired_pos = UDim 2. new( 0 , 0 , 0.6 , 0 ); |
6 |
7 | gui.Position = desired_pos; |
8 | end ) |
Thanks,
Best regards,
~~ KingLoneCat