(im making the same post as 4 days ago to gain attention)
i want to make nodes for my phone map, but i literally don’t know anything on how to make it
i tried to normalize the part’s position to the map’s position but it doesn’t work
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local UIS = game:GetService("UserInputService")
local CAS = game:GetService("ContextActionService")
local RS = game:GetService("ReplicatedStorage")
local camera = workspace.CurrentCamera
local Phone = script.Parent.Parent.Parent.Parent
local Screen = Phone.Main.Screen
local delAppFrame = Screen.DeliveryApp
local delAppVPFrame = delAppFrame.ViewportFrame
local playerIndicatorTemplate = delAppFrame.Player
local deliveryIcon = Screen.DeliveryIcon
local exitButton = Screen.ExitButton
local openDeliveries = Screen.OpenDeliveries
local DeliveriesDB = delAppFrame.DeliveriesDB
local open = false
local waypoint = workspace:WaitForChild("Waypoint")
-- Remove the template from the frame
playerIndicatorTemplate.Parent = nil
-- Minimap variables
local offset, chunkSize, chunkHalfSize, currentX, currentZ
local scrollSpeed = 500
local playerIndicators = {}
-- Minimap Camera
local viewportCamera = Instance.new("Camera")
viewportCamera.FieldOfView = 20
delAppVPFrame.CurrentCamera = viewportCamera
-- Clone the map into the viewport frame
for _, descendant in ipairs(workspace.Map:GetDescendants()) do
if descendant:IsA("BasePart") then
descendant:Clone().Parent = delAppVPFrame
end
end
-- Update minimap position and viewport camera
local function UpdateMinimap()
local focusX = camera.Focus.Position.X / chunkSize
local focusZ = camera.Focus.Position.Z / chunkSize
local chunkX, chunkZ = math.floor(focusX), math.floor(focusZ)
local x, z = focusX % 1, focusZ % 1
if currentX ~= chunkX or currentZ ~= chunkZ then
currentX, currentZ = chunkX, chunkZ
local position = Vector3.new(chunkX * chunkSize + chunkHalfSize, 0, chunkZ * chunkSize + chunkHalfSize)
viewportCamera.CFrame = CFrame.lookAt(position + offset, position, -Vector3.zAxis)
end
delAppVPFrame.Position = UDim2.new(1 - x, 0, 1 - z, 0)
end
-- Update player positions on the minimap
local function UpdatePlayers()
local focusX = camera.Focus.Position.X / chunkSize
local focusZ = camera.Focus.Position.Z / chunkSize
for player, gui in pairs(playerIndicators) do
if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then
local cFrame = player.Character:GetPivot()
local x, z = cFrame.Position.X / chunkSize, cFrame.Position.Z / chunkSize
gui.Position = UDim2.new(0.5 - focusX + x, 0, 0.5 - focusZ + z, 0)
gui.Rotation = -player.Character.HumanoidRootPart.Orientation.Y
end
end
end
--[[ NOT IMPORTANT
-- Player joins: Add to minimap
local function PlayerAdded(player)
local gui = playerIndicatorTemplate:Clone()
gui.PlayerName.Text = player.Name
gui.Parent = delAppFrame
playerIndicators[player] = gui
end
-- Player leaves: Remove from minimap
local function PlayerRemoving(player)
if playerIndicators[player] then
playerIndicators[player]:Destroy()
playerIndicators[player] = nil
end
end
-- Set minimap zoom level
local function SetMinimapZoom(value)
offset = Vector3.new(0, value, 0)
chunkSize = offset.Y * math.tan(math.rad(viewportCamera.FieldOfView) / 2)
chunkHalfSize = chunkSize / 2
currentX, currentZ = math.huge, math.huge
UpdateMinimap()
end
RunService.RenderStepped:Connect(function()
UpdatePlayers()
end)
SetMinimapZoom(500)
--]]
camera:GetPropertyChangedSignal("Focus"):Connect(UpdateMinimap)
--normalizing
local UIPos = Vector2.new(waypoint.Position.X/chunkSize, waypoint.Position.Z/chunkSize)
--what i tried
local frame = Instance.new("Frame")
frame.Parent = delAppVPFrame
frame.Size = UDim2.new(0.1, 0, 0.1, 0)
frame.BackgroundColor3 = Color3.new(1, 1, 1)
frame.Position = UDim2.fromOffset(UIPos.X, UIPos.Y)
--[[
-- UI button interactions
deliveryIcon.MouseButton1Click:Connect(function()
delAppFrame.Visible = true
exitButton.Visible = true
openDeliveries.Visible = true
end)
exitButton.MouseButton1Click:Connect(function()
delAppFrame.Visible = false
exitButton.Visible = false
openDeliveries.Visible = false
end)
openDeliveries.MouseButton1Click:Connect(function()
DeliveriesDB.Visible = not open
open = not open
end)
-- Scroll zoom functionality
UIS.InputChanged:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseWheel and Screen:IsAncestorOf(delAppFrame) then
SetMinimapZoom(offset.Y + (-input.Position.Z * scrollSpeed * 0.05))
end
end)
-- Disable scrolling when inside the app
CAS:BindAction("DisableScroll", function()
return Screen:IsAncestorOf(delAppFrame) and Enum.ContextActionResult.Sink or Enum.ContextActionResult.Pass
end, false, Enum.UserInputType.MouseWheel)
-- Connect player events
for _, player in pairs(Players:GetPlayers()) do PlayerAdded(player) end
Players.PlayerAdded:Connect(PlayerAdded)
Players.PlayerRemoving:Connect(PlayerRemoving)
--]]
so please help! thanks in advance