Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

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

01local char = script.Parent.Parent
02local hum = char:FindFirstChild("Humanoid")
03local head = char:FindFirstChild("Head")
04local pet = script.Parent
05 
06local maxFloat = 1
07local floatInc = 0.025
08local sw = false
09local fl = 0
10 
11while true do
12    wait()
13    if not sw then
14        fl = fl + floatInc
15        if fl >= maxFloat then
View all 33 lines...
0
I would say, make a invisible (and CanCollide = false) bricks that are welded to your body, then make an math.random function that spawns the animal on the random places. Oficcer_F 207 — 6y
0
how do you do that? RainbowBeastYT 85 — 6y

Answer this question