Advertisement
filipaopastebins2134

TTG Jump Jousts (Arcade mode)

Jul 16th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.71 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local TeenTitansGOJumpJoustsGUI = Instance.new("ScreenGui")
  5. local HealthFrame = Instance.new("Frame")
  6. local HealthBar = Instance.new("Frame")
  7. local ImageLabel = Instance.new("ImageLabel")
  8. local Name = Instance.new("TextLabel")
  9. local Plr1 = Instance.new("Frame")
  10. local ImageLabel_2 = Instance.new("ImageLabel")
  11. local Frame = Instance.new("Frame")
  12. local TextLabel = Instance.new("TextLabel")
  13. --Properties:
  14. TeenTitansGOJumpJoustsGUI.Name = "Teen Titans GO! Jump Jousts GUI"
  15. TeenTitansGOJumpJoustsGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16.  
  17. HealthFrame.Name = "HealthFrame"
  18. HealthFrame.Parent = TeenTitansGOJumpJoustsGUI
  19. HealthFrame.BackgroundColor3 = Color3.new(0.333333, 0, 0.498039)
  20. HealthFrame.BorderColor3 = Color3.new(0.333333, 0, 0.498039)
  21. HealthFrame.BorderSizePixel = 0
  22. HealthFrame.Position = UDim2.new(0.101879053, 0, 0.0802275911, 0)
  23. HealthFrame.Size = UDim2.new(0, 389, 0, 37)
  24.  
  25. HealthBar.Name = "HealthBar"
  26. HealthBar.Parent = HealthFrame
  27. HealthBar.BackgroundColor3 = Color3.new(0, 1, 0)
  28. HealthBar.BorderSizePixel = 0
  29. HealthBar.Position = UDim2.new(-0.00257069408, 0, 0, 0)
  30. HealthBar.Size = UDim2.new(0, 389, 0, 37)
  31.  
  32. ImageLabel.Parent = HealthFrame
  33. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  34. ImageLabel.BackgroundTransparency = 100
  35. ImageLabel.Position = UDim2.new(-0.0441825353, 0, -0.153295994, 0)
  36. ImageLabel.Size = UDim2.new(0, 423, 0, 48)
  37. ImageLabel.Image = "rbxassetid://3421766825"
  38.  
  39. Name.Name = "Name"
  40. Name.Parent = HealthFrame
  41. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  42. Name.BackgroundTransparency = 1
  43. Name.BorderSizePixel = 0
  44. Name.Position = UDim2.new(0, 0, 0, -34)
  45. Name.Size = UDim2.new(0, 208, 0, 29)
  46. Name.Font = Enum.Font.SourceSans
  47. Name.Text = "Player Name"
  48. Name.TextColor3 = Color3.new(1, 0, 1)
  49. Name.TextScaled = true
  50. Name.TextSize = 14
  51. Name.TextStrokeColor3 = Color3.new(1, 0, 0)
  52. Name.TextStrokeTransparency = 0
  53. Name.TextWrapped = true
  54.  
  55. Plr1.Name = "Plr1"
  56. Plr1.Parent = TeenTitansGOJumpJoustsGUI
  57. Plr1.BackgroundColor3 = Color3.new(0.666667, 0.666667, 1)
  58. Plr1.BorderColor3 = Color3.new(0, 0, 0)
  59. Plr1.BorderSizePixel = 3
  60. Plr1.Position = UDim2.new(0.00746965455, 0, 0.0194003601, 0)
  61. Plr1.Size = UDim2.new(0, 100, 0, 100)
  62.  
  63. ImageLabel_2.Parent = Plr1
  64. ImageLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  65. ImageLabel_2.BackgroundTransparency = 1
  66. ImageLabel_2.BorderSizePixel = 0
  67. ImageLabel_2.Position = UDim2.new(-0.00686279312, 0, 0.110617064, 0)
  68. ImageLabel_2.Size = UDim2.new(0, 100, 0, 88)
  69. ImageLabel_2.ZIndex = 2
  70. ImageLabel_2.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&userId=1"
  71. ImageLabel_2.ScaleType = Enum.ScaleType.Crop
  72.  
  73. Frame.Parent = TeenTitansGOJumpJoustsGUI
  74. Frame.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  75. Frame.BackgroundTransparency = 0.40000000596046
  76. Frame.Size = UDim2.new(1, 0, 1, 0)
  77. Frame.Visible = false
  78.  
  79. TextLabel.Parent = Frame
  80. TextLabel.AnchorPoint = Vector2.new(0.5, 0.5)
  81. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  82. TextLabel.BackgroundTransparency = 1
  83. TextLabel.Position = UDim2.new(0.5, 0, 0.5, 0)
  84. TextLabel.Size = UDim2.new(1, 0, 0.200000003, 0)
  85. TextLabel.Font = Enum.Font.SourceSansBold
  86. TextLabel.Text = "CPU Wins!"
  87. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  88. TextLabel.TextScaled = true
  89. TextLabel.TextSize = 14
  90. TextLabel.TextStrokeTransparency = 0
  91. TextLabel.TextWrapped = true
  92. -- Scripts:
  93. function SCRIPT_CKXY72_FAKESCRIPT() -- HealthBar.LocalScript
  94. local script = Instance.new('LocalScript')
  95. script.Parent = HealthBar
  96. wait(.1)
  97. while true do
  98. hp = game.Players.LocalPlayer.Character.Humanoid.Health/100
  99. script.Parent:TweenSize(UDim2.new(hp,0,1,0),Enum.EasingDirection.Out,Enum.EasingStyle.Quad,0.15)
  100. wait(.2)
  101. end
  102.  
  103. end
  104. coroutine.resume(coroutine.create(SCRIPT_CKXY72_FAKESCRIPT))
  105. function SCRIPT_UWWR84_FAKESCRIPT() -- Name.LocalScript
  106. local script = Instance.new('LocalScript')
  107. script.Parent = Name
  108. script.Parent.Text = game.Players.LocalPlayer.Name
  109.  
  110. end
  111. coroutine.resume(coroutine.create(SCRIPT_UWWR84_FAKESCRIPT))
  112. function SCRIPT_CNIU71_FAKESCRIPT() -- ImageLabel_2.LocalScript
  113. local script = Instance.new('LocalScript')
  114. script.Parent = ImageLabel_2
  115. script.Parent.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&userId=" .. game.Players.LocalPlayer.UserId
  116.  
  117. end
  118. coroutine.resume(coroutine.create(SCRIPT_CNIU71_FAKESCRIPT))
  119. function SCRIPT_LGPK82_FAKESCRIPT() -- TeenTitansGOJumpJoustsGUI.LocalScript
  120. local script = Instance.new('LocalScript')
  121. script.Parent = TeenTitansGOJumpJoustsGUI
  122. game.Players.LocalPlayer.Character:WaitForChild('Humanoid').Died:connect(function()
  123. script.Parent.Frame.Visible = true
  124. end)
  125.  
  126.  
  127.  
  128.  
  129.  
  130. end
  131. coroutine.resume(coroutine.create(SCRIPT_LGPK82_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement