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

How come my money give command wont work. What's happening?

Asked by 4 years ago
Edited 4 years ago

--//Description\--

I have 2 scripts. One called AdminHandler and another called Controller. I know Controller sends the data I need to send but the admin handler won't run the command. Whats happen?

--//AdminHander\--

001local admins = {
002---UserNames
003    ["vincentthecat1"] = 1;
004    ["Havok_Ninja"] = 2;
005    ["EatSomeSand123"] = 3;
006    [""] = 4;
007---UserId's
008    [150334552] = 1;
009    [21010010] = 2;
010    [896303435] = 3;
011 
012}
013 
014local manualBans = {
015---UserNames
View all 139 lines...

--//AdminHander\--

01local gui = script.Parent
02local frameOutLine = gui.AdminPanelOutline
03local adminFrame = frameOutLine.AdminPanel
04local moderationframe = adminFrame.ModerationFrame
05local UserBoard = frameOutLine.UserBoard.UserNames
06local moneyFrame = frameOutLine.MoneyFrameOutline
07local moneyPanel = moneyFrame.MoneyFrame
08local inputAmount = moneyPanel.MainFrame.InputAmount
09local moneyConfirm = moneyPanel.MainFrame.MoneyConfirm
10local moneyFrameOpen = frameOutLine.MoneyFrameOpen
11local moneyFrameClose = moneyFrame.MoneyFrameClose
12 
13local flag = false
14local flag2 = true
15 
View all 96 lines...
0
Never seen anything like this before nicemorew 26 — 4y

Answer this question