if soemthing is inside the blue part thing (range part basically) it will print my name but it just prints out {...}
heres the script
local zombie = script.Parent
local humanoid = zombie:WaitForChild("Humanoid")
local rootPart = zombie:WaitForChild("HumanoidRootPart")
local Players = game:GetService("Players")
local range = zombie.range
local animator = humanoid:WaitForChild("Animator")
local attackanim = script:WaitForChild("attackanim")
local attackanimTrack = animator:LoadAnimation(attackanim)
range.Anchored = false
range.CanCollide = false
range.CanQuery = true
range.CanTouch = true
while true do
local somethinginsiderange = workspace:GetPartsInPart(range)
print(somethinginsiderange)
task.wait()
end