Plates Of Fate: Remastered Script | SNOWFLAKE TELEPORT

Created by soul ties

Features:

  • SNOWFLAKE TELEPORT
    • Click K to teleport
local initialPosition = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame

game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(KeyPressed)
 if KeyPressed == "k" then
   for i,v in pairs(workspace.GameDebris:GetChildren()) do
     if v:IsA("Part") and v.Name == "WinterBreezeSnowflake" then
       game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
       
       wait(0.4)
       
       game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = initialPosition
     end
   end
 end
end)