How to make A Pet Simulator X Game on Roblox - Part 6
Added 2022-07-15 23:19:40 +0000 UTCComments
ah
Kamoo
2022-07-22 17:34:31 +0000 UTCon yt yes it is, thought here is up to date xD
Swen Frank
2022-07-19 10:56:12 +0000 UTCis there even a Part 7
Kamoo
2022-07-19 10:51:47 +0000 UTCDon't see Part7 but i have a couple of small changes for u Despawn Module: function module.Despawn(Drop) local OldParent = Drop.Parent for _, Part in pairs(Drop:GetChildren()) do if Part:IsA("BasePart") or Part:IsA("UnionOperation") then TweenService:Create(Part, TweenInfo.new(0.4), {Transparency = 1; CanCollide = false; CanTouch = false; CanQuery = false}):Play() end end CurrencyDropper.DropCurrency("CoinDrop", Drop.PrimaryPart.CFrame, 8) task.wait(0.4) Drop.Parent = DespawnedDrops task.wait(SpawnDuration) Drop.Parent = OldParent for _, Part in pairs(Drop:GetChildren()) do if Part:IsA("BasePart") or Part:IsA("UnionOperation") then TweenService:Create(Part, TweenInfo.new(0.4), {Transparency = 0; CanCollide = true; CanTouch = true; CanQuery = true}):Play() end end Drop.CurrentHealth.Value = Drop.MaxHealth.Value end return module MainServer: ReplicatedStorage.Remotes.GiveCoins.OnServerEvent:Connect(function(Player) Player.Stats.Coins.Value += math.random(5, 10) Player.Stats.Gems.Value += math.random(0, 1) end)
Swen Frank
2022-07-19 10:10:46 +0000 UTCCould you please show how to get a Pet hatching system in the Pet simulator X Series
Kamoo
2022-07-18 20:39:23 +0000 UTC