Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2020
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local Glare = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local text = Instance.new("TextLabel")
  7. local unlimitedDiamons = Instance.new("TextButton")
  8. local CloseButton = Instance.new("TextButton")
  9. --Properties:
  10. Glare.Name = "Glare"
  11. Glare.Parent = game.CoreGui
  12.  
  13. Main.Name = "Main"
  14. Main.Parent = Glare
  15. Main.Active = true
  16. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  17. Main.Position = UDim2.new(0.328101635, 0, 0.313267827, 0)
  18. Main.Size = UDim2.new(0, 409, 0, 221)
  19.  
  20. text.Name = "text"
  21. text.Parent = Main
  22. text.BackgroundColor3 = Color3.new(1, 0.333333, 0.992157)
  23. text.BackgroundTransparency = 0.5
  24. text.Size = UDim2.new(0, 409, 0, 58)
  25. text.Font = Enum.Font.SciFi
  26. text.Text = "Royale High GUI"
  27. text.TextColor3 = Color3.new(0, 0, 0)
  28. text.TextSize = 35
  29.  
  30. unlimitedDiamons.Name = "unlimitedDiamons"
  31. unlimitedDiamons.Parent = Main
  32. unlimitedDiamons.BackgroundColor3 = Color3.new(0.447059, 0.741176, 1)
  33. unlimitedDiamons.Position = UDim2.new(0.0562347174, 0, 0.425339371, 0)
  34. unlimitedDiamons.Size = UDim2.new(0, 362, 0, 89)
  35. unlimitedDiamons.Font = Enum.Font.GothamSemibold
  36. unlimitedDiamons.Text = "Unlimited Diamonds"
  37. unlimitedDiamons.TextColor3 = Color3.new(0, 0, 0)
  38. unlimitedDiamons.TextSize = 30
  39. unlimitedDiamons.MouseButton1Click:connect(function()
  40. local toMove = {specialdiamond = true}
  41. while wait() do
  42. for _, object in pairs(workspace:children()) do
  43. if toMove[object.Name] then
  44. object.CFrame = game.Players.LocalPlayer.Character.LowerTorso.CFrame
  45. end
  46. end
  47. end
  48. end)
  49.  
  50. CloseButton.Name = "CloseButton"
  51. CloseButton.Parent = Main
  52. CloseButton.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  53. CloseButton.Position = UDim2.new(0.909535468, 0, 0.0407239869, 0)
  54. CloseButton.Size = UDim2.new(0, 29, 0, 22)
  55. CloseButton.Font = Enum.Font.Fantasy
  56. CloseButton.Text = "X"
  57. CloseButton.TextColor3 = Color3.new(0, 0, 0)
  58. CloseButton.TextSize = 30
  59. CloseButton.Name = "CloseButton"
  60. CloseButton.Parent = Header
  61. CloseButton.BackgroundColor3 = Color3.new(0.819608, 0, 0)
  62. CloseButton.Position = UDim2.new(0.880769253, 0, 0, 0)
  63. CloseButton.Size = UDim2.new(0, 31, 0, 31)
  64. CloseButton.Font = Enum.Font.GothamBold
  65. CloseButton.Text = "X"
  66. CloseButton.TextColor3 = Color3.new(1, 1, 1)
  67. CloseButton.TextSize = 14
  68.  
  69. CloseButton.MouseButton1Down:connect(function()
  70. Glare:Destroy()
  71. end)
  72. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement