Find any script for Roblox

Enter the name of the game or script.

Script – +1 Popular every second!

Thank you for using our website
Your script:

				
					local Players = game:GetService("Players")
local player = Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local hrp = character:WaitForChild("HumanoidRootPart")
local teleportPosition = Vector3.new(235, 36, 541)
while true do
    hrp.CFrame = CFrame.new(teleportPosition)
    wait(1) -- 1 second delay
end