while true do wait(15) game.Lighting.Turkey:Clone().Parent = game.player.Backpack wait(30) game.Lighting.Turkey:Clone().Parent = game.player.Backpack wait(12) game.Lighting.Turkey:Clone().Parent = game.player.Backpack end
It won't work in game so I'm sure I did something wrong. Is there a line of code I put after "end"? I see it in a lot of loop scripts.
You didn't define player.
Put this above while true do.
local player = game.Players.LocalPlayer
By the way, switch it to local script
If you're in Play Solo, try setting the parent like this
game.Lighting.Turkey:Clone().Parent = Game.Players.Player.Backpack
or if you're actually in a Roblox Server
game.Lighting.Turkey:Clone().Parent = Game.Players.iDarrick.Backpack