Hello Everyone,
I am not sure what has happened, but I cant seem to get the Text Property from a Textbox, and yes, I have tried this multiple times in multiple roblox places and it doesn’t work for me?, I have checked and when i try to print the Text all the script tells me is just “” , ive tried this on the client only, and still just “” this really has confused me, i have not done any modding to roblox studio itself, just the output of the Textbox is just “”
local SoundID = script.Parent.SouID.Text
local SoundVolume = script.Parent.VolSound.Text
local SoundSpeed = script.Parent.SpeedSound.Text
script.Parent.Play.TextButton.MouseButton1Click:Connect(function()
print(SoundID)
print(SoundVolume)
print(SoundSpeed)
script.Parent.Play.TextButton.Text = "Played Sound!"
wait()
Event:FireServer(SoundID,SoundVolume,SoundSpeed)
wait(2)
script.Parent.Play.TextButton.Text = "Play!"
end)
the problem here is that when i print (SoundID) or any other i just get this message even on JUST the client
i am extremely confused as there are no errors, just the Textbox not returning any Text, even though i typed something in the textbox
Again, i am extremely confused on what to do.