Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.66 KB | None | 0 0
  1. while true do
  2. local a = Instance.new("BillboardGui")
  3. local b = Instance.new("BillboardGui")
  4. local c = Instance.new("BillboardGui")
  5. local d = Instance.new("BillboardGui")
  6. local e = Instance.new("BillboardGui")
  7. local l = Instance.new("ScreenGui")
  8. for i, v in pairs(game.Workspace:GetChildren()) do
  9. if v:FindFirstChild("Arrow") then
  10. a.Parent = v.Arrow.Handle
  11. a.AlwaysOnTop = true
  12. a.Size = UDim2.new(0,50,0,50)
  13. local aa = Instance.new("TextBox")
  14. aa.BackgroundColor3 = Color3.new(255,255,0)
  15. aa.BackgroundTransparency = 0.7
  16. aa.Text = "Arrow"
  17. aa.Size = UDim2.new(1,0,1,0)
  18. aa.Parent = a
  19. local player = game.Players.LocalPlayer
  20. l.Parent = player.PlayerGui
  21. local ll = Instance.new("TextButton")
  22. ll.Parent = l
  23. ll.Size = UDim2.new(0,100,0,100)
  24. ll.Position = UDim2.new(0,0,0.5,0)
  25. ll.Text = "Teleport to arrow"
  26. ll.TextScaled = true
  27. ll.MouseButton1Click:connect(function()
  28. player.Character:MoveTo(v.Arrow.Handle.Position)
  29. end)
  30. end
  31. if v:FindFirstChild("Rokakaka") then
  32. b.Parent = v.Rokakaka.Handle
  33. b.AlwaysOnTop = true
  34. b.Size = UDim2.new(0,50,0,50)
  35. local bb = Instance.new("TextBox")
  36. bb.BackgroundColor3 = Color3.new(255,0,0)
  37. bb.BackgroundTransparency = 0.7
  38. bb.Text = "Rokakaka"
  39. bb.Size = UDim2.new(1,0,1,0)
  40. bb.Parent = b
  41. local player = game.Players.LocalPlayer
  42. l.Parent = player.PlayerGui
  43. local ll = Instance.new("TextButton")
  44. ll.Parent = l
  45. ll.Size = UDim2.new(0,100,0,100)
  46. ll.Position = UDim2.new(0,0,0.6,0)
  47. ll.Text = "Teleport to rokakaka"
  48. ll.TextScaled = true
  49. ll.MouseButton1Click:connect(function()
  50. player.Character:MoveTo(v.Rokakaka.Handle.Position)
  51. end)
  52. end
  53. if v:FindFirstChild("Mask") then
  54. c.Parent = v.Mask.Mask
  55. c.AlwaysOnTop = true
  56. c.Size = UDim2.new(0,50,0,50)
  57. local cc = Instance.new("TextBox")
  58. cc.BackgroundColor3 = Color3.new(50,50,50)
  59. cc.BackgroundTransparency = 0.7
  60. cc.Text = "Mask"
  61. cc.Size = UDim2.new(1,0,1,0)
  62. cc.Parent = c
  63. end
  64. if v:FindFirstChild("Dio's Diary") then
  65. d.Parent = v["Dio's Diary"].Handle
  66. d.AlwaysOnTop = true
  67. d.Size = UDim2.new(0,50,0,50)
  68. local dd = Instance.new("TextBox")
  69. dd.BackgroundColor3 = Color3.new(255,255,255)
  70. dd.BackgroundTransparency = 0.7
  71. dd.Text = "Dio's Diary"
  72. dd.Size = UDim2.new(1,0,1,0)
  73. dd.Parent = d
  74. local player = game.Players.LocalPlayer
  75. l.Parent = player.PlayerGui
  76. local ll = Instance.new("TextButton")
  77. ll.Parent = l
  78. ll.Size = UDim2.new(0,100,0,100)
  79. ll.Position = UDim2.new(0,0,0.7,0)
  80. ll.Text = "Teleport to diray"
  81. ll.TextScaled = true
  82. ll.MouseButton1Click:connect(function()
  83. player.Character:MoveTo(v["Dio's Diary"].Handle.Position)
  84. end)
  85. end
  86. if v:FindFirstChild("RequiemArrow") then
  87. b.Parent = v.RequiemArrow.Handle
  88. b.AlwaysOnTop = true
  89. b.Size = UDim2.new(0,50,0,50)
  90. local bb = Instance.new("TextBox")
  91. bb.BackgroundColor3 = Color3.new(255,0,0)
  92. bb.BackgroundTransparency = 0.7
  93. bb.Text = "RequiemArrow"
  94. bb.Size = UDim2.new(1,0,1,0)
  95. bb.Parent = b
  96. local player = game.Players.LocalPlayer
  97. l.Parent = player.PlayerGui
  98. local ll = Instance.new("TextButton")
  99. ll.Parent = l
  100. ll.Size = UDim2.new(0,100,0,100)
  101. ll.Position = UDim2.new(0,0,0.9,0)
  102. ll.Text = "Teleport to req arrow"
  103. ll.TextScaled = true
  104. ll.MouseButton1Click:connect(function()
  105. player.Character:MoveTo(v.RequiemArrow.Handle.Position)
  106. end)
  107. end
  108. if v:FindFirstChild("Ceasers") then
  109. e.Parent = v["Ceasers"].Part
  110. e.AlwaysOnTop = true
  111. e.Size = UDim2.new(0,50,0,50)
  112. local ee = Instance.new("TextBox")
  113. ee.BackgroundColor3 = Color3.new(0,200,255)
  114. ee.BackgroundTransparency = 0.7
  115. ee.Text = "Hamon"
  116. ee.Size = UDim2.new(1,0,1,0)
  117. ee.Parent = e
  118. end
  119. end
  120. wait(1)
  121. if a then
  122. a:Destroy()
  123. end
  124. if b then
  125. b:Destroy()
  126. end
  127. if c then
  128. c:Destroy()
  129. end
  130. if d then
  131. d:Destroy()
  132. end
  133. if e then
  134. e:Destroy()
  135. end
  136. if l then
  137. l:Destroy()
  138. end
  139. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement