1 | |
2 | |
3 | |
4 | |
5 | local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))() |
6 | |
7 | local Window = Library:NewWindow("CFrame") |
8 | |
9 | local Section = Window:NewSection("Copy") |
10 | |
11 | Section:CreateButton("Copy Current CFrame", function() |
12 | local player = game.Players.LocalPlayer |
13 | local character = player.Character or player.CharacterAdded:Wait() |
14 | local humanoidRootPart = character:WaitForChild("HumanoidRootPart") |
15 | local copiedCFrame = humanoidRootPart.CFrame |
16 | setclipboard(tostring(copiedCFrame)) |
17 | game:GetService("StarterGui"):SetCore("SendNotification", { |
18 | Title = "CFrame Copied!", |
19 | Text = "Copied to your clipboard.", |
20 | Duration = 1 |
21 | }) |
22 | end) |