SHOW:
|
|
- or go back to the newest paste.
1 | --made by retrojooooono | |
2 | --It actually teleports every 2 minutes. | |
3 | wait(2) | |
4 | lp = game.Players.LocalPlayer | |
5 | char = lp.Character | |
6 | head = char.Head | |
7 | gnome = Instance.new("Part",workspace) | |
8 | gnome.Size = Vector3.new(1,2,1) | |
9 | gnome.Anchored = false | |
10 | gnome.CFrame = head.CFrame | |
11 | mesh = Instance.new("SpecialMesh",gnome) | |
12 | mesh.Scale = Vector3.new(0.2,0.2,0.2) | |
13 | mesh.MeshType = Enum.MeshType.FileMesh | |
14 | mesh.MeshId = "rbxassetid://471652548" | |
15 | mesh.TextureId = "rbxassetid://471652580" | |
16 | while true do | |
17 | - | wait(120) |
17 | + | |
18 | curposx = gnome.Position.X | |
19 | curposy = gnome.Position.Y | |
20 | curposz = gnome.Position.Z | |
21 | calcmath = math.random(1,2) | |
22 | if calcmath == 1 then | |
23 | curposx = curposx + math.random(0,240) | |
24 | else | |
25 | curposx = curposx - math.random(0,240) | |
26 | end | |
27 | calcmath = math.random(1,2) | |
28 | if calcmath == 1 then | |
29 | curposz = curposz + math.random(0,240) | |
30 | else | |
31 | curposz = curposz - math.random(0,240) | |
32 | end | |
33 | smoke = Instance.new("Smoke",gnome) | |
34 | smoke.Color = Color3.new(1,1,0) | |
35 | wait(5) | |
36 | gnome.Position = Vector3.new(curposx, curposy, curposz) | |
37 | wait(2) | |
38 | smoke:Destroy() | |
39 | end |