Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
2

Is there a way i can make this script compatable with FE?

Asked by
danglt 185
6 years ago

Please provide more explanation in your question. If you explain exactly what you are trying to accomplish, it will be much easier to answer your question correctly.

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?

01function 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 = ""
09end
10script.Parent.MouseButton1Click:Connect(click)
1
Use a remote event to fire to a server script to change the text XviperIink 428 — 6y

1 answer

Log in to vote
5
Answered by
yHasteeD 1819 Moderation Voter
6 years ago
Edited 6 years ago

Yes, you can make this FE, Using RemoteEvents

example:

01-- Server
02local remote = game.ReplicatedStorage.RemoteEvent
03 
04remote.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
13end)
14 
15-- Client
16local remote = game.ReplicatedStorage.RemoteEvent
17 
18script.Parent.MouseButton1Click:Connect(function()
19    remote:FireServer("Hi") -- Here you dont need to send player.
20end)

For your problem is here fixed script:

Create a RemoteEvent in ReplicatedStorage, now insert a ServerScript in ServerScriptService.

Client(Local Script, Fire Event)

1local event = game.ReplicatedStorage.RemoteEvent -- Remote Event Location
2 
3function 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 = ""
8end
9script.Parent.MouseButton1Click:Connect(click)

Server Script(Script, Remote Event Script)

01local event = game.ReplicatedStorage.RemoteEvent -- Remote Event Location
02 
03event.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
10end)

Hope it helped :)

Wiki pages:

Remote Events / Functions

Solved your problems? put [SOLVED] in title, or accept a answer.
Ad

Answer this question