Answered by
4 years ago Edited 4 years ago
that is because when you teleport, you move the humanoid root part
however, the body is stuck in the floor because the position is in the middle of the root part, so when you teleport, the middle of the root part, or the center of the body, goes to the platform, causing the body to be stuck
instead, offset the teleport end location so you teleport above the pad.
01 | local service = game:GetService( "MarketplaceService" ) |
02 | local dev_product_id = 980377204 |
03 | local stage_folder = workspace:WaitForChild( "Stages" ) |
06 | if workspace:FindFirstChild( "Stages" ) then |
07 | service.ProcessReceipt = function (receiptInfo) |
09 | if receiptInfo.ProductId = = dev_product_id then |
11 | local plr = game:GetService( "Players" ):GetPlayerByUserId(receiptInfo.PlayerId) |
15 | local leaderboard = plr:FindFirstChild( "leaderstats" ) |
19 | local stage = leaderboard:FindFirstChild( "Stage" ) |
23 | if stage_folder:FindFirstChild( "Stage" .. stage.Value+ 1 ) then |
26 | plr.Character.HumanoidRootPart.CFrame = CFrame.new(stage_folder:FindFirstChild( "Stage" .. stage.Value+ 1 ).Position + Vector 3. new( 0 , 10 , 0 )) |
28 | return Enum.ProductPurchaseDecision.PurchaseGranted |
32 | return Enum.ProductPurchaseDecision.NotProcessedYet |
36 | return Enum.ProductPurchaseDecision.NotProcessedYet |
40 | return Enum.ProductPurchaseDecision.NotProcessedYet |
43 | return Enum.ProductPurchaseDecision.NotProcessedYet |
48 | print ( "Not found Stages In the Stages folder." ) |