Advertisement
ustinjamesss

undertale

Mar 15th, 2022
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.26 KB | None | 0 0
  1. --made by ustinjamesss
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local title = Instance.new("TextLabel")
  6. local JBlaster = Instance.new("TextButton")
  7. local DustInk = Instance.new("TextButton")
  8. local KingMultiverseBlade = Instance.new("TextButton")
  9. local SunBlade = Instance.new("TextButton")
  10. local close = Instance.new("TextButton")
  11. local inponsor = Instance.new("TextLabel")
  12. local openmain = Instance.new("Frame")
  13. local open = Instance.new("TextButton")
  14.  
  15. --Properties:
  16.  
  17. ScreenGui.Parent = game.CoreGui
  18.  
  19. main.Name = "main"
  20. main.Parent = ScreenGui
  21. main.BackgroundColor3 = Color3.fromRGB(56, 56, 56)
  22. main.BackgroundTransparency = 0.300
  23. main.Position = UDim2.new(0.173110798, 0, 0.523322403, 0)
  24. main.Size = UDim2.new(0, 265, 0, 208)
  25. main.active = true
  26. main.Draggable = true
  27.  
  28. title.Name = "title"
  29. title.Parent = main
  30. title.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  31. title.Size = UDim2.new(0, 265, 0, 29)
  32. title.Font = Enum.Font.SourceSans
  33. title.Text = "Undertale: Last Reset"
  34. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  35. title.TextScaled = true
  36. title.TextSize = 14.000
  37. title.TextWrapped = true
  38.  
  39. JBlaster.Name = "J Blaster"
  40. JBlaster.Parent = main
  41. JBlaster.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  42. JBlaster.Position = UDim2.new(0.0490566045, 0, 0.302884609, 0)
  43. JBlaster.Size = UDim2.new(0, 70, 0, 22)
  44. JBlaster.Font = Enum.Font.SourceSans
  45. JBlaster.Text = "J Blaster"
  46. JBlaster.TextColor3 = Color3.fromRGB(0, 0, 0)
  47. JBlaster.TextScaled = true
  48. JBlaster.TextSize = 14.000
  49. JBlaster.TextWrapped = true
  50. JBlaster.MouseButton1Down:connect(function()
  51. local args = {
  52. [1] = game:GetService("Lighting").Weapons["J BLASTERS"]
  53. }
  54.  
  55. game:GetService("Lighting").UseWeapon:FireServer(unpack(args))
  56.  
  57. end)
  58.  
  59. DustInk.Name = "Dust Ink"
  60. DustInk.Parent = main
  61. DustInk.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  62. DustInk.Position = UDim2.new(0.366037726, 0, 0.302884609, 0)
  63. DustInk.Size = UDim2.new(0, 70, 0, 22)
  64. DustInk.Font = Enum.Font.SourceSans
  65. DustInk.Text = "Dust!Ink's Brush"
  66. DustInk.TextColor3 = Color3.fromRGB(0, 0, 0)
  67. DustInk.TextScaled = true
  68. DustInk.TextSize = 14.000
  69. DustInk.TextWrapped = true
  70. DustInk.MouseButton1Down:connect(function()
  71. local args = {
  72. [1] = game:GetService("Lighting").Weapons["RealDust!Ink's Brush"]
  73. }
  74.  
  75. game:GetService("Lighting").UseWeapon:FireServer(unpack(args))
  76.  
  77. end)
  78.  
  79. KingMultiverseBlade.Name = "King Multiverse Blade"
  80. KingMultiverseBlade.Parent = main
  81. KingMultiverseBlade.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  82. KingMultiverseBlade.Position = UDim2.new(0.698113203, 0, 0.302884609, 0)
  83. KingMultiverseBlade.Size = UDim2.new(0, 70, 0, 22)
  84. KingMultiverseBlade.Font = Enum.Font.SourceSans
  85. KingMultiverseBlade.Text = "King Multiverse Blade"
  86. KingMultiverseBlade.TextColor3 = Color3.fromRGB(0, 0, 0)
  87. KingMultiverseBlade.TextScaled = true
  88. KingMultiverseBlade.TextSize = 14.000
  89. KingMultiverseBlade.TextWrapped = true
  90. KingMultiverseBlade.MouseButton1Down:connect(function()
  91. local args = {
  92. [1] = game:GetService("Lighting").Weapons["King Multiverse Sword"]
  93. }
  94.  
  95. game:GetService("Lighting").UseWeapon:FireServer(unpack(args))
  96.  
  97. end)
  98.  
  99. SunBlade.Name = "Sun Blade"
  100. SunBlade.Parent = main
  101. SunBlade.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  102. SunBlade.Position = UDim2.new(0.0490565896, 0, 0.485576928, 0)
  103. SunBlade.Size = UDim2.new(0, 70, 0, 22)
  104. SunBlade.Font = Enum.Font.SourceSans
  105. SunBlade.Text = "Sun Blade"
  106. SunBlade.TextColor3 = Color3.fromRGB(0, 0, 0)
  107. SunBlade.TextScaled = true
  108. SunBlade.TextSize = 14.000
  109. SunBlade.TextWrapped = true
  110. SunBlade.MouseButton1Down:connect(function()
  111. local args = {
  112. [1] = game:GetService("Lighting").Weapons["Sun Blade"]
  113. }
  114.  
  115. game:GetService("Lighting").UseWeapon:FireServer(unpack(args))
  116.  
  117. end)
  118.  
  119. close.Name = "close"
  120. close.Parent = main
  121. close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  122. close.Position = UDim2.new(0.920754731, 0, 0.00480769249, 0)
  123. close.Size = UDim2.new(0, 21, 0, 28)
  124. close.Font = Enum.Font.SourceSansBold
  125. close.Text = "X"
  126. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  127. close.TextScaled = true
  128. close.TextSize = 14.000
  129. close.TextWrapped = true
  130. close.MouseButton1Down:connect(function()
  131. main.Visible = false
  132. openmain.Visible = true
  133. end)
  134.  
  135. inponsor.Name = "inponsor"
  136. inponsor.Parent = main
  137. inponsor.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  138. inponsor.Position = UDim2.new(0, 0, 0.850961566, 0)
  139. inponsor.Size = UDim2.new(0, 265, 0, 29)
  140. inponsor.Font = Enum.Font.SourceSans
  141. inponsor.Text = "SUBSCRIBE TO USTINJAMESSS"
  142. inponsor.TextColor3 = Color3.fromRGB(255, 255, 255)
  143. inponsor.TextScaled = true
  144. inponsor.TextSize = 14.000
  145. inponsor.TextWrapped = true
  146.  
  147. openmain.Name = "openmain"
  148. openmain.Parent = ScreenGui
  149. openmain.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  150. openmain.Position = UDim2.new(0.0138613852, 0, 0.389986843, 0)
  151. openmain.Size = UDim2.new(0, 100, 0, 25)
  152. openmain.Active = true
  153. openmain.Draggable = true
  154.  
  155. open.Name = "open"
  156. open.Parent = openmain
  157. open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  158. open.Size = UDim2.new(0, 100, 0, 25)
  159. open.Font = Enum.Font.SourceSansBold
  160. open.Text = "Open"
  161. open.TextColor3 = Color3.fromRGB(0, 0, 0)
  162. open.TextScaled = true
  163. open.TextSize = 14.000
  164. open.TextWrapped = true
  165. open.MouseButton1Down:connect(function()
  166. openmain.Visible = false
  167. main.Visible = true
  168. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement