Skip to content

Instantly share code, notes, and snippets.

local switch = GetPartFromPort(1, "Switch")
local gyro = GetPartFromPort(1, "Gyro")
local mic = GetPartFromPort(1, "Microphone")
mic:Connect("Chatted", function (Player, Message)
print(Player)
if Player ~= "Makerbenjammin6" then return end
local split = Message:split(" ")
local command = split[1]:lower()
local switch = GetPartFromPort(1, "Switch")
local gyro = GetPartFromPort(1, "Gyro")
local mic = GetPartFromPort(1, "Microphone")
local on = false
switch:Configure({SwitchValue = false})
mic:Connect("Chatted", function (Player, Message)
print(Player)
if Player ~= "Makerbenjammin6" then return end
local switch = GetPartFromPort(1, "Switch")
local gyro = GetPartFromPort(1, "Gyro")
local mic = GetPartFromPort(1, "Microphone")
local on = false
switch:Configure({SwitchValue = false})
mic:Connect("Chatted", function (Player, Message)
print(Player)
if Player ~= "Makerbenjammin6" then return end