“Roblox Click Detector” Kod odpowiedzi

Jak wiedzieć, kto kliknął detektor kliknięcia Roblox

function GoGoGo()
	print("executing some code")
    print("code code code")
    error("error!!")
end
script.Parent.ClickDetector.MouseClick:Connect(GoGoGo)
Impossible Iguana

Wykrywanie lua kliknij

local clickDetector = workspace.Part.ClickDetector
 
function onMouseClick()
	print("You clicked me!")
end
 
clickDetector.MouseClick:connect(onMouseClick)
Relieved Raccoon

Kliknij detektor Roblox

function onClicked()
	--code here
end
script.Parent.ClickDetector.MouseClick:Connect(onClicked)
MunchDuster

Roblox Click Detector

--LUA
--put the script as a child of a part
--make a click detectora child of the same part

--get click detector refrence
local clickDetector = script.Parent.ClickDetector

--create a function to be fired when the click detector is clicked
function onMouseClick()
	--put your code here
	print("You clicked me!")
end

--this "connects" the event that happens when you click the click detector
--to the function above
clickDetector.MouseClick:connect(onMouseClick)
_creare_

Odpowiedzi podobne do “Roblox Click Detector”

Pytania podobne do “Roblox Click Detector”

Więcej pokrewnych odpowiedzi na “Roblox Click Detector” w Lua

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu