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

Please help me fix this module for loading a system?

Asked by 7 years ago

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:

1module = require(workspace.MainModule) -- will be numbers soon
2module.Plan("Dev")

MainModule:

001local module = {}
002local devtable = {3889301,3889301,0}
003local Standardtable = {3889301}
004local Premiumtable = {3889301}
005local Enterprisetable = {3889301}
006--<<<< Checking for licence >>>>----
007function check(num)
008for _,v in pairs(devtable) do
009if v == num then
010return true
011end;
012end;
013end
014function module.Plan(arg)
015if arg == "Dev" and check(game.CreatorId) == true then
View all 113 lines...

Please help.

0
Any chance you can describe the problem better? What is your code supposed to do? What have you tried to do to debug it yourself? M39a9am3R 3210 — 7y

1 answer

Log in to vote
0
Answered by 7 years ago

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.

0
I put the GroupID UltraaaDev 85 — 7y
Ad

Answer this question