So I am Creating a minimap but i cant get the other players on the minimap. 
This is the Image
local RunService = game:GetService("RunService")
local MapFolder = game.Workspace.Map
local Player = game.Players.LocalPlayer
local Character = Player.Character or Player.CharacterAdded:Wait()
local HumanoidRootPart = Character:WaitForChild("HumanoidRootPart")
local Frame = script.Parent.MapFrame
local PlayerArrow = Frame.PlayerArrow
local Camera = Instance.new("Camera", game.Workspace)
Camera.CameraType = Enum.CameraType.Scriptable
Frame.CurrentCamera = Camera
Camera.FieldOfView = 1
for i, Objects in pairs(MapFolder:GetChildren()) do
local Clone = Objects:Clone()
Clone.Parent = Frame
end
RunService.RenderStepped:Connect(function()
Camera.CFrame = CFrame.new(HumanoidRootPart.Position + Vector3.new(0, 10000, 0), HumanoidRootPart.Position)
PlayerArrow.Rotation = -HumanoidRootPart.Orientation.Y - 90
end)
This is the map Script.
Can anyone help me?