`~~~~~~~~~~~~~~~~~
Gee = game.Players.LocalPlayer Torso = Gee.UpperTorso Tool = script.Parent handle = Tool:WaitForChild ("Handle") Tool.Equipped:Connect(function() end) Tool.Activated:Connect(function() local SnowMan = game.ReplicatedStorage.Frosty:Clone() SnowMan.Parent = workspace SnowMan.position = Torso.Position end)
~~~~~~~~~~~~~~~~~
The game keeps saying UpperTorso is not a valid member of player yet im in r15 and everything
Because UpperTorso parent is not player. Its parent character Just type this on ur first line.
Gee = game.Players.LocalPlayer.Character or game.Players.LocalPlayer.CharacterAdded:Wait()