-- Farewell Infortality. -- Version: 2.82 -- Instances: local Glare = Instance.new("ScreenGui") local Main = Instance.new("Frame") local text = Instance.new("TextLabel") local unlimitedDiamons = Instance.new("TextButton") local CloseButton = Instance.new("TextButton") --Properties: Glare.Name = "Glare" Glare.Parent = game.CoreGui Main.Name = "Main" Main.Parent = Glare Main.Active = true Main.BackgroundColor3 = Color3.new(1, 1, 1) Main.Position = UDim2.new(0.328101635, 0, 0.313267827, 0) Main.Size = UDim2.new(0, 409, 0, 221) text.Name = "text" text.Parent = Main text.BackgroundColor3 = Color3.new(1, 0.333333, 0.992157) text.BackgroundTransparency = 0.5 text.Size = UDim2.new(0, 409, 0, 58) text.Font = Enum.Font.SciFi text.Text = "Royale High GUI" text.TextColor3 = Color3.new(0, 0, 0) text.TextSize = 35 unlimitedDiamons.Name = "unlimitedDiamons" unlimitedDiamons.Parent = Main unlimitedDiamons.BackgroundColor3 = Color3.new(0.447059, 0.741176, 1) unlimitedDiamons.Position = UDim2.new(0.0562347174, 0, 0.425339371, 0) unlimitedDiamons.Size = UDim2.new(0, 362, 0, 89) unlimitedDiamons.Font = Enum.Font.GothamSemibold unlimitedDiamons.Text = "Unlimited Diamonds" unlimitedDiamons.TextColor3 = Color3.new(0, 0, 0) unlimitedDiamons.TextSize = 30 unlimitedDiamons.MouseButton1Click:connect(function() local toMove = {specialdiamond = true} while wait() do for _, object in pairs(workspace:children()) do if toMove[object.Name] then object.CFrame = game.Players.LocalPlayer.Character.LowerTorso.CFrame end end end end) CloseButton.Name = "CloseButton" CloseButton.Parent = Main CloseButton.BackgroundColor3 = Color3.new(1, 0, 0.0156863) CloseButton.Position = UDim2.new(0.909535468, 0, 0.0407239869, 0) CloseButton.Size = UDim2.new(0, 29, 0, 22) CloseButton.Font = Enum.Font.Fantasy CloseButton.Text = "X" CloseButton.TextColor3 = Color3.new(0, 0, 0) CloseButton.TextSize = 30 CloseButton.Name = "CloseButton" CloseButton.Parent = Header CloseButton.BackgroundColor3 = Color3.new(0.819608, 0, 0) CloseButton.Position = UDim2.new(0.880769253, 0, 0, 0) CloseButton.Size = UDim2.new(0, 31, 0, 31) CloseButton.Font = Enum.Font.GothamBold CloseButton.Text = "X" CloseButton.TextColor3 = Color3.new(1, 1, 1) CloseButton.TextSize = 14 CloseButton.MouseButton1Down:connect(function() Glare:Destroy() end) -- Scripts: