Molodejkaoff

Jojo's Really Alternate Adventure [BETA]

Jan 8th, 2020
3,406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.36 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.1
  3.  
  4. -- Instances:
  5.  
  6. local Hub = Instance.new("ScreenGui")
  7. local ArrowTP = Instance.new("Frame")
  8. local DropAndUp = Instance.new("TextButton")
  9. local Tittle = Instance.new("TextLabel")
  10. local Main = Instance.new("Frame")
  11. local TPALLARROWS = Instance.new("TextButton")
  12. local ArrowTP_2 = Instance.new("TextLabel")
  13. local Items = Instance.new("Frame")
  14. local DropAndUp3 = Instance.new("TextButton")
  15. local Tittle3 = Instance.new("TextLabel")
  16. local Main3 = Instance.new("Frame")
  17. local Yomi = Instance.new("TextButton")
  18. local Yom = Instance.new("TextLabel")
  19. local CheckSkill = Instance.new("TextLabel")
  20.  
  21. --Properties:
  22.  
  23. Hub.Name = "Hub"
  24. Hub.Parent = game.CoreGui
  25. Hub.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  26.  
  27. ArrowTP.Name = "ArrowTP"
  28. ArrowTP.Parent = Hub
  29. ArrowTP.Active = true
  30. ArrowTP.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  31. ArrowTP.BackgroundTransparency = 0.550
  32. ArrowTP.Position = UDim2.new(0.352466881, 0, 0.0923379064, 0)
  33. ArrowTP.Size = UDim2.new(0, 164, 0, 31)
  34. ArrowTP.Draggable = true
  35.  
  36. DropAndUp.Name = "DropAndUp"
  37. DropAndUp.Parent = ArrowTP
  38. DropAndUp.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  39. DropAndUp.BackgroundTransparency = 1.000
  40. DropAndUp.Position = UDim2.new(0.763829172, 0, 0, 0)
  41. DropAndUp.Size = UDim2.new(0, 38, 0, 28)
  42. DropAndUp.ZIndex = 3
  43. DropAndUp.Font = Enum.Font.Arcade
  44. DropAndUp.Text = "-"
  45. DropAndUp.TextColor3 = Color3.fromRGB(0, 0, 0)
  46. DropAndUp.TextSize = 14.000
  47. DropAndUp.MouseButton1Down:connect(function()
  48. if Main.Visible == false
  49. then
  50. Main.Visible = true
  51. DropAndUp.Text = "-"
  52. else
  53. Main.Visible = false
  54. DropAndUp.Text = "+"
  55. end
  56. end)
  57.  
  58. Tittle.Name = "Tittle"
  59. Tittle.Parent = ArrowTP
  60. Tittle.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  61. Tittle.BackgroundTransparency = 1.000
  62. Tittle.Position = UDim2.new(0, 0, -0.0645161271, 0)
  63. Tittle.Size = UDim2.new(0, 112, 0, 33)
  64. Tittle.Font = Enum.Font.Arcade
  65. Tittle.Text = "Arrow"
  66. Tittle.TextColor3 = Color3.fromRGB(0, 0, 0)
  67. Tittle.TextSize = 14.000
  68.  
  69. Main.Name = "Main"
  70. Main.Parent = ArrowTP
  71. Main.Active = true
  72. Main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  73. Main.BackgroundTransparency = 0.550
  74. Main.Position = UDim2.new(0, 0, 0.996281803, 0)
  75. Main.Size = UDim2.new(0, 164, 0, 127)
  76.  
  77. TPALLARROWS.Name = "TPALLARROWS"
  78. TPALLARROWS.Parent = Main
  79. TPALLARROWS.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  80. TPALLARROWS.BackgroundTransparency = 0.550
  81. TPALLARROWS.Position = UDim2.new(0, 0, 0.520880759, 0)
  82. TPALLARROWS.Size = UDim2.new(0, 163, 0, 60)
  83. TPALLARROWS.ZIndex = 3
  84. TPALLARROWS.Font = Enum.Font.Arcade
  85. TPALLARROWS.Text = "Teleport to arrow"
  86. TPALLARROWS.TextColor3 = Color3.fromRGB(0, 0, 0)
  87. TPALLARROWS.TextSize = 14.000
  88. TPALLARROWS.MouseButton1Down:connect(function()
  89. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Arrow.MeshPart.CFrame
  90. end)
  91.  
  92. ArrowTP_2.Name = "ArrowTP"
  93. ArrowTP_2.Parent = TPALLARROWS
  94. ArrowTP_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  95. ArrowTP_2.BackgroundTransparency = 1.000
  96. ArrowTP_2.Position = UDim2.new(0.129500151, 0, -0.704288602, 0)
  97. ArrowTP_2.Size = UDim2.new(0, 121, 0, 28)
  98. ArrowTP_2.Font = Enum.Font.Arcade
  99. ArrowTP_2.Text = "Arrow not found!"
  100. ArrowTP_2.TextColor3 = Color3.fromRGB(255, 0, 0)
  101. ArrowTP_2.TextSize = 14.000
  102.  
  103. Items.Name = "Items"
  104. Items.Parent = Hub
  105. Items.Active = true
  106. Items.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  107. Items.BackgroundTransparency = 0.550
  108. Items.Position = UDim2.new(0.14829056, 0, 0.0884086341, 0)
  109. Items.Size = UDim2.new(0, 164, 0, 31)
  110. Items.Draggable = true
  111.  
  112. DropAndUp3.Name = "DropAndUp3"
  113. DropAndUp3.Parent = Items
  114. DropAndUp3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  115. DropAndUp3.BackgroundTransparency = 1.000
  116. DropAndUp3.Position = UDim2.new(0.751634061, 0, 0, 0)
  117. DropAndUp3.Size = UDim2.new(0, 38, 0, 28)
  118. DropAndUp3.ZIndex = 3
  119. DropAndUp3.Font = Enum.Font.Arcade
  120. DropAndUp3.Text = "-"
  121. DropAndUp3.TextColor3 = Color3.fromRGB(0, 0, 0)
  122. DropAndUp3.TextSize = 14.000
  123. DropAndUp3.MouseButton1Down:connect(function()
  124. if Main3.Visible == false
  125. then
  126. Main3.Visible = true
  127. DropAndUp3.Text = "-"
  128. else
  129. Main3.Visible = false
  130. DropAndUp3.Text = "+"
  131. end
  132. end)
  133.  
  134. Tittle3.Name = "Tittle3"
  135. Tittle3.Parent = Items
  136. Tittle3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  137. Tittle3.BackgroundTransparency = 1.000
  138. Tittle3.Position = UDim2.new(0.317073166, 0, 0, 0)
  139. Tittle3.Size = UDim2.new(0, 23, 0, 28)
  140. Tittle3.Font = Enum.Font.Arcade
  141. Tittle3.Text = "Moves & Skills"
  142. Tittle3.TextColor3 = Color3.fromRGB(0, 0, 0)
  143. Tittle3.TextSize = 14.000
  144.  
  145. Main3.Name = "Main3"
  146. Main3.Parent = Items
  147. Main3.Active = true
  148. Main3.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  149. Main3.BackgroundTransparency = 0.550
  150. Main3.Position = UDim2.new(0, 0, 0.996281922, 0)
  151. Main3.Size = UDim2.new(0, 164, 0, 86)
  152.  
  153. Yomi.Name = "Yomi"
  154. Yomi.Parent = Main3
  155. Yomi.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  156. Yomi.BackgroundTransparency = 0.550
  157. Yomi.Position = UDim2.new(0.800414443, 0, 0.225716516, 0)
  158. Yomi.Size = UDim2.new(0, 22, 0, 19)
  159. Yomi.ZIndex = 3
  160. Yomi.Font = Enum.Font.Arcade
  161. Yomi.Text = ""
  162. Yomi.TextColor3 = Color3.fromRGB(0, 0, 0)
  163. Yomi.TextSize = 14.000
  164. Yomi.MouseButton1Down:connect(function()
  165. if Yomi.Text == ""
  166. then
  167. for _, k in pairs(workspace:GetChildren()) do
  168. if k:IsA("Tool") then
  169. k:FindFirstChild("Handle").CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  170. Yomi.Text = "X"
  171. CheckSkill.Text = "Done!"
  172. wait(1)
  173. Yomi.Text = ""
  174. CheckSkill.Text = "Waiting for Toggle"
  175. end
  176. end
  177. end
  178. end)
  179.  
  180. Yom.Name = "Yom"
  181. Yom.Parent = Yomi
  182. Yom.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  183. Yom.BackgroundTransparency = 1.000
  184. Yom.Position = UDim2.new(-5.52693605, 0, -0.272709548, 0)
  185. Yom.Size = UDim2.new(0, 121, 0, 28)
  186. Yom.Font = Enum.Font.Arcade
  187. Yom.Text = "TP ALL ITEMS"
  188. Yom.TextColor3 = Color3.fromRGB(0, 0, 0)
  189. Yom.TextSize = 14.000
  190.  
  191. CheckSkill.Name = "CheckSkill"
  192. CheckSkill.Parent = Main3
  193. CheckSkill.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  194. CheckSkill.BackgroundTransparency = 1.000
  195. CheckSkill.Position = UDim2.new(0.0609756112, 0, 0.65332222, 0)
  196. CheckSkill.Size = UDim2.new(0, 144, 0, 18)
  197. CheckSkill.Font = Enum.Font.Arcade
  198. CheckSkill.Text = "Waiting for Toggle"
  199. CheckSkill.TextColor3 = Color3.fromRGB(0, 0, 0)
  200. CheckSkill.TextSize = 14.000
  201. CheckSkill.TextWrapped = true
  202.  
  203. -- Scripts:
  204.  
  205. local function FUFS_fake_script() -- DropAndUp.RainbowDropAndUp
  206. local script = Instance.new('LocalScript', DropAndUp)
  207.  
  208. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  209.  
  210.  
  211.  
  212. counter = 0
  213.  
  214.  
  215.  
  216. while wait(0.1)do
  217.  
  218. script.Parent.TextColor3 = Color3.fromHSV(zigzag(counter),1,1)
  219.  
  220.  
  221.  
  222.  
  223. counter = counter + 0.01
  224. end
  225. end
  226. coroutine.wrap(FUFS_fake_script)()
  227. local function JAHLWAW_fake_script() -- ArrowTP.RainbowFirst
  228. local script = Instance.new('LocalScript', ArrowTP)
  229.  
  230. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  231.  
  232.  
  233.  
  234. counter = 0
  235.  
  236.  
  237.  
  238. while wait(0.1)do
  239.  
  240. script.Parent.BorderColor3 = Color3.fromHSV(zigzag(counter),1,1)
  241.  
  242.  
  243.  
  244.  
  245. counter = counter + 0.01
  246. end
  247. end
  248. coroutine.wrap(JAHLWAW_fake_script)()
  249. local function EVNNGC_fake_script() -- Tittle.RainbowTittle
  250. local script = Instance.new('LocalScript', Tittle)
  251.  
  252. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  253.  
  254.  
  255.  
  256. counter = 0
  257.  
  258.  
  259.  
  260. while wait(0.1)do
  261.  
  262. script.Parent.TextColor3 = Color3.fromHSV(zigzag(counter),1,1)
  263.  
  264.  
  265.  
  266.  
  267. counter = counter + 0.01
  268. end
  269. end
  270. coroutine.wrap(EVNNGC_fake_script)()
  271. local function QRJPVM_fake_script() -- Main.RainbowMain
  272. local script = Instance.new('LocalScript', Main)
  273.  
  274. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  275.  
  276.  
  277.  
  278. counter = 0
  279.  
  280.  
  281.  
  282. while wait(0.1)do
  283.  
  284. script.Parent.BorderColor3 = Color3.fromHSV(zigzag(counter),1,1)
  285.  
  286.  
  287.  
  288.  
  289. counter = counter + 0.01
  290. end
  291. end
  292. coroutine.wrap(QRJPVM_fake_script)()
  293. local function TNMVST_fake_script() -- TPALLARROWS.RainbowDropAndUp
  294. local script = Instance.new('LocalScript', TPALLARROWS)
  295.  
  296. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  297.  
  298.  
  299.  
  300. counter = 0
  301.  
  302.  
  303.  
  304. while wait(0.1)do
  305.  
  306. script.Parent.TextColor3 = Color3.fromHSV(zigzag(counter),1,1)
  307. script.Parent.BorderColor3 = Color3.fromHSV(zigzag(counter),1,1)
  308.  
  309.  
  310.  
  311. counter = counter + 0.01
  312. end
  313. end
  314. coroutine.wrap(TNMVST_fake_script)()
  315. local function DXLYSF_fake_script() -- DropAndUp3.RainbowDropAndUp
  316. local script = Instance.new('LocalScript', DropAndUp3)
  317.  
  318. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  319.  
  320.  
  321.  
  322. counter = 0
  323.  
  324.  
  325.  
  326. while wait(0.1)do
  327.  
  328. script.Parent.TextColor3 = Color3.fromHSV(zigzag(counter),1,1)
  329.  
  330.  
  331.  
  332.  
  333. counter = counter + 0.01
  334. end
  335. end
  336. coroutine.wrap(DXLYSF_fake_script)()
  337. local function GZWSHZM_fake_script() -- Items.RainbowTwo
  338. local script = Instance.new('LocalScript', Items)
  339.  
  340. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  341.  
  342.  
  343.  
  344. counter = 0
  345.  
  346.  
  347.  
  348. while wait(0.1)do
  349.  
  350. script.Parent.BorderColor3 = Color3.fromHSV(zigzag(counter),1,1)
  351.  
  352.  
  353.  
  354.  
  355. counter = counter + 0.01
  356. end
  357. end
  358. coroutine.wrap(GZWSHZM_fake_script)()
  359. local function QNHAK_fake_script() -- Tittle3.RainbowTittle
  360. local script = Instance.new('LocalScript', Tittle3)
  361.  
  362. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  363.  
  364.  
  365.  
  366. counter = 0
  367.  
  368.  
  369.  
  370. while wait(0.1)do
  371.  
  372. script.Parent.TextColor3 = Color3.fromHSV(zigzag(counter),1,1)
  373.  
  374.  
  375.  
  376.  
  377. counter = counter + 0.01
  378. end
  379. end
  380. coroutine.wrap(QNHAK_fake_script)()
  381. local function CHGGIS_fake_script() -- Main3.RainbowMain
  382. local script = Instance.new('LocalScript', Main3)
  383.  
  384. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  385.  
  386.  
  387.  
  388. counter = 0
  389.  
  390.  
  391.  
  392. while wait(0.1)do
  393.  
  394. script.Parent.BorderColor3 = Color3.fromHSV(zigzag(counter),1,1)
  395.  
  396.  
  397.  
  398.  
  399. counter = counter + 0.01
  400. end
  401. end
  402. coroutine.wrap(CHGGIS_fake_script)()
  403. local function PFND_fake_script() -- Yomi.RainbowDropAndUp
  404. local script = Instance.new('LocalScript', Yomi)
  405.  
  406. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  407.  
  408.  
  409.  
  410. counter = 0
  411.  
  412.  
  413.  
  414. while wait(0.1)do
  415.  
  416. script.Parent.TextColor3 = Color3.fromHSV(zigzag(counter),1,1)
  417. script.Parent.BorderColor3 = Color3.fromHSV(zigzag(counter),1,1)
  418.  
  419.  
  420.  
  421. counter = counter + 0.01
  422. end
  423. end
  424. coroutine.wrap(PFND_fake_script)()
  425. local function PMAN_fake_script() -- Yom.RainbowTittle
  426. local script = Instance.new('LocalScript', Yom)
  427.  
  428. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  429.  
  430.  
  431.  
  432. counter = 0
  433.  
  434.  
  435.  
  436. while wait(0.1)do
  437.  
  438. script.Parent.TextColor3 = Color3.fromHSV(zigzag(counter),1,1)
  439.  
  440.  
  441.  
  442.  
  443. counter = counter + 0.01
  444. end
  445. end
  446. coroutine.wrap(PMAN_fake_script)()
  447. local function TVWZJ_fake_script() -- CheckSkill.RainbowTittle
  448. local script = Instance.new('LocalScript', CheckSkill)
  449.  
  450. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  451.  
  452.  
  453.  
  454. counter = 0
  455.  
  456.  
  457.  
  458. while wait(0.1)do
  459.  
  460. script.Parent.TextColor3 = Color3.fromHSV(zigzag(counter),1,1)
  461.  
  462.  
  463.  
  464.  
  465. counter = counter + 0.01
  466. end
  467. end
  468. coroutine.wrap(TVWZJ_fake_script)()
  469.  
  470. while wait() do
  471. if workspace:FindFirstChild("Arrow") then
  472. ArrowTP_2.Text = "Arrow is spawned!"
  473. ArrowTP_2.TextColor3 = Color3.fromRGB(0, 255, 0)
  474. elseif not workspace:FindFirstChild("Arrow") then
  475. ArrowTP_2.Text = "Arrow not found!"
  476. ArrowTP_2.TextColor3 = Color3.fromRGB(255, 0, 0)
  477. end
  478. end
Add Comment
Please, Sign In to add comment