I want to remove the text box cursor that appears when you hover over a text box
Can I see the code you have so far?
i’m assuming you also dont want people to type in it so you should use a TextLabel
Then you should update player’s mouse icon whenever it hovers on textbox
local Player = game.Players.LocalPlayer
local Mouse = Player:GetMouse()
local TextBox = script.Parent
TextBox.MouseEnter:Connect(function()
Mouse.Icon = " " -- will set it to default icon
end)
If that didn’t work then try to find another way to check when mouse is hovering on textbox and update mouse icon again
EDIT: Or i guess you need to use Focused
event i really forgot when it changes mouse icon for textboxes.