Text button isnt working

Im trying to create a cloning system for claim system and it clones and everything.
it is a surface UI
I clone the UI server sided but have the mousebutton1down event locally as a child of the textbutton.
I have tried firing all clients and having the UI cloned that way but it doesnt clone. I have used a chain of remote events to try to make it work but it doesnt. here the script under the child of all of the clones:

script.Parent.MouseButton1Down:Connect(function()
   print("f")
end)

any help is appreciated. thanks

cloned ui is workspace.claimOrders.main.holder.order

1 Like

LocalScripts dont work unless parented to the client. You need to move the SurfaceGui to the PlayerGui and set its Adornee to the part you want it to be displayed on.

3 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.