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

Will it work with FE? A code for a quiz, worked in local server.

Asked by 6 years ago

I created a code for a quiz, it works in local server test, but will it work in game? And will ANYTHING that worked in roblox studio local server test mode work in game? It's a local script in GUI

game:GetService("UserInputService").InputBegan:connect(function(Object)
    if Object.KeyCode == Enum.KeyCode.Return then
        for i, p in pairs (game.Players:GetPlayers()) do
            if (p.PlayerGui:FindFirstChild("Question")) ~= nil then
                if script.Parent.Answer.Text == "Mirror" then
                    workspace.Question1:Destroy()
                    workspace.Quest1:Destroy()
                    script.Parent:Destroy()
                    print("Succes")
                end
            end
        end
    end
end)
0
please? just answer yes or no ProDavid228 0 — 6y
0
This should work as long as its in a serverscript. Nikkulaos 229 — 6y
0
You are attempting to delete something from the server in a local script sow no this will not work. User#5423 17 — 6y

Answer this question