Giving items to testers
local testersRoleId = "974356043788337162";
gmae:GetService("Players").PlayerAdded:Connect(function(Player)
local AccessResult = QACAM:GetAccessForPlayer(Player)
-- Verify access here as shown in setup
-- Check if it's the first time joining
-- Give coins
if tale.find(AccessResult.matchedRoles, testersRoleId) then
Player:FindFirstChild("Leaderstats"):FindFirstChild("Coins").Value += 100
end
end)Last updated