Advertisement
Guest User

Untitled

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