local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() --pls don't paste this, I have spent my time doing this, also join breadmages cause it cool https://discord.gg/JS8Ka4FBsn local window = Rayfield:CreateWindow({ Name = "Coord Finder", LoadingTitle = "Booting this thing up..", LoadingSubtitle = "By Ampere102", ConfigurationSaving = { Enabled = true, FolderName = nil, FileName = "CoordsFinderConfig" } }) local mainTab = window:CreateTab("Main", 6031302918) local function getPosition() local position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position return tostring(math.floor(position.X)) .. ", " .. tostring(math.floor(position.Y)) .. ", " .. tostring(math.floor(position.Z)) end local positionLabel = mainTab:CreateLabel("Position: " .. getPosition()) spawn(function() while task.wait() do positionLabel:Set("Position: " .. getPosition()) end end) mainTab:CreateButton({ Name = "Copy Position", Callback = function() setclipboard(tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position)) Rayfield:Notify({ Title = "Copied", Content = "Position copied to clipboard", Duration = 5, Image = 6023426945 }) end }) mainTab:CreateButton({ Name = "Generate Teleport Script", Callback = function() local position = tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position) setclipboard("game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(" .. position .. ")") Rayfield:Notify({ Title = "Copied", Content = "Teleport script copied to clipboard", Duration = 5, Image = 6023426945 }) end }) local tweenTime = 3 --default fr mainTab:CreateSlider({ Name = "Tween Time", Range = {0, 50}, Increment = 0.5, Suffix = "Seconds", CurrentValue = tweenTime, Flag = "TweenTimeSlider", Callback = function(value) tweenTime = value end }) mainTab:CreateButton({ Name = "Generate Tween Script", Callback = function() local position = tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position) setclipboard('tweenService, tweenInfo = game:GetService("TweenService"), TweenInfo.new(' .. tweenTime .. ', Enum.EasingStyle.Linear)' .. 'tweenService:Create(game:GetService("Players")["LocalPlayer"].Character.HumanoidRootPart, tweenInfo, {CFrame = CFrame.new(' .. position .. ')}):Play()') Rayfield:Notify({ Title = "Copied", Content = "Tween script copied to clipboard", Duration = 5, Image = 6023426945 }) end }) Rayfield:LoadConfiguration()