Moe7887

Legend Of The Falling Kingdom 2

Oct 17th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Heart = Instance.new("Frame")
  5. local Title = Instance.new("TextLabel")
  6. local Gold = Instance.new("TextButton")
  7. local Level = Instance.new("TextButton")
  8. local Wepons = Instance.new("TextButton")
  9. local Credits = Instance.new("TextLabel")
  10.  
  11. -- Properties
  12.  
  13. ScreenGui.Parent = game.CoreGui
  14.  
  15. Heart.Name = "Heart"
  16. Heart.Parent = ScreenGui
  17. Heart.BackgroundColor3 = Color3.new(0, 0, 0)
  18. Heart.BackgroundTransparency = 0.60000002384186
  19. Heart.BorderSizePixel = 0
  20. Heart.Position = UDim2.new(0.0937198102, 0, 0.275415897, 0)
  21. Heart.Size = UDim2.new(0, 517, 0, 306)
  22. Heart.Selectable = true
  23. Heart.Draggable = true
  24. Heart.Active = true
  25.  
  26. Title.Name = "Title"
  27. Title.Parent = Heart
  28. Title.BackgroundColor3 = Color3.new(0.835294, 0.835294, 0.835294)
  29. Title.BackgroundTransparency = 0.60000002384186
  30. Title.BorderSizePixel = 0
  31. Title.Size = UDim2.new(0, 517, 0, 50)
  32. Title.Font = Enum.Font.SourceSans
  33. Title.Text = "RPG Gui thanks to Dang Exploiter for helpin me out :D"
  34. Title.TextColor3 = Color3.new(0, 0, 0)
  35. Title.TextSize = 25
  36. Title.TextWrapped = true
  37.  
  38. Gold.Name = "Gold"
  39. Gold.Parent = Heart
  40. Gold.BackgroundColor3 = Color3.new(1, 1, 1)
  41. Gold.BackgroundTransparency = 0.60000002384186
  42. Gold.BorderSizePixel = 2
  43. Gold.Position = UDim2.new(0.0928433314, 0, 0.251634002, 0)
  44. Gold.Size = UDim2.new(0, 141, 0, 50)
  45. Gold.Font = Enum.Font.SourceSans
  46. Gold.Text = "Gold (stats)"
  47. Gold.TextColor3 = Color3.new(0, 0, 0)
  48. Gold.TextScaled = true
  49. Gold.TextSize = 14
  50. Gold.TextWrapped = true
  51. Gold.Parent.Gold.MouseButton1Click:connect(function()
  52. local meme = game.Players.LocalPlayer.leaderstats
  53.  
  54. game.ReplicatedStorage.Buy:FireServer("Weapon", -20000000, meme.Gold, "The Truth")
  55. end)
  56.  
  57. Level.Name = "Level"
  58. Level.Parent = Heart
  59. Level.BackgroundColor3 = Color3.new(1, 1, 1)
  60. Level.BackgroundTransparency = 0.60000002384186
  61. Level.BorderSizePixel = 2
  62. Level.Position = UDim2.new(0.274661481, 0, 0.578431427, 0)
  63. Level.Size = UDim2.new(0, 232, 0, 50)
  64. Level.Font = Enum.Font.SourceSans
  65. Level.Text = "Level up! max is 3000 or else it might kick you"
  66. Level.TextColor3 = Color3.new(0, 0, 0)
  67. Level.TextSize = 25
  68. Level.TextWrapped = true
  69. Level.Parent.Level.MouseButton1Click:connect(function()
  70. local meme = game.Players.LocalPlayer.leaderstats
  71.  
  72. game.ReplicatedStorage.Buy:FireServer("Weapon", -3000, meme.Lvl, "The Truth")
  73. end)
  74.  
  75. Wepons.Name = "Wepons"
  76. Wepons.Parent = Heart
  77. Wepons.BackgroundColor3 = Color3.new(1, 1, 1)
  78. Wepons.BackgroundTransparency = 0.60000002384186
  79. Wepons.BorderSizePixel = 2
  80. Wepons.Position = UDim2.new(0.636363626, 0, 0.251634002, 0)
  81. Wepons.Size = UDim2.new(0, 141, 0, 50)
  82. Wepons.Font = Enum.Font.SourceSans
  83. Wepons.Text = "Get all wepons!"
  84. Wepons.TextColor3 = Color3.new(0, 0, 0)
  85. Wepons.TextScaled = true
  86. Wepons.TextSize = 14
  87. Wepons.TextWrapped = true
  88. Wepons.Parent.Wepons.MouseButton1Click:connect(function()
  89. for i,v in pairs(game.ReplicatedStorage.ITEMS:GetChildren()) do
  90. game.ReplicatedStorage.Buy:FireServer("Weapon", 0, game.Players.LocalPlayer.leaderstats.Gold, v.name)
  91. end
  92. end)
  93.  
  94.  
  95. Credits.Name = "Credits"
  96. Credits.Parent = ScreenGui
  97. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  98. Credits.BackgroundTransparency = 0.60000002384186
  99. Credits.BorderSizePixel = 0
  100. Credits.Position = UDim2.new(0.230917871, 0, 0.807763398, 0)
  101. Credits.Size = UDim2.new(0, 375, 0, 18)
  102. Credits.Font = Enum.Font.SourceSans
  103. Credits.Text = "Credits to Instinct#2728 and Dang Exploiter#4831 for giving me the scripts!"
  104. Credits.TextColor3 = Color3.new(0, 0, 0)
  105. Credits.TextSize = 14
Add Comment
Please, Sign In to add comment