local scriptToCopy = [[ local player = game.Players.LocalPlayer local rs = game.ReplicatedStorage local remote = rs.RE.PlaceBlock local height = 5 local delay = 0.5 local running = true while running do if player.Character and player.Character.Head then local head = player.Character.Head local pos = Vector3.new( head.Position.X, head.Position.Y + height, head.Position.Z ) remote:InvokeServer(player, pos, 360) end wait(delay) end ]] setclipboard(scriptToCopy) local warning = Instance.new("ScreenGui") warning.Name = "ClipboardWarning" local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 300, 0, 100) frame.Position = UDim2.new(0.5, -150, 0.5, -50) frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) frame.Parent = warning local text = Instance.new("TextLabel") text.Size = UDim2.new(1, 0, 1, 0) text.Text = "SCRIPT COPIED SUCCESSFULLY\nCONFIGURE AND EXECUTE" text.TextColor3 = Color3.fromRGB(255, 255, 255) text.BackgroundTransparency = 1 text.Font = Enum.Font.SourceSansBold text.TextSize = 20 text.Parent = frame warning.Parent = game.CoreGui wait(3) warning:Destroy()