How can I remove the default cursor of roblox textbox?

,

I have tried many methods, but none of them worked.
This is the picture↓

I want the cursor to become an underline like。

I am not sure what you are asking, but I think you are asking how you can change the image of the cursor. You can do that through a script.

local player = game.Players.LocalPlayer
local mouse = player:GetMouse()

mouse.Icon = "http://www.roblox.com/asset/?id=PutIdHere"

Replace ‘PutIdHere’ with the ID of the asset you want to set as the cursor icon.

The ID of an asset can be found here -
image

1 Like