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

Debugger that prints print methods

Asked by
TomsGames 225 Moderation Voter
10 years ago

Hi!

I'm testing oxbox's debugger, looks like it doesn't show the 'print' from the output, only the errors. I need to test some server side marketplace scripts/datastore scripts and it's not showing errors, but I don't know what's not working because for some reason the script fails.

Any suggestions?

1
Try posting the script you have problems with here. I personally have no idea what oxbox's debugger is, and I don't intend to look it up and try to fix it. If you post what your actual code here, we can help you. adark 5487 — 10y
0
If the script doesn't show Prints, its outdated. If the script shows no errors, either the script is broken or you have no errors. Attempt using Oxcool1's debugger to see if it will work: http://www.roblox.com/Output-Checking-System-V1-3-item?id=140878711 RaverKiller 668 — 10y
0
InspiredArbitrator I posted my script before, Merely posted saying I should debug my own scripts and he linked me to Oxbox's debugger and ROBLOX debugger. TomsGames 225 — 10y

1 answer

Log in to vote
0
Answered by
MixCorp 70
10 years ago
local msg = Instance.new("Message", workspace)
Game:GetService("LogService").MessageOut:connect(function(Message, Type)
    msg.Text = "The message was "..Message.." and the type was "..tostring(Type)
end)
--Enums for the 2nd argument 'Type' is here: http://wiki.roblox.com/index.php?title=MessageType

This should be fairly easy to edit. You can get just about anything from this. Only problem is, No way to check the source of the Error, Prints, Etc. But I hope this works out for you. If not PM Me on Roblox, @MixCorp

Ad

Answer this question