My pet spawn in the same position, how do I make the position random?
Asked by
6 years ago Edited 6 years ago
I made a script where when you click a button, a pet will come out and follow you, and I made it that more than one pet can follow, but the result I got is a disaster. Because when I click the button again the pet spawn in the same place as the other pet, and it all squeeze/stack together and look like a monster. How can I make it that each spawn and follow you in a different position?
Example:
https://cdn.discordapp.com/attachments/456967793397727233/485850971281555477/unknown.png
here is the script, it is a local script
01 | local char = script.Parent.Parent |
02 | local hum = char:FindFirstChild( "Humanoid" ) |
03 | local head = char:FindFirstChild( "Head" ) |
04 | local pet = script.Parent |
15 | if fl > = maxFloat then |
20 | if fl < = -maxFloat then |
24 | if pet ~ = nil and hum ~ = nil and head ~ = nil then |
25 | if hum.Health > = 0 then |
26 | local cf = head.CFrame * CFrame.new( 3 , 2 +fl, 3 ) |
27 | pet.BodyPosition.Position = Vector 3. new(cf.x,cf.y,cf.z) |
28 | pet.BodyGyro.CFrame = head.CFrame * CFrame.new( 3 , 0 ,- 3 ) |