First of all for some odd reason this tool is no longer working: Can you fix it?
local bin = script.Parent bin.Selected:connect(function(Mouse) Mouse.Button1Down:connect(function() local xorgin = Mouse.Origin.x local yorgin = Mouse.Origin.y local player = game.Players.LocalPlayer Instance.new('Part', game.Workspace) game.Workspace.Part.CFrame = CFrame.new(Mouse.hit.p.x,Mouse.hit.p.y,Mouse.hit.p.z) game.Workspace.Part.Name = player.Name..'FigurePart' game.Workspace[player.Name..'FigurePart'].Transparency = 1 end) end)
and then there's this script that fails attaching the camera to it.
script.Parent.MouseButton1Down:connect(function() local player = game.Players.LocalPlayer script.Parent.Visible = false script.Parent.Parent.MiniGuiFolder["<"].Visible = false script.Parent.Parent.MiniGuiFolder[">"].Visible = false script.Parent.Parent.MiniGuiFolder.Frame.Visible = false game.Workspace[player.Name..'Figure'].Humanoid.Health = 100 game.Workspace[player.Name..'Figure'].Humanoid.MaxHealth = 100 wait(0.3) local target = workspace[player.Name.."Figure"].Torso local camera = workspace.CurrentCamera camera.CameraType = Enum.CameraType.Scriptable camera.CameraSubject = target while wait() do camera.CoordinateFrame = CFrame.new(target.Position) * CFrame.Angles(-95, 0, 0) * CFrame.new(0, 0, 25) end end)
Sorry im new