AwardBadge (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>ArceusInator
Added a few things.
>SoulStealer9875
No edit summary
 
(11 intermediate revisions by 4 users not shown)
Line 2: Line 2:
|name                = AwardBadge
|name                = AwardBadge
|arguments            = [[Integer]] ''userId'', [[Integer]] ''badgeId''
|arguments            = [[Integer]] ''userId'', [[Integer]] ''badgeId''
|description          = Gives the [[Player]] with the [[userId]] of ''userId'' the [[Badges|badge]] with the assetId of ''badgeId''.
|description          = Gives player with ''userId'' a [[badge]] with ''badgeId''.
|object              = BadgeService
|object              = BadgeService
}}</onlyinclude>
}}</onlyinclude>
Line 9: Line 9:


{{Example|<pre>
{{Example|<pre>
function AwardBadge( player, badgeId )
player = game.Players.LocalPlayer
  game:GetService( "BadgeService" ):AwardBadge( player.userId, badgeId )
game:GetService("BadgeService"):AwardBadge(player.userId, 24806012)
 
-- Awards your LocalPlayer (must be in a LocalScript) the badge with the ID of 24806012.
 
</pre>}}
</pre>}}


== Limitations ==
== Limitations ==
* Badges can only be awarded from Roblox Game Servers. This means it must be a server-side script running online.
* Badges can only be awarded to players in Server's. This means it can not be awarded in Edit or Build mode.
* The owner of the place must own the badge and it must be for the place that is awarding it.
* The owner of the place must own the badge. If they delete it from their badges it can no longer be awarded.
* The owner of the place must have a current [[Builder's Club]] subscription.
* The owner of the place must be subscribed to [[Builder's Club]].
* The player that is recieving the badge must be in the game.


== See Also ==
== See Also ==
*[[UserHasBadge]]
*[[UserHasBadge]]
*[[Badges]]
*[[Badges]]
*[[BadgeService]]


[[Category:Methods]]
[[Category:Methods]]

Latest revision as of 12:05, 10 July 2011

AwardBadge( Integer userId, Integer badgeId )
Returns nil
Description: Gives player with userId a badge with badgeId.
Member of: BadgeService


Example
player = game.Players.LocalPlayer
game:GetService("BadgeService"):AwardBadge(player.userId, 24806012)

 -- Awards your LocalPlayer (must be in a LocalScript) the badge with the ID of 24806012.



Limitations

  • Badges can only be awarded to players in Server's. This means it can not be awarded in Edit or Build mode.
  • The owner of the place must own the badge. If they delete it from their badges it can no longer be awarded.
  • The owner of the place must be subscribed to Builder's Club.

See Also