SHOW:
|
|
- or go back to the newest paste.
1 | if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end | |
2 | local Player,game,owner = owner,game | |
3 | local RealPlayer = Player | |
4 | do | |
5 | print("FE Compatibility code by Mokiros, Edited by StarzoZero") | |
6 | local rp = RealPlayer | |
7 | script.Parent = rp.Character | |
8 | ||
9 | --RemoteEvent for communicating | |
10 | local Event = Instance.new("RemoteEvent") | |
11 | Event.Name = "UserInput_Event" | |
12 | ||
13 | --Fake event to make stuff like Mouse.KeyDown work | |
14 | local function fakeEvent() | |
15 | local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end} | |
16 | t.connect = t.Connect | |
17 | return t | |
18 | end | |
19 | ||
20 | --Creating fake input objects with fake variables | |
21 | local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()} | |
22 | local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()} | |
23 | local CAS = {Actions={},BindAction=function(self,name,fun,touch,...) | |
24 | CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil | |
25 | end} | |
26 | --Merged 2 functions into one by checking amount of arguments | |
27 | CAS.UnbindAction = CAS.BindAction | |
28 | ||
29 | --This function will trigger the events that have been :Connect()'ed | |
30 | local function te(self,ev,...) | |
31 | local t = m[ev] | |
32 | if t and t._fakeEvent then | |
33 | for _,f in pairs(t.Functions) do | |
34 | f(...) | |
35 | end | |
36 | end | |
37 | end | |
38 | m.TrigEvent = te | |
39 | UIS.TrigEvent = te | |
40 | ||
41 | Event.OnServerEvent:Connect(function(plr,io) | |
42 | if plr~=rp then return end | |
43 | m.Target = io.Target | |
44 | m.Hit = io.Hit | |
45 | if not io.isMouse then | |
46 | local b = io.UserInputState == Enum.UserInputState.Begin | |
47 | if io.UserInputType == Enum.UserInputType.MouseButton1 then | |
48 | return m:TrigEvent(b and "Button1Down" or "Button1Up") | |
49 | end | |
50 | if io.UserInputType == Enum.UserInputType.MouseButton2 then | |
51 | return m:TrigEvent(b and "Button2Down" or "Button2Up") | |
52 | end | |
53 | for _,t in pairs(CAS.Actions) do | |
54 | for _,k in pairs(t.Keys) do | |
55 | if k==io.KeyCode then | |
56 | t.Function(t.Name,io.UserInputState,io) | |
57 | end | |
58 | end | |
59 | end | |
60 | m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower()) | |
61 | UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false) | |
62 | end | |
63 | end) | |
64 | Event.Parent = NLS([==[ | |
65 | local Player = game:GetService("Players").LocalPlayer | |
66 | local Event = script:WaitForChild("UserInput_Event") | |
67 | local Mouse = Player:GetMouse() | |
68 | local UIS = game:GetService("UserInputService") | |
69 | local input = function(io,a) | |
70 | if a then return end | |
71 | --Since InputObject is a client-side instance, we create and pass table instead | |
72 | Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target}) | |
73 | end | |
74 | UIS.InputBegan:Connect(input) | |
75 | UIS.InputEnded:Connect(input) | |
76 | local h,t | |
77 | --Give the server mouse data 30 times every second, but only if the values changed | |
78 | --If player is not moving their mouse, client won't fire events | |
79 | while wait(1/30) do | |
80 | if h~=Mouse.Hit or t~=Mouse.Target then | |
81 | h,t=Mouse.Hit,Mouse.Target | |
82 | Event:FireServer({isMouse=true,Target=t,Hit=h}) | |
83 | end | |
84 | end]==],Player.Character) | |
85 | ||
86 | ----Sandboxed game object that allows the usage of client-side methods and services | |
87 | --Real game object | |
88 | local _rg = game | |
89 | ||
90 | --Metatable for fake service | |
91 | local fsmt = { | |
92 | __index = function(self,k) | |
93 | local s = rawget(self,"_RealService") | |
94 | if s then | |
95 | return typeof(s[k])=="function" | |
96 | and function(_,...)return s[k](s,...)end or s[k] | |
97 | end | |
98 | end, | |
99 | __newindex = function(self,k,v) | |
100 | local s = rawget(self,"_RealService") | |
101 | if s then s[k]=v end | |
102 | end | |
103 | } | |
104 | local function FakeService(t,RealService) | |
105 | t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService | |
106 | return setmetatable(t,fsmt) | |
107 | end | |
108 | ||
109 | --Fake game object | |
110 | local g = { | |
111 | GetService = function(self,s) | |
112 | return rawget(self,s) or _rg:GetService(s) | |
113 | end, | |
114 | Players = FakeService({ | |
115 | LocalPlayer = FakeService({GetMouse=function(self)return m end},Player) | |
116 | },"Players"), | |
117 | UserInputService = FakeService(UIS,"UserInputService"), | |
118 | ContextActionService = FakeService(CAS,"ContextActionService"), | |
119 | RunService = FakeService({ | |
120 | _btrs = {}, | |
121 | RenderStepped = _rg:GetService("RunService").Heartbeat, | |
122 | BindToRenderStep = function(self,name,_,fun) | |
123 | self._btrs[name] = self.Heartbeat:Connect(fun) | |
124 | end, | |
125 | UnbindFromRenderStep = function(self,name) | |
126 | self._btrs[name]:Disconnect() | |
127 | end, | |
128 | },"RunService") | |
129 | } | |
130 | rawset(g.Players,"localPlayer",g.Players.LocalPlayer) | |
131 | g.service = g.GetService | |
132 | FakeService(g,game) | |
133 | --Changing owner to fake player object to support owner:GetMouse() | |
134 | game,owner = g,g.Players.LocalPlayer | |
135 | end | |
136 | --Bacon Hair Server Destroyer Gui | |
137 | --The Bacon everybody and bacon player functions are just for annoyance and lag. | |
138 | --If you want to DESTROY the server press the red button. | |
139 | ||
140 | -- Objects | |
141 | ||
142 | local BaconGui = Instance.new("ScreenGui") | |
143 | local Frame = Instance.new("Frame") | |
144 | local TextButton = Instance.new("TextButton") | |
145 | local TextLabel = Instance.new("TextLabel") | |
146 | local TextBox = Instance.new("TextBox") | |
147 | local TextButton_2 = Instance.new("TextButton") | |
148 | local TextButton_3 = Instance.new("TextButton") | |
149 | ||
150 | -- Properties | |
151 | ||
152 | BaconGui.Name = "BaconGui" | |
153 | BaconGui.Parent = game.Players.LocalPlayer.PlayerGui | |
154 | ||
155 | Frame.Parent = BaconGui | |
156 | Frame.BackgroundColor3 = Color3.new(0.0392157, 0.698039, 1) | |
157 | Frame.BackgroundTransparency = 0.30000001192093 | |
158 | Frame.Position = UDim2.new(0.58486408, 0, 0.363475174, 0) | |
159 | Frame.Size = UDim2.new(0.314474642, 0, 0.501773059, 0) | |
160 | Frame.Active = true | |
161 | Frame.Draggable = true | |
162 | ||
163 | TextButton.Parent = Frame | |
164 | TextButton.BackgroundColor3 = Color3.new(0.384314, 0.415686, 1) | |
165 | TextButton.BackgroundTransparency = 0.30000001192093 | |
166 | TextButton.Position = UDim2.new(0, 0, 0.349999994, 0) | |
167 | TextButton.Size = UDim2.new(0.5, 0, 0.150000006, 0) | |
168 | TextButton.Font = Enum.Font.SourceSans | |
169 | TextButton.Text = "Bacon Spam Player" | |
170 | TextButton.TextScaled = true | |
171 | TextButton.TextSize = 14 | |
172 | TextButton.TextWrapped = true | |
173 | TextButton.MouseButton1Click:connect(function() | |
174 | BaconStrikePlayer(TextBox.Text) | |
175 | end) | |
176 | ||
177 | TextLabel.Parent = Frame | |
178 | TextLabel.BackgroundColor3 = Color3.new(1, 1, 1) | |
179 | TextLabel.BackgroundTransparency = 1 | |
180 | TextLabel.Size = UDim2.new(1, 0, 0, 100) | |
181 | TextLabel.Font = Enum.Font.SourceSansLight | |
182 | TextLabel.Text = "Bacon Server Destroyer Gui" | |
183 | TextLabel.TextScaled = true | |
184 | TextLabel.TextSize = 14 | |
185 | TextLabel.TextWrapped = true | |
186 | ||
187 | TextBox.Parent = Frame | |
188 | TextBox.BackgroundColor3 = Color3.new(0.603922, 0.376471, 1) | |
189 | TextBox.BackgroundTransparency = 0.30000001192093 | |
190 | TextBox.Position = UDim2.new(0, 0, 0.5, 0) | |
191 | TextBox.Size = UDim2.new(0.5, 0, 0, 50) | |
192 | TextBox.Font = Enum.Font.SourceSans | |
193 | TextBox.Text = "Player Name Here!" | |
194 | TextBox.TextScaled = true | |
195 | TextBox.TextSize = 14 | |
196 | TextBox.TextWrapped = true | |
197 | ||
198 | TextButton_2.Parent = Frame | |
199 | TextButton_2.BackgroundColor3 = Color3.new(0.384314, 0.415686, 1) | |
200 | TextButton_2.BackgroundTransparency = 0.30000001192093 | |
201 | TextButton_2.Position = UDim2.new(0.5, 0, 0.349999994, 0) | |
202 | TextButton_2.Size = UDim2.new(0.5, 0, 0.330000013, 0) | |
203 | TextButton_2.Font = Enum.Font.SourceSans | |
204 | TextButton_2.Text = "Bacon Spam All Players" | |
205 | TextButton_2.TextScaled = true | |
206 | TextButton_2.TextSize = 14 | |
207 | TextButton_2.TextWrapped = true | |
208 | TextButton_2.MouseButton1Click:connect(function() | |
209 | BaconStrikeServer() | |
210 | end) | |
211 | ||
212 | TextButton_3.Parent = Frame | |
213 | TextButton_3.BackgroundColor3 = Color3.new(1, 0, 0.14902) | |
214 | TextButton_3.BackgroundTransparency = 0.30000001192093 | |
215 | TextButton_3.Position = UDim2.new(0, 0, 0.680000007, 0) | |
216 | TextButton_3.Size = UDim2.new(1, 0, 0.319999993, 0) | |
217 | TextButton_3.Font = Enum.Font.SourceSans | |
218 | TextButton_3.Text = "Bacon Spam Every Single Part In The Server With Particles" | |
219 | TextButton_3.TextScaled = true | |
220 | TextButton_3.TextSize = 14 | |
221 | TextButton_3.TextWrapped = true | |
222 | TextButton_3.MouseButton1Click:connect(function() | |
223 | BaconStrikeEverySinglePartInTheWholeServer() | |
224 | end) | |
225 | ||
226 | --BaconStrikePlayer | |
227 | function BaconStrikePlayer(player) | |
228 | if TextBox.Text ~= "Player Name Here!" then | |
229 | for i=1, 3000 do | |
230 | BaconHair = Instance.new("Part", workspace) | |
231 | BaconHair.Size = Vector3.new(1, 1, 2) | |
232 | BaconHairMesh = Instance.new("SpecialMesh", BaconHair) | |
233 | BaconHairMesh.MeshId = "http://roblox.com/asset/?id=83293901" | |
234 | BaconHairMesh.Scale = Vector3.new(1, 1.05, 1) | |
235 | BaconHairMesh.TextureId = "http://roblox.com/asset/?id=83284747" | |
236 | BaconHairMesh.VertexColor = Vector3.new(1.2, 1.4, 1.4) | |
237 | if player == "me" then | |
238 | BaconHair.Position = game.Players.LocalPlayer.Character.Torso.Position | |
239 | else | |
240 | BaconHair.Position = game.Players[player].Character.Torso.Position | |
241 | end | |
242 | wait(0.0001) | |
243 | end | |
244 | end | |
245 | end | |
246 | ||
247 | --BaconStrikeServer | |
248 | function BaconStrikeServer() | |
249 | MakeBaconSong() | |
250 | MakeBaconSound(workspace) | |
251 | for i=1, 6000 do | |
252 | BaconHair = Instance.new("Part", workspace) | |
253 | BaconHair.Size = Vector3.new(1, 1, 2) | |
254 | BaconHairMesh = Instance.new("SpecialMesh", BaconHair) | |
255 | BaconHairMesh.MeshId = "http://roblox.com/asset/?id=83293901" | |
256 | BaconHairMesh.Scale = Vector3.new(1, 1.05, 1) | |
257 | BaconHairMesh.TextureId = "http://roblox.com/asset/?id=83284747" | |
258 | BaconHairMesh.VertexColor = Vector3.new(1.2, 1.4, 1.4) | |
259 | Rando = game.Players:GetPlayers()[math.random(1,#game.Players:GetPlayers())] | |
260 | BaconHair.Position = Rando.Character.Torso.Position | |
261 | wait(0.0001) | |
262 | end | |
263 | end | |
264 | ||
265 | --BaconStrikeAllPartsInServer | |
266 | function BaconStrikeEverySinglePartInTheWholeServer() | |
267 | MakeBaconSong() | |
268 | for index, child in pairs(workspace:GetChildren()) do | |
269 | if child.ClassName == "Part" then | |
270 | MakeBaconSound(child) | |
271 | for i=1, 600 do | |
272 | BaconHair = Instance.new("Part", workspace) | |
273 | BaconHair.Size = Vector3.new(1, 1, 2) | |
274 | BaconHairMesh = Instance.new("SpecialMesh", BaconHair) | |
275 | BaconHairMesh.MeshId = "http://roblox.com/asset/?id=83293901" | |
276 | BaconHairMesh.Scale = Vector3.new(1, 1.05, 1) | |
277 | BaconHairMesh.TextureId = "http://roblox.com/asset/?id=83284747" | |
278 | BaconHairMesh.VertexColor = Vector3.new(1.2, 1.4, 1.4) | |
279 | BaconHairParticleMaker = Instance.new("ParticleEmitter", BaconHair) | |
280 | BaconHairParticleMaker.Size = NumberSequence.new(0.5) | |
281 | BaconHairParticleMaker.Texture = "rbxassetid://963303510" | |
282 | BaconHairParticleMaker.Transparency = NumberSequence.new(0.7, 0,7) | |
283 | BaconHairParticleMaker.Lifetime = NumberRange.new(5000, 5000) | |
284 | BaconHairParticleMaker.Rate = 500.000 | |
285 | BaconHairParticleMaker.RotSpeed = NumberRange.new(100, 100) | |
286 | BaconHairParticleMaker.Speed = NumberRange.new(5, 5) | |
287 | BaconHairParticleMaker.SpreadAngle = Vector2.new(0, 1000) | |
288 | BaconHair.Position = child.Position | |
289 | end | |
290 | end | |
291 | end | |
292 | end | |
293 | ||
294 | --BaconSong | |
295 | function MakeBaconSong() | |
296 | if workspace:FindFirstChild("baconsong") then | |
297 | no = workspace:FindFirstChild("baconsong") | |
298 | no:Destroy() | |
299 | end | |
300 | baconsong = Instance.new("Sound", workspace) | |
301 | baconsong.Name = "baconsong" | |
302 | baconsong.SoundId = "rbxassetid://183031794" | |
303 | baconsong:Play() | |
304 | end | |
305 | ||
306 | --BaconSound | |
307 | function MakeBaconSound(parent) | |
308 | BaconSound = Instance.new("Sound", parent) | |
309 | BaconSound.Looped = true | |
310 | BaconSound.SoundId = "rbxassetid://1052934249" | |
311 | BaconSound:Play() | |
312 | end |