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