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?

More than 1 year has passed since last update.

robloxでassistant その40

Posted at

概要

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

練習問題

ビルトインサービスの一覧を取得せよ。

サンプルコード

local services = {}
for _, service in ipairs(game:GetChildren()) do
	local success, result = pcall(function()
		table.insert(services, service.Name)
	end)
end
table.sort(services)
for _, service in ipairs(services) do
	print(service)
end

実行結果

  07:18:47.767  AdService  -  サーバー - setup:13
  07:18:47.767  AnalyticsService  -  サーバー - setup:13
  07:18:47.768  AnimationClipProvider  -  サーバー - setup:13
  07:18:47.768  AssetService  -  サーバー - setup:13
  07:18:47.768  BadgeService  -  サーバー - setup:13
  07:18:47.768  BrowserService  -  サーバー - setup:13
  07:18:47.768  ChangeHistoryService  -  サーバー - setup:13
  07:18:47.768  Chat  -  サーバー - setup:13
  07:18:47.768  ClusterPacketCache  -  サーバー - setup:13
  07:18:47.769  CollectionService  -  サーバー - setup:13
  07:18:47.769  ConfigureServerService  -  サーバー - setup:13
  07:18:47.769  ContentProvider  -  サーバー - setup:13
  07:18:47.769  ContextActionService  -  サーバー - setup:13
  07:18:47.769  CookiesService  -  サーバー - setup:13
  07:18:47.769  Debris  -  サーバー - setup:13
  07:18:47.770  FilteredSelection  -  サーバー - setup:13
  07:18:47.770  FriendService  -  サーバー - setup:13
  07:18:47.770  GamePassService  -  サーバー - setup:13
  07:18:47.770  GeometryService  -  サーバー - setup:13
  07:18:47.770  GuiService  -  サーバー - setup:13
  07:18:47.771  GuidRegistryService  -  サーバー - setup:13
  07:18:47.771  HttpRbxApiService  -  サーバー - setup:13
  07:18:47.771  HttpService  -  サーバー - setup:13
  07:18:47.771  InsertService  -  サーバー - setup:13
  07:18:47.771  JointsService  -  サーバー - setup:13
  07:18:47.772  KeyboardService  -  サーバー - setup:13
  07:18:47.772  KeyframeSequenceProvider  -  サーバー - setup:13
  07:18:47.772  Lighting  -  サーバー - setup:13
  07:18:47.772  LocalizationService  -  サーバー - setup:13
  07:18:47.772  LogService  -  サーバー - setup:13
  07:18:47.772  LuaWebService  -  サーバー - setup:13
  07:18:47.772  MarketplaceService  -  サーバー - setup:13
  07:18:47.773  MaterialService  -  サーバー - setup:13
  07:18:47.773  MouseService  -  サーバー - setup:13
  07:18:47.773  NetworkServer  -  サーバー - setup:13
  07:18:47.773  NotificationService  -  サーバー - setup:13
  07:18:47.773  PathfindingService  -  サーバー - setup:13
  07:18:47.774  PermissionsService  -  サーバー - setup:13
  07:18:47.774  PhysicsService  -  サーバー - setup:13
  07:18:47.774  Players  -  サーバー - setup:13
  07:18:47.774  PointsService  -  サーバー - setup:13
  07:18:47.774  PolicyService  -  サーバー - setup:13
  07:18:47.775  ProcessInstancePhysicsService  -  サーバー - setup:13
  07:18:47.775  ProximityPromptService  -  サーバー - setup:13
  07:18:47.775  RemoteDebuggerServer  -  サーバー - setup:13
  07:18:47.775  ReplicatedFirst  -  サーバー - setup:13
  07:18:47.775  ReplicatedStorage  -  サーバー - setup:13
  07:18:47.776  Run Service  -  サーバー - setup:13
  07:18:47.776  Script Context  -  サーバー - setup:13
  07:18:47.776  ScriptService  -  サーバー - setup:13
  07:18:47.776  Selection  -  サーバー - setup:13
  07:18:47.776  SelectionHighlightManager  -  サーバー - setup:13
  07:18:47.777  ServerScriptService  -  サーバー - setup:13
  07:18:47.777  ServerStorage  -  サーバー - setup:13
  07:18:47.777  ServiceVisibilityService  -  サーバー - setup:13
  07:18:47.777  SharedTableRegistry  -  サーバー - setup:13
  07:18:47.777  SocialService  -  サーバー - setup:13
  07:18:47.777  SoundService  -  サーバー - setup:13
  07:18:47.778  SpawnerService  -  サーバー - setup:13
  07:18:47.778  StarterGui  -  サーバー - setup:13
  07:18:47.779  StarterPack  -  サーバー - setup:13
  07:18:47.779  StarterPlayer  -  サーバー - setup:13
  07:18:47.779  Stats  -  サーバー - setup:13
  07:18:47.779  Teams  -  サーバー - setup:13
  07:18:47.779  Teleport Service  -  サーバー - setup:13
  07:18:47.780  TestService  -  サーバー - setup:13
  07:18:47.780  TextChatService  -  サーバー - setup:13
  07:18:47.780  TextService  -  サーバー - setup:13
  07:18:47.780  TimerService  -  サーバー - setup:13
  07:18:47.780  TouchInputService  -  サーバー - setup:13
  07:18:47.780  TweenService  -  サーバー - setup:13
  07:18:47.781  UserInputService  -  サーバー - setup:13
  07:18:47.781  VRService  -  サーバー - setup:13
  07:18:47.781  VideoCaptureService  -  サーバー - setup:13
  07:18:47.781  VirtualInputManager  -  サーバー - setup:13
  07:18:47.782  VoiceChatService  -  サーバー - setup:13
  07:18:47.782  Workspace  -  サーバー - setup:13


以上。

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?