-
I’m trying to make a GUI which multiplies a number which is typed by the player in TextBox and it is displayed on a TextLabel.
-
Everything’s working, the number which is typed in the TextBox is being multiplied perfectly. But I’m stuck at displaying the number on the TextLabel.
-
I couldn’t find anything on DevForum about this issue…
TextLabel = game.StarterGui.ScreenGui.Frame.TextLabel
numb = 0.0035
textbox = script.Parent.FocusLost:Connect(function(enter)
print(script.Parent.Text * numb)
end)
TextLabel.Text = textbox
I suck at scripting… still learning. Any help is appreciated!