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

Item not giving when user owns badge?

Asked by
yoshi8080 445 Moderation Voter
9 years ago

I wanted the player to get an item when owning a badge, but it doesn't seem to work?

01local badge = game:GetService("BadgeService")
02local badgeId = 18987678
03local player = game.Players.LocalPlayer
04local tool = game.ServerStorage:WaitForChild('BloxyCola')
05 
06if badge:UserHasBadge(player.userId, badgeId) then
07local newtool = tool:Clone()        
08newtool.Parent = player.Backpack
09else
10print("Player doesn't have")
11end

This is the error Workspace.Script:6: attempt to index local 'player' (a nil value)

3 answers

Log in to vote
1
Answered by 9 years ago
1game.Players.PlayerAdded:connect(function(player)
2    player.CharacterAdded:connect(function(character)
3        if badge:UserHasBadge(player.UserId, badgeId) then
4            tool:Clone().Parent = player.Backpack
5        end
6    end)
7end)
0
may help to give a slight reasoning behind this answer LuaQuest 450 — 9y
0
Help who? I already explained the reasoning to yoshi in chat, and CodingEvolution explained the rest below (for anyone who comes to this particular post for a reason) chess123mate 5873 — 9y
Ad
Log in to vote
2
Answered by 9 years ago

The other answers are wrong. It doesn't matter whether you use "UserId" or "userId". The problem is in the error message "player (a nil value)"

The only time that error would happen is if you're trying to use "LocalPlayer" in a server script. That will only work in a local script.

However, you can only use the UserHasBadge function in a server script. So, let's change things up a bit:

01-- Server script
02-- Badge handler
03 
04-- Services
05local Players = game:GetService'Players'
06local BadgeServ = game:GetService'BadgeService'
07local Storage = game:GetService'ServerStorage'
08 
09-- Configurable
10local Tool = Storage:WaitForChild'BloxyCola'
11local BadgeId = 18987678
12 
13-- Main
14Player.PlayerAdded:connect(function(NewPlayer)
15    if BadgeServ:UserHasBadge(NewPlayer.UserId, BadgeId) then
16        Tool:Clone().Parent = NewPlayer.StarterGear
17    end
18end)

Let me know if you have any questions.

Log in to vote
1
Answered by 9 years ago

Problem Roblox changed player.userId http://wiki.roblox.com/index.php?title=API:Class/Player

Solution

1if badge:UserHasBadge(player.UserId, badgeId) then

Answer this question