SHOW:
|
|
- or go back to the newest paste.
| 1 | - | print("Seb's Require Script Gui Loaded")
|
| 1 | + | print("Seb's Require Script Gui V2 Loaded")
|
| 2 | ||
| 3 | function rgb(RED,GREEN,BLUE) | |
| 4 | local Count = 1 / 255 | |
| 5 | --Red Count | |
| 6 | - | owner.PlayerGui.ChildRemoved:Connect(function(go) |
| 6 | + | local red = Count * RED |
| 7 | - | if go.Name == ScreenGui.Name then |
| 7 | + | --Green Count |
| 8 | - | gui(plr) |
| 8 | + | local green = Count * GREEN |
| 9 | - | end |
| 9 | + | --Blue Count |
| 10 | local blue = Count * BLUE | |
| 11 | - | plr.CharacterAdded:Connect(function(nc) |
| 11 | + | --Give Color3 |
| 12 | - | for i,gUi in pairs(plr.PlayerGui:GetChildren()) do |
| 12 | + | local FColor = Color3.new(red,green,blue) |
| 13 | - | if gUi.Name == ScreenGui.Name then |
| 13 | + | return FColor |
| 14 | - | local a = 1 |
| 14 | + | |
| 15 | - | else |
| 15 | + | |
| 16 | - | gUi:Remove() |
| 16 | + | |
| 17 | - | end |
| 17 | + | |
| 18 | - | end |
| 18 | + | |
| 19 | ScreenGui.Name = "Script Run Gui" | |
| 20 | - | |
| 20 | + | ScreenGui.ResetOnSpawn = false |
| 21 | ||
| 22 | - | ScriptsFrame.BackgroundColor3 = Color3.new(10,10,10) |
| 22 | + | |
| 23 | - | ScriptsFrame.BorderColor3 = Color3.new(0,0,0) |
| 23 | + | ScriptsFrame.BackgroundColor3 = rgb(15, 111, 200) |
| 24 | ScriptsFrame.BorderColor3 = rgb(10, 220, 230) | |
| 25 | ScriptsFrame.Name = "ScriptsFrame" | |
| 26 | ScriptsFrame.Position = UDim2.new(1.4,0,-1.4,0) | |
| 27 | ScriptsFrame.Size = UDim2.new(0.4,0,0.4,0) | |
| 28 | local open = TweenService:Create(ScriptsFrame, TweenInfo.new(0.5,Enum.EasingStyle.Linear,Enum.EasingDirection.Out,0,false,0), {Position = UDim2.new(0.3,0,0.3,0)})
| |
| 29 | - | |
| 29 | + | |
| 30 | ||
| 31 | - | OpenGuiButton.BackgroundColor3 = Color3.new(0,0,0) |
| 31 | + | |
| 32 | - | OpenGuiButton.BorderColor3 = Color3.new(0,0,0) |
| 32 | + | OpenGuiButton.BackgroundColor3 = rgb(15, 60, 200) |
| 33 | OpenGuiButton.BorderColor3 = rgb(10, 220, 230) | |
| 34 | OpenGuiButton.Name = "OpenGuiButton" | |
| 35 | OpenGuiButton.Position = UDim2.new(1,-150,1,-90) | |
| 36 | OpenGuiButton.Size = UDim2.new(0,150,0,45) | |
| 37 | OpenGuiButton.Font = "SourceSansBold" | |
| 38 | OpenGuiButton.FontSize = "Size32" | |
| 39 | - | OpenGuiButton.TextColor3 = Color3.new(255,255,255) |
| 39 | + | |
| 40 | OpenGuiButton.TextColor3 = rgb(10, 220, 230) | |
| 41 | local openBool = false | |
| 42 | - | if openBool == false then |
| 42 | + | |
| 43 | - | open:Play() |
| 43 | + | if openBool == false then |
| 44 | - | openBool = true |
| 44 | + | open:Play() |
| 45 | - | else |
| 45 | + | openBool = true |
| 46 | - | close:Play() |
| 46 | + | else |
| 47 | - | openBool = false |
| 47 | + | close:Play() |
| 48 | - | end |
| 48 | + | openBool = false |
| 49 | end | |
| 50 | - | |
| 50 | + | |
| 51 | ||
| 52 | - | Title.BackgroundColor3 = Color3.new(255,255,255) |
| 52 | + | |
| 53 | - | Title.BorderColor3 = Color3.new(255,255,255) |
| 53 | + | Title.BackgroundColor3 = rgb(15, 111, 200) |
| 54 | Title.BorderColor3 = rgb(10, 220, 230) | |
| 55 | Title.Name = "Title" | |
| 56 | Title.Position = UDim2.new(0.5,0,0.075,0) | |
| 57 | Title.Size = UDim2.new(0,1,0,0.05) | |
| 58 | Title.Font = "SourceSansBold" | |
| 59 | - | Title.Text = "Seb's Require Script Gui" |
| 59 | + | |
| 60 | - | Title.TextColor3 = Color3.new(0,0,0) |
| 60 | + | Title.Text = "Seb's Require Script Gui V2" |
| 61 | - | |
| 61 | + | Title.TextColor3 = rgb(10, 220, 230) |
| 62 | ||
| 63 | - | |
| 63 | + | |
| 64 | - | local ResetButton = Instance.new("TextButton",ScriptsFrame)
|
| 64 | + | |
| 65 | - | ResetButton.BackgroundColor3 = Color3.new(0,0,0) |
| 65 | + | --local ResetButton = Instance.new("TextButton",ScriptsFrame)
|
| 66 | - | ResetButton.BorderColor3 = Color3.new(0,0,0) |
| 66 | + | --ResetButton.BackgroundColor3 = rgb(15, 60, 200) |
| 67 | - | ResetButton.Name = "ResetButton" |
| 67 | + | --ResetButton.BorderColor3 = rgb(10, 220, 230) |
| 68 | - | ResetButton.Position = UDim2.new(0,0,0.0,0) |
| 68 | + | --ResetButton.Name = "ResetButton" |
| 69 | - | ResetButton.Size = UDim2.new(0.20,0,0.15,0) |
| 69 | + | --ResetButton.Position = UDim2.new(0,0,0.0,0) |
| 70 | - | ResetButton.Font = "SourceSansBold" |
| 70 | + | --ResetButton.Size = UDim2.new(0.20,0,0.15,0) |
| 71 | - | ResetButton.FontSize = "Size32" |
| 71 | + | --ResetButton.Font = "SourceSansBold" |
| 72 | - | ResetButton.Text = "Reset" |
| 72 | + | --ResetButton.FontSize = "Size32" |
| 73 | - | ResetButton.TextColor3 = Color3.new(255,255,255) |
| 73 | + | --ResetButton.Text = "Reset" |
| 74 | - | ResetButton.MouseButton1Down:connect(function() |
| 74 | + | --ResetButton.TextColor3 = rgb(10, 220, 230) |
| 75 | - | plr:LoadCharacter() |
| 75 | + | --ResetButton.MouseButton1Down:connect(function() |
| 76 | -- plr.Character = nil | |
| 77 | - | |
| 77 | + | -- wait(1) |
| 78 | -- plr:LoadCharacter() | |
| 79 | - | |
| 79 | + | --end) |
| 80 | ||
| 81 | - | Script1.BackgroundColor3 = Color3.new(0,0,0) |
| 81 | + | |
| 82 | - | Script1.BorderColor3 = Color3.new(0,0,0) |
| 82 | + | |
| 83 | local Script1 = Instance.new("TextButton",ScriptsFrame)
| |
| 84 | Script1.BackgroundColor3 = rgb(15, 60, 200) | |
| 85 | Script1.BorderColor3 = rgb(10, 220, 230) | |
| 86 | Script1.Name = "Script1" | |
| 87 | Script1.Position = UDim2.new(0.01,0,0.16,0) | |
| 88 | Script1.Size = UDim2.new(0.20,0,0.15,0) | |
| 89 | - | Script1.TextColor3 = Color3.new(255,255,255) |
| 89 | + | |
| 90 | Script1.FontSize = "Size32" | |
| 91 | - | require(3306802406).Player(plr.Name) |
| 91 | + | |
| 92 | Script1.TextColor3 = rgb(10, 220, 230) | |
| 93 | - | |
| 93 | + | |
| 94 | require(3306802406).Player(plr.Name) | |
| 95 | - | Script2.BackgroundColor3 = Color3.new(0,0,0) |
| 95 | + | |
| 96 | - | Script2.BorderColor3 = Color3.new(0,0,0) |
| 96 | + | |
| 97 | local Script2 = Instance.new("TextButton",ScriptsFrame)
| |
| 98 | Script2.BackgroundColor3 = rgb(15, 60, 200) | |
| 99 | Script2.BorderColor3 = rgb(10, 220, 230) | |
| 100 | Script2.Name = "Script2" | |
| 101 | Script2.Position = UDim2.new(0.25,0,0.16,0) | |
| 102 | Script2.Size = UDim2.new(0.20,0,0.15,0) | |
| 103 | - | Script2.TextColor3 = Color3.new(255,255,255) |
| 103 | + | |
| 104 | Script2.FontSize = "Size32" | |
| 105 | - | require(2630670143).load(plr.Name) |
| 105 | + | |
| 106 | Script2.TextColor3 = rgb(10, 220, 230) | |
| 107 | - | |
| 107 | + | |
| 108 | require(2630670143).load(plr.Name) | |
| 109 | - | Script3.BackgroundColor3 = Color3.new(0,0,0) |
| 109 | + | |
| 110 | - | Script3.BorderColor3 = Color3.new(0,0,0) |
| 110 | + | |
| 111 | local Script3 = Instance.new("TextButton",ScriptsFrame)
| |
| 112 | Script3.BackgroundColor3 = rgb(15, 60, 200) | |
| 113 | Script3.BorderColor3 = rgb(10, 220, 230) | |
| 114 | Script3.Name = "Script3" | |
| 115 | Script3.Position = UDim2.new(0.55,0,0.16,0) | |
| 116 | Script3.Size = UDim2.new(0.20,0,0.15,0) | |
| 117 | - | Script3.TextColor3 = Color3.new(255,255,255) |
| 117 | + | |
| 118 | Script3.FontSize = "Size18" | |
| 119 | - | require(2632963364).ug(plr.Name) |
| 119 | + | |
| 120 | Script3.TextColor3 = rgb(10, 220, 230) | |
| 121 | - | |
| 121 | + | |
| 122 | require(2632963364).ug(plr.Name) | |
| 123 | - | Script4.BackgroundColor3 = Color3.new(0,0,0) |
| 123 | + | |
| 124 | - | Script4.BorderColor3 = Color3.new(0,0,0) |
| 124 | + | |
| 125 | local Script4 = Instance.new("TextButton",ScriptsFrame)
| |
| 126 | Script4.BackgroundColor3 = rgb(15, 60, 200) | |
| 127 | Script4.BorderColor3 = rgb(10, 220, 230) | |
| 128 | Script4.Name = "Script4" | |
| 129 | Script4.Position = UDim2.new(0.79,0,0.16,0) | |
| 130 | Script4.Size = UDim2.new(0.20,0,0.15,0) | |
| 131 | - | Script4.TextColor3 = Color3.new(255,255,255) |
| 131 | + | |
| 132 | Script4.FontSize = "Size32" | |
| 133 | - | require(3308106266).eggdog(plr.Name) |
| 133 | + | |
| 134 | Script4.TextColor3 = rgb(10, 220, 230) | |
| 135 | - | |
| 135 | + | |
| 136 | require(3308106266).eggdog(plr.Name) | |
| 137 | - | Script5.BackgroundColor3 = Color3.new(0,0,0) |
| 137 | + | |
| 138 | - | Script5.BorderColor3 = Color3.new(0,0,0) |
| 138 | + | |
| 139 | local Script5 = Instance.new("TextButton",ScriptsFrame)
| |
| 140 | Script5.BackgroundColor3 = rgb(15, 60, 200) | |
| 141 | Script5.BorderColor3 = rgb(10, 220, 230) | |
| 142 | Script5.Name = "Script5" | |
| 143 | Script5.Position = UDim2.new(0.01,0,0.36,0) | |
| 144 | Script5.Size = UDim2.new(0.20,0,0.15,0) | |
| 145 | - | Script5.TextColor3 = Color3.new(255,255,255) |
| 145 | + | |
| 146 | Script5.FontSize = "Size28" | |
| 147 | - | require(2560679631).ang(plr.Name) |
| 147 | + | |
| 148 | Script5.TextColor3 = rgb(10, 220, 230) | |
| 149 | - | |
| 149 | + | |
| 150 | require(2560679631).ang(plr.Name) | |
| 151 | - | Script6.BackgroundColor3 = Color3.new(0,0,0) |
| 151 | + | |
| 152 | - | Script6.BorderColor3 = Color3.new(0,0,0) |
| 152 | + | |
| 153 | local Script6 = Instance.new("TextButton",ScriptsFrame)
| |
| 154 | Script6.BackgroundColor3 = rgb(15, 60, 200) | |
| 155 | Script6.BorderColor3 = rgb(10, 220, 230) | |
| 156 | Script6.Name = "Script6" | |
| 157 | Script6.Position = UDim2.new(0.25,0,0.36,0) | |
| 158 | Script6.Size = UDim2.new(0.20,0,0.15,0) | |
| 159 | - | Script6.TextColor3 = Color3.new(255,255,255) |
| 159 | + | |
| 160 | Script6.FontSize = "Size32" | |
| 161 | - | require(2605260171).load(plr.Name) |
| 161 | + | |
| 162 | Script6.TextColor3 = rgb(10, 220, 230) | |
| 163 | - | |
| 163 | + | |
| 164 | require(2605260171).load(plr.Name) | |
| 165 | - | Script7.BackgroundColor3 = Color3.new(0,0,0) |
| 165 | + | |
| 166 | - | Script7.BorderColor3 = Color3.new(0,0,0) |
| 166 | + | |
| 167 | local Script7 = Instance.new("TextButton",ScriptsFrame)
| |
| 168 | Script7.BackgroundColor3 = rgb(15, 60, 200) | |
| 169 | Script7.BorderColor3 = rgb(10, 220, 230) | |
| 170 | Script7.Name = "Script7" | |
| 171 | Script7.Position = UDim2.new(0.55,0,0.36,0) | |
| 172 | Script7.Size = UDim2.new(0.20,0,0.15,0) | |
| 173 | - | Script7.TextColor3 = Color3.new(255,255,255) |
| 173 | + | |
| 174 | Script7.FontSize = "Size32" | |
| 175 | - | require(2595582545).mbye(plr.Name) |
| 175 | + | |
| 176 | Script7.TextColor3 = rgb(10, 220, 230) | |
| 177 | - | |
| 177 | + | |
| 178 | require(2595582545).mbye(plr.Name) | |
| 179 | - | Script8.BackgroundColor3 = Color3.new(0,0,0) |
| 179 | + | |
| 180 | - | Script8.BorderColor3 = Color3.new(0,0,0) |
| 180 | + | |
| 181 | local Script8 = Instance.new("TextButton",ScriptsFrame)
| |
| 182 | Script8.BackgroundColor3 = rgb(15, 60, 200) | |
| 183 | Script8.BorderColor3 = rgb(10, 220, 230) | |
| 184 | Script8.Name = "Script4" | |
| 185 | Script8.Position = UDim2.new(0.79,0,0.36,0) | |
| 186 | Script8.Size = UDim2.new(0.20,0,0.15,0) | |
| 187 | - | Script8.TextColor3 = Color3.new(255,255,255) |
| 187 | + | |
| 188 | Script8.FontSize = "Size18" | |
| 189 | - | require(3004985656).server(plr.Name) |
| 189 | + | |
| 190 | Script8.TextColor3 = rgb(10, 220, 230) | |
| 191 | - | |
| 191 | + | |
| 192 | require(3004985656).server(plr.Name) | |
| 193 | - | Script9.BackgroundColor3 = Color3.new(0,0,0) |
| 193 | + | |
| 194 | - | Script9.BorderColor3 = Color3.new(0,0,0) |
| 194 | + | |
| 195 | local Script9 = Instance.new("TextButton",ScriptsFrame)
| |
| 196 | Script9.BackgroundColor3 = rgb(15, 60, 200) | |
| 197 | Script9.BorderColor3 = rgb(10, 220, 230) | |
| 198 | Script9.Name = "Script9" | |
| 199 | Script9.Position = UDim2.new(0.01,0,0.56,0) | |
| 200 | Script9.Size = UDim2.new(0.20,0,0.15,0) | |
| 201 | - | Script9.TextColor3 = Color3.new(255,255,255) |
| 201 | + | |
| 202 | Script9.FontSize = "Size32" | |
| 203 | - | require(2918747265).load(plr.Name) |
| 203 | + | |
| 204 | Script9.TextColor3 = rgb(10, 220, 230) | |
| 205 | - | |
| 205 | + | |
| 206 | require(2918747265).load(plr.Name) | |
| 207 | - | Script10.BackgroundColor3 = Color3.new(0,0,0) |
| 207 | + | |
| 208 | - | Script10.BorderColor3 = Color3.new(0,0,0) |
| 208 | + | |
| 209 | local Script10 = Instance.new("TextButton",ScriptsFrame)
| |
| 210 | Script10.BackgroundColor3 = rgb(15, 60, 200) | |
| 211 | Script10.BorderColor3 = rgb(10, 220, 230) | |
| 212 | Script10.Name = "Script10" | |
| 213 | Script10.Position = UDim2.new(0.25,0,0.56,0) | |
| 214 | Script10.Size = UDim2.new(0.20,0,0.15,0) | |
| 215 | - | Script10.TextColor3 = Color3.new(255,255,255) |
| 215 | + | |
| 216 | Script10.FontSize = "Size18" | |
| 217 | - | require(2930987220).load(plr.Name) |
| 217 | + | |
| 218 | Script10.TextColor3 = rgb(10, 220, 230) | |
| 219 | - | |
| 219 | + | |
| 220 | require(2930987220).load(plr.Name) | |
| 221 | - | Script11.BackgroundColor3 = Color3.new(0,0,0) |
| 221 | + | |
| 222 | - | Script11.BorderColor3 = Color3.new(0,0,0) |
| 222 | + | |
| 223 | local Script11 = Instance.new("TextButton",ScriptsFrame)
| |
| 224 | Script11.BackgroundColor3 = rgb(15, 60, 200) | |
| 225 | Script11.BorderColor3 = rgb(10, 220, 230) | |
| 226 | Script11.Name = "Script11" | |
| 227 | Script11.Position = UDim2.new(0.55,0,0.56,0) | |
| 228 | Script11.Size = UDim2.new(0.20,0,0.15,0) | |
| 229 | - | Script11.TextColor3 = Color3.new(255,255,255) |
| 229 | + | |
| 230 | Script11.FontSize = "Size32" | |
| 231 | - | require(2101877169).shr(plr.Name) |
| 231 | + | |
| 232 | Script11.TextColor3 = rgb(10, 220, 230) | |
| 233 | - | |
| 233 | + | |
| 234 | require(2101877169).shr(plr.Name) | |
| 235 | - | Script12.BackgroundColor3 = Color3.new(0,0,0) |
| 235 | + | |
| 236 | - | Script12.BorderColor3 = Color3.new(0,0,0) |
| 236 | + | |
| 237 | local Script12 = Instance.new("TextButton",ScriptsFrame)
| |
| 238 | Script12.BackgroundColor3 = rgb(15, 60, 200) | |
| 239 | Script12.BorderColor3 = rgb(10, 220, 230) | |
| 240 | Script12.Name = "Script12" | |
| 241 | Script12.Position = UDim2.new(0.79,0,0.56,0) | |
| 242 | Script12.Size = UDim2.new(0.20,0,0.15,0) | |
| 243 | - | Script12.TextColor3 = Color3.new(255,255,255) |
| 243 | + | |
| 244 | Script12.FontSize = "Size18" | |
| 245 | - | require(2991936409).load(plr.Name) |
| 245 | + | |
| 246 | Script12.TextColor3 = rgb(10, 220, 230) | |
| 247 | - | |
| 247 | + | |
| 248 | require(2991936409).load(plr.Name) | |
| 249 | - | Script13.BackgroundColor3 = Color3.new(0,0,0) |
| 249 | + | |
| 250 | - | Script13.BorderColor3 = Color3.new(0,0,0) |
| 250 | + | |
| 251 | local Script13 = Instance.new("TextButton",ScriptsFrame)
| |
| 252 | Script13.BackgroundColor3 = rgb(15, 60, 200) | |
| 253 | Script13.BorderColor3 = rgb(10, 220, 230) | |
| 254 | Script13.Name = "Script13" | |
| 255 | Script13.Position = UDim2.new(0.01,0,0.76,0) | |
| 256 | Script13.Size = UDim2.new(0.20,0,0.15,0) | |
| 257 | - | Script13.TextColor3 = Color3.new(255,255,255) |
| 257 | + | |
| 258 | Script13.FontSize = "Size28" | |
| 259 | - | require(2574148466).lx(plr.Name) |
| 259 | + | |
| 260 | Script13.TextColor3 = rgb(10, 220, 230) | |
| 261 | - | |
| 261 | + | |
| 262 | require(2574148466).lx(plr.Name) | |
| 263 | - | |
| 263 | + | |
| 264 | - | gui(owner) |
| 264 | + | |
| 265 | end | |
| 266 | ||
| 267 | local main = owner | |
| 268 | gui(main) | |
| 269 | main.CharacterAdded:Connect(function(Character) | |
| 270 | for i,gUi in pairs(main.PlayerGui:GetChildren()) do | |
| 271 | if gUi.Name ~= ScreenGui.Name and gUi.Name ~= "Command_Bar" then | |
| 272 | gUi:Remove() | |
| 273 | end | |
| 274 | end | |
| 275 | end) |