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 | --[[ | |
137 | /\/\//\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ | |
138 | ||
139 | ||FREE RBX!1!!|| - A Troll Script by Melissa666666girl | |
140 | ||
141 | /\/\//\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ | |
142 | ||
143 | ///Recycled from Sharkringan's Ugandan Knuckles script\\\ | |
144 | \\Litteraly only like 3 lines of code from it, lol kthx// | |
145 | ||
146 | /\/\//\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ | |
147 | --]] | |
148 | ||
149 | --~~-- | |
150 | Bacons = 25 --CHANGE THE NUMBER TO HOW MANY BACONS YOU WANT! (more than 50 crashes your game..) | |
151 | --~~-- | |
152 | ||
153 | plr = game:service'Players'.LocalPlayer | |
154 | char = plr.Character | |
155 | root = char:FindFirstChild'HumanoidRootPart' | |
156 | hum = char:FindFirstChildOfClass'Humanoid' | |
157 | mouse = plr:GetMouse() | |
158 | clones = {} | |
159 | followplr = false | |
160 | radius = 50 | |
161 | ||
162 | ||
163 | plr.NameDisplayDistance = 45 | |
164 | local txt = Instance.new("BillboardGui", char) | |
165 | txt.Adornee = char .Head | |
166 | txt.Name = "thingy" | |
167 | txt.Size = UDim2.new(2, 0, 1.2, 0) | |
168 | txt.StudsOffset = Vector3.new(-1, 2, 0) | |
169 | local text = Instance.new("TextLabel", txt) | |
170 | text.Size = UDim2.new(2, 0, 0.6, 0) | |
171 | text.FontSize = "Size24" | |
172 | text.TextScaled = true | |
173 | text.TextTransparency = 0 | |
174 | text.BackgroundTransparency = 1 | |
175 | text.TextTransparency = 0 | |
176 | text.TextStrokeTransparency = 0 | |
177 | text.Font = "Bodoni" | |
178 | text.TextStrokeColor3 = Color3.new(225, 17, 215) | |
179 | txt.MaxDistance = 10 | |
180 | ||
181 | v=Instance.new("Part") | |
182 | v.Name = "ColorBrick" | |
183 | v.Parent=plr.Character | |
184 | v.FormFactor="Symmetric" | |
185 | v.Anchored=true | |
186 | v.CanCollide=false | |
187 | v.BottomSurface="Smooth" | |
188 | v.TopSurface="Smooth" | |
189 | v.Size=Vector3.new(10,5,3) | |
190 | v.Transparency=1 | |
191 | v.CFrame=char.Torso.CFrame | |
192 | v.BrickColor=BrickColor.new("Toothpaste") | |
193 | v.Transparency=1 | |
194 | text.TextColor3 = Color3.new(1,1,1) | |
195 | v.Shape="Block" | |
196 | text.Text = "Bacon Soliders" | |
197 | char.Humanoid.WalkSpeed = 75 | |
198 | ||
199 | ||
200 | for _, a in pairs(char:children()) do | |
201 | if a:IsA'Accessory' then | |
202 | a:Destroy() | |
203 | elseif a:IsA'Part' then | |
204 | a.BrickColor = BrickColor:Random() | |
205 | ||
206 | end | |
207 | end | |
208 | if char.Shirt == nil then | |
209 | Instance.new("Pants", char) | |
210 | Instance.new("Shirt", char) | |
211 | end | |
212 | char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=144076357" | |
213 | char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=144076759" | |
214 | ||
215 | local Hair = Instance.new("Part") | |
216 | Hair.Parent = char | |
217 | Hair.Name = "Bacon" | |
218 | Hair.Size = Vector3.new(0.1, 0.1, 0.1) | |
219 | Hair.CFrame = char.Head.CFrame | |
220 | Hair:BreakJoints() | |
221 | Hair.CanCollide = false | |
222 | Hair.BrickColor = BrickColor.new("New Yeller") | |
223 | Hair.TopSurface = "Smooth" | |
224 | Hair.BottomSurface = "Smooth" | |
225 | Weld = Instance.new("Weld") | |
226 | Weld.Name = "Weld" | |
227 | Weld.Part0 = char.Head | |
228 | Weld.Part1 = Hair | |
229 | Weld.Parent = char.Head | |
230 | Weld.C0 = CFrame.new(0, 0.25, -0.2)*CFrame.fromEulerAnglesXYZ(0.1, 0, 0) | |
231 | Mesh = Instance.new("SpecialMesh") | |
232 | Mesh.Parent = Hair | |
233 | Mesh.MeshId = "http://www.roblox.com/asset/?id=83293901" | |
234 | Mesh.TextureId = "http://www.roblox.com/asset/?id=83284747" | |
235 | Mesh.Scale = Vector3.new(1, 1.05, 1) | |
236 | char.Head.face.Texture = "rbxassetid://664468442" | |
237 | ||
238 | num = 1 | |
239 | cooldown = false | |
240 | rand = math.random(1,2) | |
241 | ||
242 | for i = 1,Bacons do | |
243 | wait() | |
244 | char.Archivable = true | |
245 | numb = math.random(1,3) | |
246 | clone = char:Clone() | |
247 | clone.Humanoid.WalkSpeed = 100 | |
248 | clone.Humanoid.Name = "Bacon Soldiers" | |
249 | -- | |
250 | for _, a in pairs(clone:children()) do | |
251 | if a:IsA'BillboardGui' then | |
252 | a:Destroy() | |
253 | elseif a:IsA'Sound' then | |
254 | a.Playing = false | |
255 | end | |
256 | end | |
257 | local txt = Instance.new("BillboardGui", clone) | |
258 | txt.Adornee = clone .Head | |
259 | txt.Name = "thingy" | |
260 | txt.Size = UDim2.new(2, 0, 1.2, 0) | |
261 | txt.StudsOffset = Vector3.new(-1, 2, 0) | |
262 | local text = Instance.new("TextLabel", txt) | |
263 | text.Size = UDim2.new(2, 0, 0.6, 0) | |
264 | text.FontSize = "Size24" | |
265 | text.TextScaled = true | |
266 | text.TextTransparency = 0 | |
267 | text.BackgroundTransparency = 1 | |
268 | text.TextTransparency = 0 | |
269 | text.TextStrokeTransparency = 0 | |
270 | text.Font = "Bodoni" | |
271 | text.TextStrokeColor3 = Color3.new(225, 17, 215) | |
272 | ||
273 | v=Instance.new("Part") | |
274 | v.Name = "ColorBrick" | |
275 | v.Parent=clone | |
276 | v.FormFactor="Symmetric" | |
277 | v.Anchored=true | |
278 | v.CanCollide=false | |
279 | v.BottomSurface="Smooth" | |
280 | v.TopSurface="Smooth" | |
281 | v.Size=Vector3.new(10,5,3) | |
282 | v.Transparency=1 | |
283 | v.CFrame=clone.Torso.CFrame | |
284 | v.BrickColor=BrickColor.new("Toothpaste") | |
285 | v.Transparency=1 | |
286 | text.TextColor3 = Color3.new(1,1,1) | |
287 | v.Shape="Block" | |
288 | text.Text = "-" | |
289 | -- | |
290 | local Hair = Instance.new("Part") | |
291 | Hair.Parent = clone | |
292 | Hair.Name = "Bacon" | |
293 | Hair.Size = Vector3.new(0.1, 0.1, 0.1) | |
294 | Hair.CFrame = clone.Head.CFrame | |
295 | Hair:BreakJoints() | |
296 | Hair.CanCollide = false | |
297 | Hair.BrickColor = BrickColor.new("New Yeller") | |
298 | Hair.TopSurface = "Smooth" | |
299 | Hair.BottomSurface = "Smooth" | |
300 | Weld = Instance.new("Weld") | |
301 | Weld.Name = "Weld" | |
302 | Weld.Part0 = clone.Head | |
303 | Weld.Part1 = Hair | |
304 | Weld.Parent = clone.Head | |
305 | Weld.C0 = CFrame.new(0, 0.25, -0.2)*CFrame.fromEulerAnglesXYZ(0.1, 0, 0) | |
306 | Mesh = Instance.new("SpecialMesh") | |
307 | Mesh.Parent = Hair | |
308 | Mesh.MeshId = "http://www.roblox.com/asset/?id=83293901" | |
309 | Mesh.TextureId = "http://www.roblox.com/asset/?id=83284747" | |
310 | Mesh.Scale = Vector3.new(1, 1.05, 1) | |
311 | -- | |
312 | for _, a in pairs(clone:children()) do | |
313 | if a:IsA'Part' then | |
314 | a.BrickColor = BrickColor:Random() | |
315 | end | |
316 | end | |
317 | if numb == 1 then | |
318 | clone.Head.face.Texture = "rbxassetid://1304527161" | |
319 | text.Text = "BACON RULE THE WORLD" | |
320 | elseif numb == 2 then | |
321 | clone.Head.face.Texture = "rbxassetid://987047828" | |
322 | text.Text = "LOL FREE ROBLOX CASH" | |
323 | else | |
324 | clone.Head.face.Texture = "rbxassetid://664468442" | |
325 | text.Text = "WOWWOW I GOT ROBLOX CASH YAY" | |
326 | end | |
327 | table.insert(clones,clone) | |
328 | end | |
329 | ||
330 | sou = Instance.new("Sound", char.Torso) | |
331 | sou.SoundId = "rbxassetid://1463709693" | |
332 | sou.Looped = true | |
333 | sou.Volume = 2.5 | |
334 | sou.Pitch = 1.4 | |
335 | sou:Play() | |
336 | ||
337 | for _, a in pairs(clones) do | |
338 | a.Parent = char | |
339 | a:MoveTo(root.Position + Vector3.new(math.random(1,10),math.random(1,10),math.random(1,10))) | |
340 | end | |
341 | ||
342 | while wait(0.3) do | |
343 | number = #clones | |
344 | position = root.CFrame | |
345 | protecting = false | |
346 | if aa == nil then | |
347 | followplr = true | |
348 | elseif aa ~= nil then | |
349 | followplr = false | |
350 | end | |
351 | for _, a in pairs(clones) do | |
352 | if a:FindFirstChildOfClass'Humanoid' and followplr then | |
353 | a:FindFirstChildOfClass'Humanoid':MoveTo(root.Position + Vector3.new(math.random(-40,40),0,math.random(-40,40))) | |
354 | end | |
355 | end | |
356 | rand = math.random(1,10) | |
357 | if rand == 5 then | |
358 | for i = 1,3 do | |
359 | random = clones[math.random(1,#clones)] | |
360 | rand = math.random(1,2) | |
361 | if rand == 1 then | |
362 | wait() | |
363 | else | |
364 | wait() | |
365 | end | |
366 | end | |
367 | end | |
368 | end |