I cannot stop my script from printing: 13:47:42.610 - Using Checko 13:47:42.611 - This is a unlicenced game 13:47:42.612 - The creator Id Is: 0 <--- used for loading problems 13:47:42.612 - 1433803989 <-- Place Id 13:47:42.613 - 570245554 <--- Game Id
I need help please.
Loader Script:
1 | module = require(workspace.MainModule) -- will be numbers soon |
2 | module.Plan( "Dev" ) |
MainModule:
001 | local module = { } |
002 | local devtable = { 3889301 , 3889301 , 0 } |
003 | local Standardtable = { 3889301 } |
004 | local Premiumtable = { 3889301 } |
005 | local Enterprisetable = { 3889301 } |
006 | --<<<< Checking for licence >>>>---- |
007 | function check(num) |
008 | for _,v in pairs (devtable) do |
009 | if v = = num then |
010 | return true |
011 | end ; |
012 | end ; |
013 | end |
014 | function module.Plan(arg) |
015 | if arg = = "Dev" and check(game.CreatorId) = = true then |
Please help.
Maybe you didn’t put your UserId in the “devtable” on line 2 in the MainModule. I checked your profile for your UserId but it doesn’t match the numbers in the table, so...just put your UserId in the table, and make that the only number, as it won’t work for others anyways.
Also if you don’t know where the UserId is, it’s those numbers on the link on your Roblox profile page, or if you’re in studio, go to the Players service,find your player, and in the properties it should have your UserId.