Advertisement
Marcsosa

Untitled

Mar 9th, 2018
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. game:GetService("RunService").RenderStepped:connect(function()
  2. if p.Parent ~= nil then
  3. p.CFrame = p.CFrame:lerp(plr.Character:WaitForChild("Head").CFrame + Vector3.new(0,2.25,0),0.16)
  4. else
  5. p = Instance.new("Part",game.Workspace)
  6. p.Size = Vector3.new(0.2,0.2,0.2)
  7. p.Transparency = 1
  8. p.Anchored = true
  9. p.CanCollide = false
  10. p.Name = "Msg"
  11. p.CFrame = plr.Character:WaitForChild("Head").CFrame + Vector3.new(0,2.25,0)
  12. end
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement