Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 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.Transparency = 1
  28. ll.MouseButton1Click:connect(function()
  29. player.Character:MoveTo(v.Arrow.Handle.Position)
  30. end)
  31. end
  32. if v:FindFirstChild("Rokakaka") then
  33. b.Parent = v.Rokakaka.Handle
  34. b.AlwaysOnTop = true
  35. b.Size = UDim2.new(0,50,0,50)
  36. local bb = Instance.new("TextBox")
  37. bb.BackgroundColor3 = Color3.new(255,0,0)
  38. bb.BackgroundTransparency = 0.7
  39. bb.Text = "Rokakaka"
  40. bb.Size = UDim2.new(1,0,1,0)
  41. bb.Parent = b
  42. local player = game.Players.LocalPlayer
  43. l.Parent = player.PlayerGui
  44. local ll = Instance.new("TextButton")
  45. ll.Parent = l
  46. ll.Size = UDim2.new(0,100,0,100)
  47. ll.Position = UDim2.new(0,0,0.6,0)
  48. ll.Text = "Teleport to rokakaka"
  49. ll.TextScaled = true
  50. ll.Transparency = 1
  51. ll.MouseButton1Click:connect(function()
  52. player.Character:MoveTo(v.Rokakaka.Handle.Position)
  53. end)
  54. end
  55. if v:FindFirstChild("ReqArrow") then
  56. c.Parent = v.ReqArrow.Handle
  57. c.AlwaysOnTop = true
  58. c.Size = UDim2.new(0,50,0,50)
  59. local cc = Instance.new("TextBox")
  60. cc.BackgroundColor3 = Color3.new(50,50,50)
  61. cc.BackgroundTransparency = 0.7
  62. cc.Text = "Requiem Arrow"
  63. cc.Size = UDim2.new(1,0,1,0)
  64. cc.Parent = c
  65. end
  66. if v:FindFirstChild("Dio's Diary") then
  67. d.Parent = v["Dio's Diary"].Handle
  68. d.AlwaysOnTop = true
  69. d.Size = UDim2.new(0,50,0,50)
  70. local dd = Instance.new("TextBox")
  71. dd.BackgroundColor3 = Color3.new(255,255,255)
  72. dd.BackgroundTransparency = 0.7
  73. dd.Text = "Dio's Diary"
  74. dd.Size = UDim2.new(1,0,1,0)
  75. dd.Parent = d
  76. local player = game.Players.LocalPlayer
  77. l.Parent = player.PlayerGui
  78. local ll = Instance.new("TextButton")
  79. ll.Parent = l
  80. ll.Size = UDim2.new(0,100,0,100)
  81. ll.Position = UDim2.new(0,0,0.7,0)
  82. ll.Text = "Teleport to diray"
  83. ll.TextScaled = true
  84. ll.Transparency = 1
  85. ll.MouseButton1Click:connect(function()
  86. player.Character:MoveTo(v["Dio's Diary"].Handle.Position)
  87. end)
  88. end
  89. if v:FindFirstChild("Mask") then
  90. c.Parent = v.Mask.Mask
  91. c.AlwaysOnTop = true
  92. c.Size = UDim2.new(0,50,0,50)
  93. local cc = Instance.new("TextBox")
  94. cc.BackgroundColor3 = Color3.new(50,50,50)
  95. cc.BackgroundTransparency = 0.7
  96. cc.Text = "Mask"
  97. cc.Size = UDim2.new(1,0,1,0)
  98. cc.Parent = c
  99. end
  100. if v:FindFirstChild("SpookyArrow") then
  101. e.Parent = v["SpookyArrow"].Handle
  102. e.AlwaysOnTop = true
  103. e.Size = UDim2.new(0,50,0,50)
  104. local ee = Instance.new("TextBox")
  105. ee.BackgroundColor3 = Color3.new(0,200,255)
  106. ee.BackgroundTransparency = 0.7
  107. ee.Text = "Spooky Arrow"
  108. ee.Size = UDim2.new(1,0,1,0)
  109. ee.Parent = e
  110. end
  111. if v:FindFirstChild("Ceasers") then
  112. e.Parent = v["Ceasers"].Part
  113. e.AlwaysOnTop = true
  114. e.Size = UDim2.new(0,50,0,50)
  115. local ee = Instance.new("TextBox")
  116. ee.BackgroundColor3 = Color3.new(0,200,255)
  117. ee.BackgroundTransparency = 0.7
  118. ee.Text = "Hamon"
  119. ee.Size = UDim2.new(1,0,1,0)
  120. ee.Parent = e
  121. end
  122. end
  123. wait(1)
  124. if a then
  125. a:Destroy()
  126. end
  127. if b then
  128. b:Destroy()
  129. end
  130. if c then
  131. c:Destroy()
  132. end
  133. if d then
  134. d:Destroy()
  135. end
  136. if e then
  137. e:Destroy()
  138. end
  139. if l then
  140. l:Destroy()
  141. end
  142. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement