@rana77732:

🔥♕♡⚘♡Rana♡⚘♡♕🔥
🔥♕♡⚘♡Rana♡⚘♡♕🔥
Open In TikTok:
Region: BD
Thursday 15 January 2026 05:08:24 GMT
131
10
3
1

Music

Download

Comments

user4833753274768
গেমার স্বপন :
❤️❤️❤️
2026-08-04 01:19:01
0
babo20102
☠️☠️B.A.B.O.❤️‍🩹❤️‍🩹 :
🥰🥰🥰
2026-01-16 08:38:06
2
mrsajib082
mrsajib082 :
🥰🥰🥰
2026-01-15 07:41:03
2
To see more videos from user @rana77732, please go to the Tikwm homepage.

Other Videos

I'd love to see people implement this in their games --------------------------------- Copy this into a local script in StarterCharacterScripts ---- local RunService = game:GetService(
I'd love to see people implement this in their games --------------------------------- Copy this into a local script in StarterCharacterScripts ---- local RunService = game:GetService("RunService") local Players = game:GetService("Players") local character = script.Parent local humanoidRootPart = character:WaitForChild("HumanoidRootPart") -- Variables to track the platform's state between frames local lastPlatform = nil local lastPlatformCFrame = nil -- Heartbeat runs after physics calculations, perfect for CFrame snapping RunService.Heartbeat:Connect(function(deltaTime) -- 1. Raycast down to find what the player is standing on local rayOrigin = humanoidRootPart.Position local rayDirection = Vector3.new(0, -15, 0) -- Adjust based on your character's HipHeight local raycastParams = RaycastParams.new() raycastParams.FilterDescendantsInstances = {character} raycastParams.FilterType = Enum.RaycastFilterType.Exclude local raycastResult = workspace:Raycast(rayOrigin, rayDirection, raycastParams) if raycastResult and raycastResult.Instance then local currentPlatform = raycastResult.Instance -- 2. Check if the platform is your train (using tags or names) -- We highly recommend using CollectionService to tag moving platforms if currentPlatform:HasTag("MovingPlatform") then if lastPlatform == currentPlatform then -- 3. Calculate the Delta CFrame (How much it moved/rotated) -- C1 * C0^-1 gives you the offset between the two frames local platformDeltaCFrame = currentPlatform.CFrame * lastPlatformCFrame:Inverse() print(currentPlatform.CFrame, lastPlatformCFrame:Inverse(), platformDeltaCFrame) -- 4. Apply that exact same offset to the player humanoidRootPart.CFrame = platformDeltaCFrame * humanoidRootPart.CFrame end -- Update tracking variables for the next frame lastPlatform = currentPlatform lastPlatformCFrame = currentPlatform.CFrame else -- The player is standing on normal ground lastPlatform = nil lastPlatformCFrame = nil end else -- The player is mid-air (jumping) lastPlatform = nil lastPlatformCFrame = nil end end) --------------------------------- #robloxstudio #foryoupage #gaming #gamedev

About