Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --made by retrojooooono
- --It actually teleports every 2 minutes.
- wait(2)
- lp = game.Players.LocalPlayer
- char = lp.Character
- head = char.Head
- gnome = Instance.new("Part",workspace)
- gnome.Size = Vector3.new(1,2,1)
- gnome.Anchored = false
- gnome.CFrame = head.CFrame
- mesh = Instance.new("SpecialMesh",gnome)
- mesh.Scale = Vector3.new(0.2,0.2,0.2)
- mesh.MeshType = Enum.MeshType.FileMesh
- mesh.MeshId = "rbxassetid://471652548"
- mesh.TextureId = "rbxassetid://471652580"
- while true do
- wait(5)
- curposx = gnome.Position.X
- curposy = gnome.Position.Y
- curposz = gnome.Position.Z
- calcmath = math.random(1,2)
- if calcmath == 1 then
- curposx = curposx + math.random(0,240)
- else
- curposx = curposx - math.random(0,240)
- end
- calcmath = math.random(1,2)
- if calcmath == 1 then
- curposz = curposz + math.random(0,240)
- else
- curposz = curposz - math.random(0,240)
- end
- smoke = Instance.new("Smoke",gnome)
- smoke.Color = Color3.new(1,1,0)
- wait(5)
- gnome.Position = Vector3.new(curposx, curposy, curposz)
- wait(2)
- smoke:Destroy()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement