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 その141

Posted at

概要

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

練習問題

pluginで、scriptをwordでサーチせよ。

サンプルコード


local PluginBar = plugin:CreateToolbar("creator")
local Button1 = PluginBar:CreateButton("creator", "Create new script", "rbxassetid://4458901886", "Create")

Button1.Click:Connect(function()
	for i, v in pairs(game:GetDescendants()) do
		if v:IsA("Script") then
			if string.find(v.Source, "string.char") then
				print(v.Parent.Name .. "/" .. v.Name)
			end	
		end
	end
	print("ok")
end)



  11:37:27.224  ReplicatedFirst/LocalScript  -  編集
  11:37:27.226  ReplicatedStorage/Script  -  編集
  11:37:27.227  ok  -  編集

以上。

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?