Warning: Cannot modify header information - headers already sent by (output started at /home/scribcjm/public_html/includes/header.php:285) in /home/scribcjm/public_html/script.php on line 17
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local remote = ReplicatedStorage:WaitForChild("MainEvent")
local morphs = {
"Turtle",
"Kid",
"Duck",
"Duck",
"Duck",
"Crawler",
"Dog",
"Sheep",
"Turkey",
"Puppy",
"Kitty",
"Kitty",
"Kitty",
"Kitty",
}
while true do
for _, morphName in ipairs(morphs) do
remote:FireServer("Morph", morphName)
task.wait(0.2)
end
end