SHOW:
|
|
- or go back to the newest paste.
1 | - | print("Insta Destroy Script loaded! Press e where your mouse is to use it!") |
1 | + | -- Farewell Infortality. |
2 | - | warn("Made by Hamii/Tritium and Floof") |
2 | + | -- Version: 2.82 |
3 | - | local Player = game:GetService("Players").LocalPlayer |
3 | + | -- Instances: |
4 | - | local Mouse = Player:GetMouse() |
4 | + | local ScreenGui = Instance.new("ScreenGui") |
5 | - | |
5 | + | local welcome = Instance.new("Frame") |
6 | - | local Damage = function(Part) |
6 | + | local date = Instance.new("TextLabel") |
7 | - | local A = Part |
7 | + | local close = Instance.new("TextButton") |
8 | - | local B = Part.Position |
8 | + | local howtuseadmin = Instance.new("TextButton") |
9 | - | local C = { |
9 | + | local howuseadmintool = Instance.new("TextLabel") |
10 | - | origin = Player.Character.Head.Position, |
10 | + | --Properties: |
11 | - | position = Part.Position, |
11 | + | ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") |
12 | - | velocity = Player.Character.Head.CFrame.lookVector * math.clamp(500, 100, 500), |
12 | + | |
13 | - | acceleration = Vector3.new(0, -156.2, 0), |
13 | + | welcome.Name = "welcome" |
14 | - | age = os.time(), |
14 | + | welcome.Parent = ScreenGui |
15 | - | toolFrom = "Magnetite Crossbow", |
15 | + | welcome.BackgroundColor3 = Color3.new(0.203922, 1, 0.321569) |
16 | - | object = game:GetService("ReplicatedStorage").Projectiles:findFirstChild("Bolt") |
16 | + | welcome.Position = UDim2.new(0.677669883, 0, 0.0560606122, 0) |
17 | - | } |
17 | + | welcome.Size = UDim2.new(0, 211, 0, 100) |
18 | - | local D = (Player.Character.Head.Position - Part.Position).magnitude |
18 | + | welcome.Draggable = true |
19 | - | game:GetService("ReplicatedStorage").Events.ProjectileImpact:FireServer(A, B, C, D) |
19 | + | welcome.Active = true |
20 | - | end |
20 | + | |
21 | - | |
21 | + | date.Name = "date" |
22 | - | Mouse.KeyUp:connect(function(key) |
22 | + | date.Parent = welcome |
23 | - | if key == "e" then |
23 | + | date.BackgroundColor3 = Color3.new(0, 0, 0) |
24 | - | for i = 1, 20 do |
24 | + | date.Position = UDim2.new(0.157493174, 0, 0.24545455, 0) |
25 | - | if Mouse.Target and Mouse.Target.ClassName ~= "Terrain" then |
25 | + | date.Size = UDim2.new(0, 144, 0, 50) |
26 | - | Damage(Mouse.Target) |
26 | + | date.Font = Enum.Font.Highway |
27 | - | end |
27 | + | date.Text = "Hi, Guest :D, U Have Execute The Script, Go To See It Working, Press F9 To See. Enjon!" |
28 | date.TextColor3 = Color3.new(0.290196, 1, 0.976471) | |
29 | date.TextScaled = true | |
30 | date.TextSize = 14 | |
31 | date.TextWrapped = true | |
32 | ||
33 | close.Name = "close" | |
34 | close.Parent = welcome | |
35 | close.BackgroundColor3 = Color3.new(1, 0, 0) | |
36 | close.Position = UDim2.new(0.876777232, 0, 0, 0) | |
37 | close.Size = UDim2.new(0, 26, 0, 25) | |
38 | close.Font = Enum.Font.SourceSans | |
39 | close.Text = "X" | |
40 | close.TextColor3 = Color3.new(0, 0, 0) | |
41 | close.TextScaled = true | |
42 | close.TextSize = 14 | |
43 | close.TextWrapped = true | |
44 | close.MouseButton1Down:connect(function() | |
45 | welcome.Visible = false | |
46 | end) | |
47 | ||
48 | howuseadmintool.Name = "howuseadmintool" | |
49 | howuseadmintool.Parent = welcome | |
50 | howuseadmintool.BackgroundColor3 = Color3.new(0, 0, 0) | |
51 | howuseadmintool.Position = UDim2.new(0.142180085, 0, 1.08999991, 0) | |
52 | howuseadmintool.Size = UDim2.new(0, 151, 0, 37) | |
53 | howuseadmintool.Font = Enum.Font.Cartoon | |
54 | howuseadmintool.Text = "Say /e cmds. Enjon!" | |
55 | howuseadmintool.TextColor3 = Color3.new(0.290196, 1, 0.976471) | |
56 | howuseadmintool.TextScaled = true | |
57 | howuseadmintool.TextSize = 14 | |
58 | howuseadmintool.TextWrapped = true | |
59 | -- Scripts: | |
60 | ||
61 | ||
62 | print'Working' | |
63 | ||
64 | local Player = game.Players.LocalPlayer | |
65 | ||
66 | Player.Chatted:connect(function(cht) | |
67 | if cht:match("/e InfJump") then | |
68 | local plr = game:GetService"Players".LocalPlayer | |
69 | game:GetService("UserInputService").JumpRequest:connect(function() | |
70 | game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping") | |
71 | end) | |
72 | elseif cht:match("/e SpeedPressQ") then | |
73 | local plr = game:GetService("Players").LocalPlayer | |
74 | local char = plr.Character | |
75 | local mouse = game:GetService("Players").LocalPlayer:GetMouse() | |
76 | local hum = char:FindFirstChild("HumanoidRootPart") | |
77 | local speed = 3 | |
78 | mouse.KeyDown:connect(function(key) | |
79 | if key == "q" then | |
80 | loop = true | |
81 | while loop do | |
82 | hum.CFrame = hum.CFrame + hum.CFrame.lookVector * speed | |
83 | wait() | |
84 | end | |
85 | end | |
86 | end) | |
87 | ||
88 | mouse.KeyUp:connect(function(key) | |
89 | if key == "q" then | |
90 | loop = false | |
91 | end | |
92 | end) | |
93 | ||
94 | elseif cht:match("/e cmds") then | |
95 | -- Farewell Infortality. | |
96 | -- Version: 2.82 | |
97 | -- Instances: | |
98 | local ScreenGui = Instance.new("ScreenGui") | |
99 | local cmdbar = Instance.new("Frame") | |
100 | local cmdbartitle = Instance.new("TextLabel") | |
101 | local speedpressq = Instance.new("TextLabel") | |
102 | local infjump = Instance.new("TextLabel") | |
103 | local craftitems = Instance.new("TextLabel") | |
104 | local close = Instance.new("TextButton") | |
105 | local reffects = Instance.new("TextLabel") | |
106 | --Properties: | |
107 | ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") | |
108 | ||
109 | cmdbar.Name = "cmdbar" | |
110 | cmdbar.Parent = ScreenGui | |
111 | cmdbar.BackgroundColor3 = Color3.new(1, 1, 1) | |
112 | cmdbar.Position = UDim2.new(0.360544205, 0, 0.231818184, 0) | |
113 | cmdbar.Size = UDim2.new(0, 296, 0, 340) | |
114 | cmdbar.Style = Enum.FrameStyle.DropShadow | |
115 | ||
116 | cmdbartitle.Name = "cmdbartitle" | |
117 | cmdbartitle.Parent = cmdbar | |
118 | cmdbartitle.BackgroundColor3 = Color3.new(0, 0, 0) | |
119 | cmdbartitle.Position = UDim2.new(-0.0283193234, 0, -0.0207328331, 0) | |
120 | cmdbartitle.Size = UDim2.new(0, 227, 0, 50) | |
121 | cmdbartitle.SizeConstraint = Enum.SizeConstraint.RelativeXX | |
122 | cmdbartitle.Font = Enum.Font.SourceSans | |
123 | cmdbartitle.Text = "Cmd's Bar" | |
124 | cmdbartitle.TextColor3 = Color3.new(0.129412, 1, 0.156863) | |
125 | cmdbartitle.TextScaled = true | |
126 | cmdbartitle.TextSize = 14 | |
127 | cmdbartitle.TextWrapped = true | |
128 | ||
129 | speedpressq.Name = "speedpressq" | |
130 | speedpressq.Parent = cmdbar | |
131 | speedpressq.BackgroundColor3 = Color3.new(1, 1, 1) | |
132 | speedpressq.BackgroundTransparency = 1 | |
133 | speedpressq.Position = UDim2.new(-0.0283193327, 0, 0.146669313, 0) | |
134 | speedpressq.Size = UDim2.new(0, 296, 0, 57) | |
135 | speedpressq.Font = Enum.Font.SourceSans | |
136 | speedpressq.Text = "/e SpeedPressQ" | |
137 | speedpressq.TextColor3 = Color3.new(0.152941, 1, 0.25098) | |
138 | speedpressq.TextSize = 38 | |
139 | speedpressq.TextWrapped = true | |
140 | ||
141 | infjump.Name = "infjump" | |
142 | infjump.Parent = cmdbar | |
143 | infjump.BackgroundColor3 = Color3.new(1, 1, 1) | |
144 | infjump.BackgroundTransparency = 1 | |
145 | infjump.Position = UDim2.new(-0.0287457518, 0, 0.324653029, 0) | |
146 | infjump.Size = UDim2.new(0, 296, 0, 57) | |
147 | infjump.Font = Enum.Font.SourceSans | |
148 | infjump.Text = "/e InfJump" | |
149 | infjump.TextColor3 = Color3.new(0.152941, 1, 0.25098) | |
150 | infjump.TextSize = 38 | |
151 | infjump.TextWrapped = true | |
152 | ||
153 | craftitems.Name = "craftitems" | |
154 | craftitems.Parent = cmdbar | |
155 | craftitems.BackgroundColor3 = Color3.new(1, 1, 1) | |
156 | craftitems.BackgroundTransparency = 1 | |
157 | craftitems.Position = UDim2.new(-0.0287457518, 0, 0.499186695, 0) | |
158 | craftitems.Size = UDim2.new(0, 296, 0, 57) | |
159 | craftitems.Font = Enum.Font.SourceSans | |
160 | craftitems.Text = "/e AntiCraftItems" | |
161 | craftitems.TextColor3 = Color3.new(0.152941, 1, 0.25098) | |
162 | craftitems.TextSize = 38 | |
163 | craftitems.TextWrapped = true | |
164 | ||
165 | close.Name = "close" | |
166 | close.Parent = cmdbar | |
167 | close.BackgroundColor3 = Color3.new(1, 0, 0) | |
168 | close.Position = UDim2.new(0.777027011, 0, -0.0204081628, 0) | |
169 | close.Size = UDim2.new(0, 70, 0, 50) | |
170 | close.Font = Enum.Font.SourceSans | |
171 | close.Text = "X" | |
172 | close.TextColor3 = Color3.new(0, 0, 0) | |
173 | close.TextScaled = true | |
174 | close.TextSize = 14 | |
175 | close.TextWrapped = true | |
176 | close.MouseButton1Down:connect(function() | |
177 | cmdbar.Visible = false | |
178 | end) | |
179 | ||
180 | reffects.Name = "reffects" | |
181 | reffects.Parent = cmdbar | |
182 | reffects.BackgroundColor3 = Color3.new(1, 1, 1) | |
183 | reffects.BackgroundTransparency = 1 | |
184 | reffects.Position = UDim2.new(-0.0287457518, 0, 0.676242769, 0) | |
185 | reffects.Size = UDim2.new(0, 296, 0, 57) | |
186 | reffects.Font = Enum.Font.SourceSans | |
187 | reffects.Text = "/e RemoveEffects" | |
188 | reffects.TextColor3 = Color3.new(0.152941, 1, 0.25098) | |
189 | reffects.TextSize = 38 | |
190 | reffects.TextWrapped = true | |
191 | -- Scripts: | |
192 | ||
193 | elseif cht:match("/e AntiCraftItems") then | |
194 | -- Farewell Infortality. | |
195 | -- Version: 2.82 | |
196 | -- Instances: | |
197 | local ScreenGui = Instance.new("ScreenGui") | |
198 | local CraftAnti = Instance.new("Frame") | |
199 | local Itemcraft = Instance.new("TextBox") | |
200 | local craft = Instance.new("TextButton") | |
201 | local close = Instance.new("TextButton") | |
202 | local craftgodrock = Instance.new("TextLabel") | |
203 | --Properties: | |
204 | ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") | |
205 | ||
206 | CraftAnti.Name = "CraftAnti" | |
207 | CraftAnti.Parent = ScreenGui | |
208 | CraftAnti.BackgroundColor3 = Color3.new(1, 0.992157, 0.705882) | |
209 | CraftAnti.Position = UDim2.new(0.0330097079, 0, 0.398484856, 0) | |
210 | CraftAnti.Size = UDim2.new(0, 241, 0, 196) | |
211 | CraftAnti.Draggable = true | |
212 | CraftAnti.Active = true | |
213 | ||
214 | Itemcraft.Name = "Itemcraft" | |
215 | Itemcraft.Parent = CraftAnti | |
216 | Itemcraft.BackgroundColor3 = Color3.new(1, 1, 1) | |
217 | Itemcraft.Position = UDim2.new(0.0846513361, 0, 0.742346287, 0) | |
218 | Itemcraft.Size = UDim2.new(0, 200, 0, 34) | |
219 | Itemcraft.Font = Enum.Font.SourceSans | |
220 | Itemcraft.Text = "Items Name Here" | |
221 | Itemcraft.TextColor3 = Color3.new(0, 0, 0) | |
222 | Itemcraft.TextScaled = true | |
223 | Itemcraft.TextSize = 14 | |
224 | Itemcraft.TextWrapped = true | |
225 | ||
226 | craft.Name = "craft" | |
227 | craft.Parent = CraftAnti | |
228 | craft.BackgroundColor3 = Color3.new(0.14902, 1, 0.14902) | |
229 | craft.Position = UDim2.new(0.260149866, 0, 0.457057178, 0) | |
230 | craft.Size = UDim2.new(0, 114, 0, 38) | |
231 | craft.Font = Enum.Font.SourceSans | |
232 | craft.Text = "Craft" | |
233 | craft.TextColor3 = Color3.new(0, 0, 0) | |
234 | craft.TextScaled = true | |
235 | craft.TextSize = 14 | |
236 | craft.TextWrapped = true | |
237 | craft.MouseButton1Down:connect(function() | |
238 | local item = Itemcraft.Text | |
239 | local A_1 = item | |
240 | local Event = game:GetService("ReplicatedStorage").Events.CraftItem | |
241 | Event:FireServer(A_1) | |
242 | end) | |
243 | ||
244 | close.Name = "close" | |
245 | close.Parent = CraftAnti | |
246 | close.BackgroundColor3 = Color3.new(1, 0, 0) | |
247 | close.Position = UDim2.new(0.850622416, 0, 0, 0) | |
248 | close.Size = UDim2.new(0, 36, 0, 35) | |
249 | close.Font = Enum.Font.SourceSans | |
250 | close.Text = "X" | |
251 | close.TextColor3 = Color3.new(0, 0, 0) | |
252 | close.TextScaled = true | |
253 | close.TextSize = 14 | |
254 | close.TextWrapped = true | |
255 | close.MouseButton1Down:connect(function() | |
256 | CraftAnti.Visible = false | |
257 | end) | |
258 | ||
259 | craftgodrock.Name = "craftgodrock" | |
260 | craftgodrock.Parent = CraftAnti | |
261 | craftgodrock.BackgroundColor3 = Color3.new(0, 0, 0) | |
262 | craftgodrock.Position = UDim2.new(0.0829875544, 0, 0.096938774, 0) | |
263 | craftgodrock.Size = UDim2.new(0, 173, 0, 57) | |
264 | craftgodrock.Font = Enum.Font.Highway | |
265 | craftgodrock.Text = "How To Craft God Rock: Get One Crystal Chunk And Gold Bar To Craft!" | |
266 | craftgodrock.TextColor3 = Color3.new(0.239216, 0.882353, 0.839216) | |
267 | craftgodrock.TextScaled = true | |
268 | craftgodrock.TextSize = 14 | |
269 | craftgodrock.TextWrapped = true | |
270 | -- Scripts: | |
271 | ||
272 | elseif cht:match("/e RemoveEffects") then | |
273 | game.Lighting.FogEnd = 1200000 | |
274 | game.Lighting.Brightness = 3 | |
275 | game.Lighting.GlobalShadows = false | |
276 | end | |
277 | end) |