How to get a TEXTBOX’S TEXT from the CLIENT TO THE SERVER | ROBLOX STUDIO (How to make a Whiteboard)

Hey everyone! Today I will show you How to Get a TextBox’s Text from the Client to the Server, or, in this video How to make a Whiteboard. -------------------------------------------------- My YouTube Channel: My Roblox Profile: My Roblox Group: #!/about -------------------------------------------------- The model used in This Video: -------------------------------------------------- All of the Scripts & LocalScripts in This Video: -------------------------------------------------- --WhiteboardGuiOpenLocalScript -- local whiteboard = :WaitForChild(“Whiteboard“) local detector = whiteboard:WaitForChild(“ClickDetector“) local player = local gui = :Connect(function() = true end) -------------------------------------------------- -- ConfirmButton LocalScript -- local TextBoxEvent = game:GetService(“ReplicatedStorage“):WaitForChild(“TextboxEvent“) local TextBox = :Connect(function() local text = TextBoxEvent:FireServer(text) end) -------------------------------------------------- -- ExitButton or “X“ Button LocalScript -- local player = local gui = :Connect(function() = false end) -------------------------------------------------- -- WhiteboardEdit Server Script -- local TextBoxEvent = local whiteboard = local TextLabel = :Connect(function(player, text) = text end) -------------------------------------------------- Tags: #roblox #robloxstudio #robloxtutorial #robloxstudiotutorial
Back to Top