From f8ed5ebe314246989cf1f7029abfa63def94afcd Mon Sep 17 00:00:00 2001 From: Dog2puppy Date: Sun, 12 Aug 2018 09:31:46 -0400 Subject: [PATCH] Don't use player name for key --- ExampleScript1.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ExampleScript1.lua b/ExampleScript1.lua index 43d5782..d2aed09 100644 --- a/ExampleScript1.lua +++ b/ExampleScript1.lua @@ -1,7 +1,7 @@ local manager = require(game.ReplicatedStorage:WaitForChild("LuaCoinManager")) game.Players.PlayerAdded:connect(function(plr) - local key = plr.Name.."_"..plr.userId + local key = plr.userId manager:SetupPlayer("MasterBank",key) manager:GetInformation("MasterBank",key) -end) \ No newline at end of file +end)