local p = game.Players.LocalPlayer local cg = workspace.Map.CoinGivers local list = { cg["500"].Attachment, cg["1000"].Attachment, cg["1250"].Attachment, cg["10000"].Attachment } local g = Instance.new("ScreenGui", p.PlayerGui) g.ResetOnSpawn = false local b = Instance.new("TextButton", g) b.Size = UDim2.new(0, 220, 0, 55) b.Position = UDim2.new(0, 20, 0.5, -27) b.TextScaled = true b.BackgroundColor3 = Color3.fromRGB(30,30,30) b.TextColor3 = Color3.new(1,1,1) b.Text = "TP OFF" local on = false local i = 1 b.MouseButton1Click:Connect(function() on = not on b.Text = on and "TP ON" or "TP OFF" end) while task.wait(1) do if on then local c = p.Character if c and c:FindFirstChild("HumanoidRootPart") then c.HumanoidRootPart.CFrame = CFrame.new(list[i].WorldPosition + Vector3.new(0,3,0)) i = i % #list + 1 end end end