MADE BY arq
FEATURE:
- BABY HEAD IN A MICROWAVE (WOW SOUNDS SO BAD WHEN TYPING IT OUT)
- .
- ITEMS YOU NEED
- https://www.roblox.com/catalog/4793971886/Filing-Cabinet
- https://www.roblox.com/catalog/7133341385/Crying-Baby-Head
- https://www.roblox.com/catalog/3706608102/Microwave-for-your-Microbrain
- https://www.roblox.com/bundles/239/Woman (use the torso)
- https://www.roblox.com/bundles/496/Blazeburner (use the head)
Use default arms and legs. Set width and head sliders to maximum and everything else to minimum.
Here’s the code to make the head spin (it also deletes animations which can mess with it):
local char = game.Players.LocalPlayer.Character
for i,v in next, char.Humanoid:GetPlayingAnimationTracks() do
v:Stop()
end
char.Animate.Disabled = true
local rs = game:GetService("RunService")
for i,v in pairs(char:GetChildren()) do
if v:IsA("Accessory") then
if v.Name == "Crying Baby" then
v.Handle.AccessoryWeld:Destroy()
rs.Heartbeat:Connect(function(step)
v.Handle.Position = char.Head.Position
v.Handle.CFrame = v.Handle.CFrame * CFrame.Angles(0,math.rad(30 * step),0)
end)
end
end
end