i ahve a script that when u press a button wat ever is in the textbox will appear on a brick but because of FE only i can see it can anyone tell me how i can do this?
01 | function click() |
02 | local mess = script.Parent.Parent.TextBox.Text |
03 |
04 | script.Parent.Parent.TextBox.Text = "Please Wait 5 Seconds" |
05 | game.Workspace.Message.SurfaceGui.Frame.words.Text = mess |
06 | wait( 5 ) |
07 | game.Workspace.Message.SurfaceGui.Frame.words.Text = "" |
08 | script.Parent.Parent.TextBox.Text = "" |
09 | end |
10 | script.Parent.MouseButton 1 Click:Connect(click) |
example:
01 | -- Server |
02 | local remote = game.ReplicatedStorage.RemoteEvent |
03 |
04 | remote.OnServerEvent:Connect( function (player, arg) -- Got player fired the event, and argument send |
05 | print ( "I fired by: " .. player.Name .. " this player send me the argument: " .. tostring (arg)) |
06 | if arg = = "CreatePart" then |
07 | print ( "Creating a part..." ) |
08 | local part = Instance.new( "Part" ) |
09 | part.Name = "Part - Remote" |
10 | part.Parent = workspace |
11 | print ( "Created Part" ) |
12 | end |
13 | end ) |
14 |
15 | -- Client |
16 | local remote = game.ReplicatedStorage.RemoteEvent |
17 |
18 | script.Parent.MouseButton 1 Click:Connect( function () |
19 | remote:FireServer( "Hi" ) -- Here you dont need to send player. |
20 | end ) |
Create a RemoteEvent in ReplicatedStorage, now insert a ServerScript in ServerScriptService.
Client(Local Script, Fire Event)
1 | local event = game.ReplicatedStorage.RemoteEvent -- Remote Event Location |
2 |
3 | function click() |
4 | local mess = script.Parent.Parent.TextBox -- Removed the .Text |
5 | script.Parent.Parent.TextBox.Text = "Please Wait 5 Seconds" |
6 | event:FireServer( "ChangeText" ,mess.Text) -- Text and argument send here to server. |
7 | script.Parent.Parent.TextBox.Text = "" |
8 | end |
9 | script.Parent.MouseButton 1 Click:Connect(click) |
Server Script(Script, Remote Event Script)
01 | local event = game.ReplicatedStorage.RemoteEvent -- Remote Event Location |
02 |
03 | event.OnServerEvent:Connect( function (player,arg,text) -- On fire event |
04 | if arg = = "ChangeText" then -- Check for argument |
05 | -- Change Text |
06 | workspace.Message.SurfaceGui.Frame.words.Text = tostring (text) |
07 | wait( 5 ) |
08 | workspace.Message.SurfaceGui.Frame.words.Text = "" |
09 | end |
10 | end ) |
Hope it helped :)
Wiki pages: