0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

robloxでassistant その200

Posted at

概要

robloxでassistant、やってみた。
練習問題やってみた。

練習問題

BadgeServiceを使え。

写真

image.png

サンプルコード

Script


local BadgeService = game:GetService("BadgeService")
local success, result = pcall(function()
	return BadgeService:GetBadgeInfoAsync(2124707470) 
end)
if success then
	print("Badge: ", result.Name)
	print("Enabled: ", result.IsEnabled)
	print("Description: ", result.Description)
	print("Icon: ", "rbxassetid://" .. result.IconImageId)
else
	warn("Error while fetching badge info:", result)
end


以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?