Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Holding script won't work?

Asked by 9 years ago

Making a horror game, tried making a script to make you hold items like you are holding a box in Amnesia. (Take a look)

1script.Parent.MouseClick:connect(function(player)
2    local Mouse = player:GetMouse()
3    script.Parent.Parent.Parent = player.Character
4    while true do
5    wait()
6        script.Parent.Parent.CFrame = CFrame.new(Mouse.Hit.X,Mouse.Hit.Y,Mouse.Hit.Z)
7    end
8end)

When you see it, it looks like this: http://imgur.com/S1tYHgP

When you click it, it twitches a lot and looks like this: http://imgur.com/EyLWDFV

Can anyone help me with this?

Answer this question