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

Why won't my food tool hit the players face?

Asked by 4 years ago
Edited 4 years ago

I am trying to make a script where the item when clicked shows up near the players mouth/. As shown below, it goes in front of the face causing a gap, ignoring the mouth. I have made the script that positions it but I might not be getting the coordinates wrong. Please correct me.

local Tool = script.Parent;
enabled = true
function onActivated()
    if not enabled  then
        return
    end 
    enabled = false
    Tool.GripForward = Vector3.new(-0, 1.02e-005, -0.243)
    Tool.GripPos = Vector3.new(1, 0, -0.999)
    Tool.GripRight = Vector3.new(1, 1, -1)
    Tool.GripUp = Vector3.new(-0.141, 0.814, 0.563)
    Tool.Handle.Enjoy:Play()
    wait(.8)

This picture represents it when it is equipped https://prnt.sc/rm8cm8

This picture represents it when it is clicked: https://prnt.sc/rm8czz

0
We can't see the images. Its redirecting to a broken link... AlmostADemon 50 — 4y
0
Copy and, paste it, rylie2377 39 — 4y
0
Still an invalid site AlmostADemon 50 — 4y
0
^Fixed rylie2377 39 — 4y

Answer this question