Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.70 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local Colossus = Instance.new("ScreenGui")
  5. local frame = Instance.new("Frame")
  6. local open = Instance.new("TextButton")
  7. local main = Instance.new("Frame")
  8. local title = Instance.new("TextBox")
  9. local credits = Instance.new("TextBox")
  10. local inf = Instance.new("TextButton")
  11. local level = Instance.new("TextButton")
  12. local close = Instance.new("TextButton")
  13. --Properties:
  14. Colossus.Name = "Colossus"
  15. Colossus.Parent = game.CoreGui
  16. Colossus.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. frame.Name = "frame"
  19. frame.Parent = Colossus
  20. frame.BackgroundColor3 = Color3.new(1, 1, 1)
  21. frame.Position = UDim2.new(-0.000805437565, 0, 0.483229816, 0)
  22. frame.Size = UDim2.new(0, 163, 0, 26)
  23. frame.Style = Enum.FrameStyle.DropShadow
  24.  
  25. open.Name = "open"
  26. open.Parent = frame
  27. open.BackgroundColor3 = Color3.new(0, 0, 0)
  28. open.BackgroundTransparency = 0.89999997615814
  29. open.Position = UDim2.new(0.0282004923, 0, -0.234480679, 0)
  30. open.Size = UDim2.new(0, 129, 0, 16)
  31. open.Font = Enum.Font.SciFi
  32. open.Text = "Open"
  33. open.TextColor3 = Color3.new(1, 1, 1)
  34. open.TextSize = 14
  35. open.MouseButton1Down:connect(function()
  36. main.Visible = true
  37. frame.Visible = false
  38. end)
  39.  
  40. main.Name = "main"
  41. main.Parent = Colossus
  42. main.BackgroundColor3 = Color3.new(0, 0, 0)
  43. main.Position = UDim2.new(0.229405627, 0, 0.269565225, 0)
  44. main.Size = UDim2.new(0, 228, 0, 283)
  45. main.Visible = false
  46. main.Style = Enum.FrameStyle.DropShadow
  47. main.Active = true
  48. main.Draggable = false
  49.  
  50. title.Name = "title"
  51. title.Parent = main
  52. title.BackgroundColor3 = Color3.new(0, 0, 0)
  53. title.Position = UDim2.new(-0.0326254331, 0, -0.0304956343, 0)
  54. title.Size = UDim2.new(0, 227, 0, 24)
  55. title.ClearTextOnFocus = false
  56. title.Font = Enum.Font.SourceSansBold
  57. title.Text = "Colossus Legends Sim"
  58. title.TextColor3 = Color3.new(1, 1, 1)
  59. title.TextSize = 14
  60.  
  61. credits.Name = "credits"
  62. credits.Parent = main
  63. credits.BackgroundColor3 = Color3.new(0, 0, 0)
  64. credits.Position = UDim2.new(-0.0326254331, 0, 0.934168696, 0)
  65. credits.Size = UDim2.new(0, 227, 0, 24)
  66. credits.ClearTextOnFocus = false
  67. credits.Font = Enum.Font.SourceSans
  68. credits.Text = "Made by : midnight3555"
  69. credits.TextColor3 = Color3.new(1, 1, 1)
  70. credits.TextSize = 14
  71.  
  72. inf.Name = "inf"
  73. inf.Parent = main
  74. inf.BackgroundColor3 = Color3.new(0, 0, 0)
  75. inf.Position = UDim2.new(0.0367752314, 0, 0.183864832, 0)
  76. inf.Size = UDim2.new(0, 201, 0, 30)
  77. inf.Font = Enum.Font.SourceSans
  78. inf.Text = "Inf Stam/Alchemy"
  79. inf.TextColor3 = Color3.new(1, 1, 1)
  80. inf.TextSize = 14
  81. inf.MouseButton1Down:connect(function()
  82. while true do
  83.  
  84. local Event = game:GetService("ReplicatedStorage")
  85.  
  86. Event.Remotes.StaminaRegen:FireServer()
  87. Event.Remotes.AlchemyRegen:FireServer()
  88. wait(.1)
  89. end
  90. end)
  91.  
  92. level.Name = "level"
  93. level.Parent = main
  94. level.BackgroundColor3 = Color3.new(0, 0, 0)
  95. level.Position = UDim2.new(0.0236173365, 0, 0.607893109, 0)
  96. level.Size = UDim2.new(0, 201, 0, 30)
  97. level.Font = Enum.Font.SourceSans
  98. level.Text = "Skills Level"
  99. level.TextColor3 = Color3.new(1, 1, 1)
  100. level.TextSize = 14
  101. level.MouseButton1Down:connect(function()
  102. while true do
  103. local lvlup = game:GetService("ReplicatedStorage").LevelUp
  104.  
  105. lvlup.HP:InvokeServer()
  106. lvlup.Defense:InvokeServer()
  107. lvlup.Strength:InvokeServer()
  108. lvlup.Magic:InvokeServer()
  109. lvlup.Range:InvokeServer()
  110. wait(.1)
  111. end
  112. end)
  113.  
  114. close.Name = "close"
  115. close.Parent = main
  116. close.BackgroundColor3 = Color3.new(0, 0, 0)
  117. close.Position = UDim2.new(0.918002963, 0, -0.0117720244, 0)
  118. close.Size = UDim2.new(0, 15, 0, 19)
  119. close.Font = Enum.Font.SourceSans
  120. close.Text = "X"
  121. close.TextColor3 = Color3.new(1, 1, 1)
  122. close.TextSize = 14
  123. close.MouseButton1Down:connect(function()
  124. frame.Visible = true
  125. main.Visible = false
  126. end)
  127. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement