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

Finally made something that works..xD but what would be the next step to complicate it a bit more?

Asked by 5 years ago
function Talk1()
    print("Just a prank bro")
end

function Talk2()
    print("Why u hav to be mad?")
end

function Maintalk()
    Talk1()
    wait(1)
    Talk2()
    wait(1)
    return 10
end




repeat Maintalk() 

until Maintalk() == 11  
0
I don't understand what you mean by making it more complicated. All it does so far is run a function over and over again. MythicalShade 420 — 5y
0
I'd suggest going back to some of your old questions that have been answered to learn more. MythicalShade 420 — 5y

Answer this question