Why isnt my script moving the entire dummy?
Ok so in my game i have a script that moves a monster when the game starts which is currently just a dummy. But when i tell my script to move the HumanoidRootPart it only moves the actual HumanoidRootPart and not the entire body as it should. Does anyone know why this is?
There is no error's in the console.
ServerScript that moves the dummy
02 | local map = workspace.Map.Value |
03 | local Map = workspace:FindFirstChild(map) |
06 | print ( "could not find requested map : " .. map) |
09 | local MonsterSpawn = Map:WaitForChild( "monsterSpawn" ):GetChildren() |
10 | local randomMonsterSpawn = MonsterSpawn [ math.random( 1 , #MonsterSpawn) ] |
11 | local Monster = game.ServerStorage.grandiosav 5 |
13 | Monster.Parent = workspace |
14 | Monster.HumanoidRootPart.Position = randomMonsterSpawn.Position |