Skip to content

Instantly share code, notes, and snippets.

@1-creare-1
Created November 14, 2022 02:38
Show Gist options
  • Save 1-creare-1/cb616fa918a20e0c0865e4f07dd419b1 to your computer and use it in GitHub Desktop.
Save 1-creare-1/cb616fa918a20e0c0865e4f07dd419b1 to your computer and use it in GitHub Desktop.
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 split = Message:split(" ")
local command = split[1]:lower()
if command == "target" then
gyro:Configure({Seek = split[2]})
elseif command == "radar" then
gyro:Configure({Seek = "Radar " .. split[2]})
elseif command == "alien" then
gyro:Configure({Seek = "Radar AlienCore"})
elseif command == "toggle" then
if split[2]:lower() == "true" then
switch:Configure({SwitchValue = true})
elseif split[2]:lower() == "false" then
switch:Configure({SwitchValue = false})
else
switch:Configure({SwitchValue = not on})
on = not on
end
end
end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment