-- скрипт в ServerScriptStorage
local event = game.ReplicatedStorage.RemoteEvent -- ВАЖНО!!! СОЗДАЙТЕ REMOTEEVENT В REPLICATEDSTORAGE
event.OnServerEvent:Connect(function(plr)
while task.wait() do
script.Parent.CFrame = script.Parent.CFrame * CFrame.fromEulerAnglesXYZ(0,0.1,0)
end
end)
-- локальный скрипт в StarterCharacterScripts
local service = game:GetService("UserInputService")
local remoteevent = game.ReplicatedStorage.RemoteEvent -- ВАЖНО!!! СОЗДАЙТЕ REMOTEEVENT В REPLICATEDSTORAGE
service.InputBegan:Connect(function(a,b)
if b then
return
end
if a.KeyCode == Enum.KeyCode.G then -- вместо G укажите нужную вам клавишу
remoteevent:FireServer()
end
end)
Катя КолесниковаУченик (109)
5 месяцев назад
local Motor2 = {}
local Motor3 = {}
local Motor4 = {}
--------------------------------------------------------------------------------
for _,i in pairs(script.Parent.RotLights:GetChildren()) do
if
i.Name == "Motor1" then
table.insert(Motor1,i.Motor)
elseif
i.Name == "Motor2" then
table.insert(Motor2,i.Motor)
elseif
i.Name == "Motor3" then
table.insert(Motor3,i.Motor)
elseif
i.Name == "Motor4" then
table.insert(Motor4,i.Motor)
end
end
while task.wait() do
script.Parent.CFrame = script.Parent.CFrame * CFrame.fromEulerAnglesXYZ(0,0.1,0)
end
Дополните его пж