Hello, it’s my first topic on devforum, because i got problen that i can’t find on devforum. I don’t know how to fix that and that happens randomly, please help me.
Easy fix: add an empty script (local or server) and see if it’s printing the string
It’s outputing, but how i can fix that? I think there is delay between starting outputting and game start
EDIT: There is no delay, but it’s outputting only server scripts
You can use pcall
to output even if something fails
like this (updated):
local success, err = pcall(function()
local a = A -- fail
print("hello") -- prints anyways
end)
print("Success?", success)
thank you, but i wanna fix that problem not in script, but in studio, because i got that problem in every game that i create
by the way, that didn’t worked
I updated it. Does it output anything now?
No, but I reinstalled studio… And that did nothing, output don’t output even after reinstall
Okey, I got it working, idk how, but it’s working
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.