SHOW:
|
|
- or go back to the newest paste.
1 | -- https://raw.githubusercontent.com/IhateNoggers/bruh/master/Roblox%20Roblox | |
2 | -- BASE RAIDERS GUI | |
3 | print("Starting") | |
4 | -- Decleration of Objects | |
5 | wait(2) -- Waiting For your character to load in | |
6 | - | local LocalPlayer = game.Players.Stinky_Pinky123 -- Enter Your Name Here |
6 | + | local LocalPlayer = game.Players.Demonsnowman -- Enter Your Name Here |
7 | - | local LocalPlayer2 = workspace.Stinky_Pinky123 -- Enter Your Name Here |
7 | + | local LocalPlayer2 = workspace.Demonsnowman -- Enter Your Name Here |
8 | local ninjagui = Instance.new("ScreenGui",LocalPlayer.PlayerGui) | |
9 | local ninjaframe = Instance.new("Frame",LocalPlayer.PlayerGui.ScreenGui) | |
10 | local t1 = Instance.new("TextLabel",LocalPlayer.PlayerGui.ScreenGui.Frame) | |
11 | local FailGodMode = Instance.new("TextButton",LocalPlayer.PlayerGui.ScreenGui.Frame) | |
12 | local Crash = Instance.new("TextButton",LocalPlayer.PlayerGui.ScreenGui.Frame) | |
13 | local iamspeed = Instance.new("TextButton",LocalPlayer.PlayerGui.ScreenGui.Frame) | |
14 | local exit = Instance.new("TextButton",LocalPlayer.PlayerGui.ScreenGui.Frame) | |
15 | local nextpage = Instance.new("TextButton",LocalPlayer.PlayerGui.ScreenGui.Frame) | |
16 | local ninjaframe2 = Instance.new("Frame",LocalPlayer.PlayerGui.ScreenGui.Frame) | |
17 | -- Properties of Objects | |
18 | -- The Entire Gui | |
19 | ninjagui.Parent = LocalPlayer.PlayerGui | |
20 | ninjagui.Name = "ninjagui" | |
21 | -- The Frame Of the Gui | |
22 | ninjaframe.Parent = ninjagui | |
23 | ninjaframe.Active = true | |
24 | ninjaframe.Selectable = true | |
25 | ninjaframe.Visible = true | |
26 | ninjaframe.Name = "ninjaframe" | |
27 | ninjaframe.Position = UDim2.new(0.0419161692, 0, 0.239999995, 0) | |
28 | ninjaframe.Size = UDim2.new(0, 382, 0, 188) | |
29 | ninjaframe.BackgroundTransparency = 0.5 | |
30 | ninjaframe.BackgroundColor3 = Color3.new(0,0,0) | |
31 | ninjaframe.Draggable = true | |
32 | print("Frame Finished") | |
33 | -- Title of Gui | |
34 | t1.Parent = ninjaframe | |
35 | t1.Name = "Title" | |
36 | t1.Active = true | |
37 | t1.Text = "Op Gui" | |
38 | t1.TextSize = 25 | |
39 | t1.Position = UDim2.new(0.2,0,0.053,0) | |
40 | t1.BackgroundTransparency = 1 | |
41 | t1.BackgroundColor3 = Color3.new(0,0,0) | |
42 | t1.TextColor3 = Color3.new(227/255,72/255,0) | |
43 | print("Title Finished") | |
44 | t1.Size = UDim2.new(0,207,0,54) | |
45 | -- Exit Button | |
46 | exit.Parent = ninjaframe | |
47 | exit.Name = "Exit" | |
48 | exit.Size = UDim2.new(0,40,0,42) | |
49 | exit.BackgroundTransparency = 0.9 | |
50 | exit.BackgroundColor3 = Color3.new(1000,1000,1000) | |
51 | exit.Text = "X" | |
52 | exit.TextSize = 50 | |
53 | exit.TextScaled = true | |
54 | exit.Position = UDim2.new(0.895,0,0,0) | |
55 | exit.TextColor3 = Color3.new(1,0,0) | |
56 | function mouseventclose() | |
57 | LocalPlayer.PlayerGui.ninjagui:Destroy() | |
58 | print("Rip Base Raiders Gui") | |
59 | end | |
60 | LocalPlayer.PlayerGui.ninjagui.ninjaframe.Exit.MouseButton1Click:Connect(mouseventclose) | |
61 | print("Exit Finished") | |
62 | -- God Mode Button | |
63 | FailGodMode.Parent = ninjaframe | |
64 | FailGodMode.Name = "God" | |
65 | FailGodMode.Active = true | |
66 | FailGodMode.Text = "God Mode" | |
67 | FailGodMode.TextScaled = true | |
68 | FailGodMode.Size = UDim2.new(0,128,0,50) | |
69 | FailGodMode.Position = UDim2.new(0.107,0,0.367,0) | |
70 | FailGodMode.BackgroundTransparency = 0.9 | |
71 | FailGodMode.TextColor3 = Color3.new(227/255,72/255,0) | |
72 | FailGodMode.BackgroundColor3 = Color3.new(1000,1000,1000) | |
73 | function mouseeventgod() | |
74 | LocalPlayer2.Humanoid.MaxHealth = math.huge | |
75 | LocalPlayer2.Humanoid.Health = math.huge | |
76 | end | |
77 | LocalPlayer.PlayerGui.ninjagui.ninjaframe.God.MouseButton1Click:Connect(mouseeventgod) | |
78 | -- iamspeed Button | |
79 | iamspeed.Parent = ninjaframe | |
80 | iamspeed.Name = "Speed" | |
81 | iamspeed.Active = true | |
82 | iamspeed.Text = "Go Fast" | |
83 | iamspeed.TextScaled = true | |
84 | iamspeed.Size = UDim2.new(0,128,0,50) | |
85 | iamspeed.Position = UDim2.new(0.56,0,0.367,0) | |
86 | iamspeed.BackgroundTransparency = 0.9 | |
87 | iamspeed.TextColor3 = Color3.new(227/255,72/255,0) | |
88 | iamspeed.BackgroundColor3 = Color3.new(1000,1000,1000) | |
89 | function mouseeventspeed() | |
90 | if (LocalPlayer2.Humanoid.WalkSpeed == 100) then | |
91 | LocalPlayer2.Humanoid.WalkSpeed = 16 | |
92 | else | |
93 | LocalPlayer2.Humanoid.WalkSpeed = 100 | |
94 | end | |
95 | end | |
96 | LocalPlayer.PlayerGui.ninjagui.ninjaframe.Speed.MouseButton1Click:Connect(mouseeventspeed) | |
97 | -- Crash button | |
98 | Crash.Parent = ninjaframe | |
99 | Crash.Name = "Crash" | |
100 | Crash.Active = true | |
101 | Crash.Text = "Eat your Pc's Ram" | |
102 | Crash.TextScaled = true | |
103 | Crash.Size = UDim2.new(0,200,0,50) | |
104 | Crash.Position = UDim2.new(0.23,0,0.68,0) | |
105 | Crash.BackgroundTransparency = 0.9 | |
106 | Crash.TextColor3 = Color3.new(227/255,72/255,0) | |
107 | Crash.BackgroundColor3 = Color3.new(1000,1000,1000) | |
108 | function mouseeventcrash() | |
109 | while true do | |
110 | local system32 = Instance.new("Part",workspace) | |
111 | system32.Parent = workspace | |
112 | end | |
113 | end | |
114 | LocalPlayer.PlayerGui.ninjagui.ninjaframe.Crash.MouseButton1Click:Connect(mouseeventcrash) | |
115 | ||
116 | ninjaframe2.Parent = ninjagui | |
117 | ninjaframe2.Name = "ninjaframe2" | |
118 | ||
119 | nextpage.Parent = ninjaframe | |
120 | nextpage.Name = "nextpage" | |
121 | nextpage.Active = true | |
122 | nextpage.Text = "Next >>>" | |
123 | nextpage.TextScaled = true | |
124 | nextpage.Size = UDim2.new(0,50,0,50) | |
125 | nextpage.Position = UDim2.new(0.87,0,0.73,0) | |
126 | nextpage.BackgroundTransparency = 0.9 | |
127 | nextpage.TextColor3 = Color3.new(227/255,72/255,0) | |
128 | nextpage.BackgroundColor3 = Color3.new(1000,1000,1000) | |
129 | function mouseeventpagechange() | |
130 | ninjaframe.Visible = false | |
131 | end | |
132 | LocalPlayer.PlayerGui.ninjagui.ninjaframe.nextpage.MouseButton1Click:Connect(mouseeventcrash) |