Why does this not work?
1 | game.Workspace.CarPrice.Value = game.Players.YurStillABustaToMe.PlayerGui.CarPrice.TextBox.Text |
It won't work because of Filtering Enabled. When you change the text of a TextBox, it doesn't show for the server.
Instead of inserting it into the Player's PlayerGui, you can just make a script in StarterGui.
Does a part have that script? Or is it not attached to a part?
01 | local t = game.Players.YurStillABustaToMe.PlayerGui:FindFirstChild( "CarPrice" ) |
02 | local val = game.Workspace:FindFirstChild( "CarPrice" ) |
03 | print (t,val) |
04 | while true do |
05 | wait() |
06 |
07 | if val and t then |
08 | val.Value = t.Text |
09 | end |
10 |
11 | end |