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

Why won't this script work?

Asked by 9 years ago

Please make your question title relevant to your question content. It should be a one-sentence summary in question form.
local sp = script.Parent

button = sp
player = game.Players.LocalPlayer

msg = player.PlayerGui.TextBox.TextLabel

msg.Visible=false

function Talk()
        player.Character.Torso.Anchored=false
        msg.Visible=true
        wait(3)
        msg.Text="Logan: Nice to see you again."
        wait(3)
        msg.Text="Mr.Clark: We have bad news."
        wait(2)
        msg.Text="Mr.Clark: Even though you just came out of the military..."
        wait(5)
        msg.Text="Mr.Clark: You are joining back."
        wait(3)
        msg.Text="Logan: Bu-but, why?"
        wait(3)
        msg.Text="Mr.Clark: A year ago, Captain.Mackintosh was kidnapped by the enemies."
        wait(4)
        msg.Text="Mr.Clark: We just found out now currently in 2014"
        wait(3)
        msg.Text="Logan: Oh s***!!, is he alright!?!"
        wait(3.1)
        msg.Text="Mr.Clark: We are not sure"
        wait(4)
        msg.Visible=false
    end

function Touch(button)
        if player:Touch(button) then
            Talk()
        end
end

sp.Touched:connect(Touch)

I can't solve it, it's very simple! D:. Please help, thank you

And there is no Output.

1 answer

Log in to vote
-2
Answered by 9 years ago

I found a hidden bad word! HAHAHAHAHAHAHA!

0
.... Roboy5857 20 — 9y
Ad

Answer this question