Imported from ScriptBlox https://scriptblox.com/
Its auto spamming morphs that are not even in the game,everything is fe,open source,the morphs are very old.
Free
script.lua
26 lines
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
Description
Comments 0
Login to comment
Loading comments...
Copied!