FireClient not working?
Alright, for some odd reason the local script is not receiving the FireClient(). I have a regular script in the ServerScriptService which loads the stats, while there is a local script in the ServerStorage that is cloned into the client. In the local script, it never prints when the Client is Fired.
Here is the ServerScriptService script:
01 | local DataStore = game:GetService( "DataStoreService" ) |
02 | function Joined(player) |
03 | local stats = game.ServerStorage.Stats:clone() |
05 | local key = "user_" .. player.userId |
06 | local a = DataStore:GetDataStore( "Shillings" ) |
07 | local b = DataStore:GetDataStore( "Bank" ) |
13 | a:UpdateAsync(key, function (oldValue) |
14 | Shillings = oldValue or 0 |
16 | b:UpdateAsync(key, function (oldValue) |
20 | local c = DataStore:GetDataStore( "Item" ..i) |
21 | c:UpdateAsync(key, function (oldValue) |
22 | table.insert(Items,i,oldValue or "None" ) |
24 | local d = DataStore:GetDataStore( "Stackable" ..i) |
25 | d:UpdateAsync(key, function (oldValue) |
26 | table.insert(Stackable,i,oldValue or false ) |
28 | local e = DataStore:GetDataStore( "Amount" ..i) |
29 | e:UpdateAsync(key, function (oldValue) |
30 | table.insert(Amount,i,oldValue or 0 ) |
33 | if player:GetRankInGroup( 1114631 ) = = 0 and player:GetRankInGroup( 1079272 ) = = 0 and player:GetRankInGroup( 1080391 ) = = 0 then |
36 | elseif player:GetRankInGroup( 1114631 ) > = player:GetRankInGroup( 1079272 ) and player:GetRankInGroup( 1114631 ) > = player:GetRankInGroup( 1080391 ) then |
37 | Rank = tostring (player:GetRoleInGroup( 11141631 )) |
38 | if player:GetRankInGroup( 11141631 ) = = 1 then |
40 | elseif player:GetRankInGroup( 11141631 ) > 1 and player:GetRankInGroup( 11141631 )< = 9 then |
42 | elseif player:GetRankInGroup( 11141631 ) > 9 and player:GetRankInGroup( 11141631 ) < = 16 then |
44 | elseif player:GetRankInGroup( 11141631 ) > 16 and player:GetRankInGroup( 11141631 ) < = 200 then |
46 | elseif player:GetRankInGroup( 11141631 ) > 200 then |
49 | elseif player:GetRankInGroup( 1114631 ) < = player:GetRankInGroup( 1079272 ) and player:GetRankInGroup( 1079272 ) > = player:GetRankInGroup( 1080391 ) then |
50 | Rank = tostring (player:GetRoleInGroup( 1079272 )) |
51 | if player:GetRankInGroup( 1079272 ) = = 237 then |
53 | elseif player:GetRankInGroup( 1079272 ) > 237 and player:GetRankInGroup( 1079272 ) < = 241 then |
55 | elseif player:GetRankInGroup( 1079272 ) > 241 and player:GetRankInGroup( 1079272 ) < = 248 then |
57 | elseif player:GetRankInGroup( 1079272 ) > 248 and player:GetRankInGroup( 1079272 ) < = 251 then |
59 | elseif player:GetRankInGroup( 1079272 ) > 251 then |
64 | elseif player:GetRankInGroup( 1080391 ) > = player:GetRankInGroup( 1114631 ) and player:GetRankInGroup( 1080391 ) > = player:GetRankInGroup( 1079272 ) then |
65 | Rank = tostring (player:GetRoleInGroup( 1080391 )) |
66 | if player:GetRankInGroup( 1080391 ) = = 1 then |
68 | elseif player:GetRankInGroup( 1080391 ) > 1 and player:GetRankInGroup( 1080391 ) < = 4 then |
70 | elseif player:GetRankInGroup( 1080391 ) > 4 and player:GetRankInGroup( 1080391 ) < = 8 then |
72 | elseif player:GetRankInGroup( 1080391 ) > 8 and player:GetRankInGroup( 1080391 ) < = 9 then |
74 | elseif player:GetRankInGroup( 1080391 ) > 9 then |
81 | player:WaitForChild( "Stats" ).Main:FireClient(player, 1 ,Shillings,Bank,Income,Rank,Items,Stackable,Amount) |
82 | print (player, 1 ,Shillings,Bank,Income,Rank,Items,Stackable,Amount) |
84 | game.Players.PlayerAdded:connect(Joined) |
Here is the local script, which is cloned:
008 | [ "Stackable" ] = false , |
013 | [ "Stackable" ] = false , |
018 | [ "Stackable" ] = false , |
023 | [ "Stackable" ] = false , |
028 | [ "Stackable" ] = false , |
033 | [ "Stackable" ] = false , |
038 | [ "Stackable" ] = false , |
043 | [ "Stackable" ] = false , |
048 | [ "Stackable" ] = false , |
053 | [ "Stackable" ] = false , |
071 | script.Main.OnClientEvent:connect( function (Type,arg 1 ,arg 2 ,arg 3 ,arg 4 ,arg 5 ,arg 6 ,arg 7 ) |
075 | Stats [ "Shillings" ] = arg 1 |
079 | Stats [ "Income" ] = arg 3 |
087 | Stats [ "Slot_" ..i ] [ "Name" ] = arg 5 [ i ] |
088 | Stats [ "Slot_" ..i ] [ "Stackable" ] = arg 6 [ i ] |
089 | Stats [ "Slot_" ..i ] [ "Amount" ] = arg 7 [ i ] |
091 | for i,v in pairs (#Stats) do |
096 | local Gui = game.Players.LocalPlayer.PlayerScripts.StatsGui |
097 | Gui.Frame [ "Name" ] .Text = script.Parent.Name |
098 | Gui.Frame.Income.Text = "Income: " .. tostring (Stats [ "Income" ] ) |
099 | Gui.Frame.Rank.Text = Stats [ "Rank" ] |
100 | Gui.Frame.Shillings.Text = tostring (Stats [ "Shillings" ] ).. "Shillings" |
101 | Gui.Frame.Bank.Text = tostring (Stats [ "Bank" ] ) |
102 | elseif Type = = 2 then |
103 | if Stats [ "Shillings" ] > = arg 1 then |
104 | Stats [ "Shillings" ] = Stats [ "Shillings" ] - arg 1 |
105 | Obtain(script.Parent,arg 2 ,arg 3 ,arg 4 ) |
112 | function Obtain(player,Item,Stack,Amount) |
114 | print (Stats [ "Slot_" ..i ] [ "Name" ] ) |
115 | if Stats [ "Slot_" ..i ] [ "Name" ] = = "" then |
116 | Stats [ "Slot_" ..i ] [ "Name" ] = Item |
117 | Stats [ "Slot_" ..i ] [ "Stackable" ] = Stack |
118 | Stats [ "Slot_" ..i ] [ "Amount" ] = Amount |
125 | function CharacterAdd(Character) |
126 | local plr = game.Players:GetPlayerFromCharacter(Character) |
127 | plr.Backpack.StatsGui.Parent = plr.PlayerGui |
129 | game.Players.LocalPlayer.CharacterAdded:connect(CharacterAdd) |