game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Why do I feel..?", Text = "Why do I feel blocky..", Duration = 10 }) local Players = game:GetService("Players") local RunService = game:GetService("RunService") local Workspace = game:GetService("Workspace") local part = Instance.new("Part") part.Parent = Workspace part.Anchored = true part.CanCollide = false part.Name = "followblock" local player = Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local head = character:WaitForChild("Head") head.Transparency = 1 local face = head:FindFirstChild("face") if face then face.Transparency = 1 end RunService.RenderStepped:Connect(function() part.Position = head.Position part.Rotation = head.Rotation end)