View difference between Paste ID: 4pZMXNxT and upBzGf54
SHOW: | | - or go back to the newest paste.
1-
local whitelist = {"quuisiYT", "the770zone"}
1+
if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
2
print(" this script was edited by An ignorant / zach ")
3
warn(" pls dont abuse ")
4
warn(" i beg u ")
5
warn(" PLS ")
6
local Player,game,owner = owner,game
7
local RealPlayer = Player
8
do
9
    print("FE Compatibility code by Mokiros")
10
    local rp = RealPlayer
11
    script.Parent = rp.Character
12
   
13
    --RemoteEvent for communicating
14
    local Event = Instance.new("RemoteEvent")
15
    Event.Name = "UserInput_Event"
16
 
17
    --Fake event to make stuff like Mouse.KeyDown work
18
    local function fakeEvent()
19
        local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end}
20
        t.connect = t.Connect
21
        return t
22
    end
23
 
24
    --Creating fake input objects with fake variables
25
    local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
26
    local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
27
    local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
28
        CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
29
    end}
30
    --Merged 2 functions into one by checking amount of arguments
31
    CAS.UnbindAction = CAS.BindAction
32
 
33
    --This function will trigger the events that have been :Connect()'ed
34
    local function te(self,ev,...)
35
        local t = m[ev]
36
        if t and t._fakeEvent then
37
            for _,f in pairs(t.Functions) do
38
                f(...)
39
            end
40
        end
41
    end
42
    m.TrigEvent = te
43
    UIS.TrigEvent = te
44
 
45
    Event.OnServerEvent:Connect(function(plr,io)
46
        if plr~=rp then return end
47
        m.Target = io.Target
48
        m.Hit = io.Hit
49-
local door = Instance.new("Part")
49+
        if not io.isMouse then
50-
local clickdetector = Instance.new("ClickDetector", door)
50+
            local b = io.UserInputState == Enum.UserInputState.Begin
51
            if io.UserInputType == Enum.UserInputType.MouseButton1 then
52
                return m:TrigEvent(b and "Button1Down" or "Button1Up")
53
            end
54
            for _,t in pairs(CAS.Actions) do
55
                for _,k in pairs(t.Keys) do
56
                    if k==io.KeyCode then
57
                        t.Function(t.Name,io.UserInputState,io)
58
                    end
59
                end
60
            end
61
            m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
62
            UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
63
        end
64
    end)
65
    Event.Parent = NLS([==[
66
    local Player = game:GetService("Players").LocalPlayer
67
    local Event = script:WaitForChild("UserInput_Event")
68
 
69
    local Mouse = Player:GetMouse()
70
    local UIS = game:GetService("UserInputService")
71
    local input = function(io,a)
72
        if a then return end
73
        --Since InputObject is a client-side instance, we create and pass table instead
74
        Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
75
    end
76
    UIS.InputBegan:Connect(input)
77
    UIS.InputEnded:Connect(input)
78
 
79
    local h,t
80
    --Give the server mouse data 30 times every second, but only if the values changed
81
    --If player is not moving their mouse, client won't fire events
82
    while wait(1/30) do
83
        if h~=Mouse.Hit or t~=Mouse.Target then
84
            h,t=Mouse.Hit,Mouse.Target
85
            Event:FireServer({isMouse=true,Target=t,Hit=h})
86
        end
87
    end]==],Player.Character)
88
 
89
    ----Sandboxed game object that allows the usage of client-side methods and services
90
    --Real game object
91
    local _rg = game
92
 
93
    --Metatable for fake service
94
    local fsmt = {
95
        __index = function(self,k)
96
            local s = rawget(self,"_RealService")
97
            if s then return s[k] 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
        __call = function(self,...)
104
            local s = rawget(self,"_RealService")
105
            if s then return s(...) end
106
        end
107
    }
108
    local function FakeService(t,RealService)
109
        t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService
110
        return setmetatable(t,fsmt)
111
    end
112
 
113
    --Fake game object
114
    local g = {
115
        GetService = function(self,s)
116
            return self[s]
117
        end,
118
        Players = FakeService({
119
            LocalPlayer = FakeService({GetMouse=function(self)return m end},Player)
120
        },"Players"),
121
        UserInputService = FakeService(UIS,"UserInputService"),
122
        ContextActionService = FakeService(CAS,"ContextActionService"),
123
    }
124
    rawset(g.Players,"localPlayer",g.Players.LocalPlayer)
125
    g.service = g.GetService
126
   
127
    g.RunService = FakeService({
128
        RenderStepped = _rg:GetService("RunService").Heartbeat,
129
        BindToRenderStep = function(self,name,_,fun)
130
 
131
        end,
132
        UnbindFromRenderStep = function(self,name)
133
            self._btrs[name]:Disconnect()
134
        end,
135
    },"RunService")
136
 
137
    setmetatable(g,{
138
        __index=function(self,s)
139
            return _rg:GetService(s) or typeof(_rg[s])=="function"
140
            and function(_,...)return _rg[s](_rg,...)end or _rg[s]
141
        end,
142
        __newindex = fsmt.__newindex,
143
        __call = fsmt.__call
144
    })
145
    --Changing owner to fake player object to support owner:GetMouse()
146
    game,owner = g,g.Players.LocalPlayer
147
end
148
149
local whitelist = {"zachrogamehard", "quuisiYT", "the770zone"}
150
local model = Instance.new("Model", workspace)
151
local part = Instance.new("Part")
152
local part_2 = Instance.new("Part")
153
local part_3 = Instance.new("Part")
154
local part_4 = Instance.new("Part")
155
local part_5 = Instance.new("Part")
156
local part_6 = Instance.new("Part")
157
local part_7 = Instance.new("Part")
158
local part_8 = Instance.new("Part")
159
local part_9 = Instance.new("Part")
160
local part_10 = Instance.new("Part")
161
local parttopart_strong_joint = Instance.new("ManualWeld")
162
local parttopart_strong_joint_2 = Instance.new("ManualWeld")
163
local part_13 = Instance.new("Part")
164
local part_14 = Instance.new("Part")
165
local part_15 = Instance.new("Part")
166
local part_16 = Instance.new("Part")
167
local part_17 = Instance.new("Part")
168
local part_18 = Instance.new("Part")
169
local part_19 = Instance.new("Part")
170
local part_20 = Instance.new("Part")
171
local part_21 = Instance.new("Part")
172
local part_22 = Instance.new("Part")
173
local bloxy_cola = Instance.new("Tool")
174
local handle = Instance.new("Part")
175
local mesh = Instance.new("SpecialMesh")
176
local part_23 = Instance.new("Part")
177
local parttohandle_strong_joint = Instance.new("ManualWeld")
178
local parttopart_strong_joint_3 = Instance.new("ManualWeld")
179
local houseinteriorbed = Instance.new("Model")
180
local part_25 = Instance.new("Part")
181
local parttopart_strong_joint_4 = Instance.new("ManualWeld")
182
local part_11 = Instance.new("Part")
183
local parttopart_strong_joint_5 = Instance.new("ManualWeld")
184
local part_26 = Instance.new("Part")
185
local parttopart_strong_joint_6 = Instance.new("ManualWeld")
186
local parttopart_strong_joint_7 = Instance.new("ManualWeld")
187
local part_28 = Instance.new("Part")
188
local parttopart_strong_joint_8 = Instance.new("ManualWeld")
189
local part_27 = Instance.new("Part")
190
local part_12 = Instance.new("Part")
191
local parttopart_strong_joint_9 = Instance.new("ManualWeld")
192
local parttopart_strong_joint_10 = Instance.new("ManualWeld")
193
local seat = Instance.new("Seat")
194
local seattopart_strong_joint = Instance.new("ManualWeld")
195
local seattopart_strong_joint_2 = Instance.new("ManualWeld")
196
local part_29 = Instance.new("Part")
197
198
199
local part_30 = Instance.new("Part")
200
local part_31 = Instance.new("Part")
201
local part_32 = Instance.new("Part")
202
local part_33 = Instance.new("Part")
203
local part_34 = Instance.new("Part")
204
local part_35 = Instance.new("Part")
205
local part_36 = Instance.new("Part")
206
local part_37 = Instance.new("Part")
207
local part_38 = Instance.new("Part")
208
local part_39 = Instance.new("Part")
209
local part_40 = Instance.new("Part")
210
local part_41 = Instance.new("Part")
211
local part_42 = Instance.new("Part")
212
local part_43 = Instance.new("Part")
213
local parttopart_strong_joint_11 = Instance.new("ManualWeld")
214
local parttopart_strong_joint_12 = Instance.new("ManualWeld")
215
local parttopart_strong_joint_13 = Instance.new("ManualWeld")
216
local part_45 = Instance.new("Part")
217
local part_46 = Instance.new("Part")
218
local part_47 = Instance.new("Part")
219
local part_44 = Instance.new("Part")
220
local part_48 = Instance.new("Part")
221
local part_49 = Instance.new("Part")
222
local parttopart_strong_joint_14 = Instance.new("ManualWeld")
223
local snysoda = Instance.new("Tool")
224
local handle_2 = Instance.new("Part")
225
local mesh_2 = Instance.new("SpecialMesh")
226-
part_19.BrickColor = BrickColor.new("Really black")
226+
227
local model_2 = Instance.new("Model", model)
228
local part_50 = Instance.new("Part")
229
local part_24 = Instance.new("Part")
230
local parttopart_strong_joint_15 = Instance.new("ManualWeld")
231
local parttopart_strong_joint_16 = Instance.new("ManualWeld")
232
local part_51 = Instance.new("Part")
233
local part_53 = Instance.new("Part")
234
local part_54 = Instance.new("Part")
235
local part_55 = Instance.new("Part")
236
local part_56 = Instance.new("Part")
237
local part_57 = Instance.new("Part")
238
local part_52 = Instance.new("Part")
239
local part_58 = Instance.new("Part")
240
241
part.Anchored = true
242
part.Size = Vector3.new(0.35, 12.05, 13.61)
243
part.Material = Enum.Material.SmoothPlastic
244-
part_21.BrickColor = BrickColor.new("Really black")
244+
245
part.BottomSurface = Enum.SurfaceType.Smooth
246
part.Parent = model
247
part.CFrame = CFrame.new(-30.935, 6.695, -38.805)
248
part_2.Anchored = true
249
part_2.Size = Vector3.new(0.93, 12.05, 27.26)
250
part_2.Material = Enum.Material.SmoothPlastic
251
part_2.TopSurface = Enum.SurfaceType.Smooth
252
part_2.BottomSurface = Enum.SurfaceType.Smooth
253
part_2.Parent = model
254
part_2.CFrame = CFrame.new(4.825, 6.695, -44.5)
255
part_3.Anchored = true
256
part_3.Size = Vector3.new(97.6, 0.58, 37.18)
257
part_3.Material = Enum.Material.SmoothPlastic
258
part_3.TopSurface = Enum.SurfaceType.Smooth
259
part_3.BottomSurface = Enum.SurfaceType.Smooth
260
part_3.Parent = model
261
part_3.CFrame = CFrame.new(15.46, 12.96, -28.71)
262
part_4.Anchored = true
263
part_4.Size = Vector3.new(34.88, 0.45, 32.42)
264
part_4.Material = Enum.Material.Fabric
265
part_4.TopSurface = Enum.SurfaceType.Smooth
266
part_4.BottomSurface = Enum.SurfaceType.Smooth
267
part_4.Parent = model
268
part_4.CFrame = CFrame.new(-13.43, 0.895, -28.89)
269
part_5.Anchored = true
270
part_5.Size = Vector3.new(1.89, 12.05, 46.01)
271
part_5.Material = Enum.Material.SmoothPlastic
272
part_5.TopSurface = Enum.SurfaceType.Smooth
273
part_5.BottomSurface = Enum.SurfaceType.Smooth
274
part_5.Parent = model
275
part_5.CFrame = CFrame.new(62.155, 6.695, -35.125)
276
part_6.Anchored = true
277
part_6.Size = Vector3.new(0.35, 3.17, 7.21)
278
part_6.Material = Enum.Material.SmoothPlastic
279
part_6.TopSurface = Enum.SurfaceType.Smooth
280
part_6.BottomSurface = Enum.SurfaceType.Smooth
281
part_6.Parent = model
282
part_6.CFrame = CFrame.new(-30.935, 11.135, -29.205)
283
part_7.Anchored = true
284
part_7.Size = Vector3.new(93.93, 4.13, 1.26)
285
part_7.Material = Enum.Material.SmoothPlastic
286
part_7.TopSurface = Enum.SurfaceType.Smooth
287
part_7.BottomSurface = Enum.SurfaceType.Smooth
288
part_7.Parent = model
289
part_7.CFrame = CFrame.new(16.155, 10.655, -12.67)
290
part_8.Anchored = true
291
part_8.Size = Vector3.new(0.35, 12.05, 13.61)
292
part_8.Material = Enum.Material.SmoothPlastic
293
part_8.TopSurface = Enum.SurfaceType.Smooth
294
part_8.BottomSurface = Enum.SurfaceType.Smooth
295
part_8.Parent = model
296
part_8.CFrame = CFrame.new(-30.935, 6.695, -18.845)
297
part_9.Anchored = true
298
part_9.Size = Vector3.new(56.02, 12.05, 2.14)
299
part_9.Material = Enum.Material.SmoothPlastic
300
part_9.TopSurface = Enum.SurfaceType.Smooth
301
part_9.BottomSurface = Enum.SurfaceType.Smooth
302
part_9.Parent = model
303
part_9.CFrame = CFrame.new(33.25, 6.695, -57.06)
304
part_10.Anchored = true
305
part_10.Size = Vector3.new(57.85, 0.45, 43.43)
306
part_10.Material = Enum.Material.Fabric
307
part_10.TopSurface = Enum.SurfaceType.Smooth
308
part_10.BottomSurface = Enum.SurfaceType.Smooth
309
part_10.Parent = model
310
part_10.CFrame = CFrame.new(32.885, 0.895, -34.395)
311
parttopart_strong_joint.Part1 = part_11
312
parttopart_strong_joint.C0 = CFrame.new(-28.925, 0.225, 21.715) * CFrame.Angles(-1.571, 0, 3.141)
313
parttopart_strong_joint.C1 = CFrame.new(19.95, -2, 55.531) * CFrame.Angles(-1.571, 0, -1.571)
314
parttopart_strong_joint.Part0 = part_10
315
parttopart_strong_joint.Name = "Part-to-Part Strong Joint"
316
parttopart_strong_joint.Parent = part_10
317
parttopart_strong_joint_2.Part1 = part_12
318
parttopart_strong_joint_2.C0 = CFrame.new(-28.925, 0.225, 21.715) * CFrame.Angles(-1.571, 0, 3.141)
319-
part_11.BrickColor = BrickColor.new("Black")
319+
320
parttopart_strong_joint_2.Part0 = part_10
321
parttopart_strong_joint_2.Name = "Part-to-Part Strong Joint"
322
parttopart_strong_joint_2.Parent = part_10
323
part_13.Anchored = true
324
part_13.Size = Vector3.new(0.93, 12.05, 14.33)
325
part_13.Material = Enum.Material.SmoothPlastic
326
part_13.TopSurface = Enum.SurfaceType.Smooth
327
part_13.BottomSurface = Enum.SurfaceType.Smooth
328
part_13.Parent = model
329
part_13.CFrame = CFrame.new(4.825, 6.695, -19.225)
330
part_14.Anchored = true
331
part_14.Size = Vector3.new(93.72, 3.29, 1.26)
332
part_14.Material = Enum.Material.SmoothPlastic
333
part_14.TopSurface = Enum.SurfaceType.Smooth
334
part_14.BottomSurface = Enum.SurfaceType.Smooth
335
part_14.Parent = model
336
part_14.CFrame = CFrame.new(16.05, 2.415, -12.67)
337
part_15.Anchored = true
338
part_15.Size = Vector3.new(59.81, 0.58, 13.01)
339
part_15.Material = Enum.Material.SmoothPlastic
340
part_15.TopSurface = Enum.SurfaceType.Smooth
341
part_15.BottomSurface = Enum.SurfaceType.Smooth
342
part_15.Parent = model
343
part_15.CFrame = CFrame.new(34.355, 12.96, -53.755)
344
part_16.Anchored = true
345
part_16.Size = Vector3.new(93.86, 4.58, 1.26)
346
part_16.Material = Enum.Material.SmoothPlastic
347
part_16.BottomSurface = Enum.SurfaceType.Smooth
348
part_16.BrickColor = BrickColor.new("Bright blue")
349
part_16.Transparency = 0.7
350
part_16.Color = Color3.new(0.0509804, 0.411765, 0.67451)
351
part_16.TopSurface = Enum.SurfaceType.Smooth
352
part_16.Parent = model
353
part_16.CFrame = CFrame.new(16.12, 6.37, -12.67)
354
part_17.Anchored = true
355
part_17.Size = Vector3.new(35.52, 12.05, 1.02)
356
part_17.Material = Enum.Material.SmoothPlastic
357
part_17.TopSurface = Enum.SurfaceType.Smooth
358
part_17.BottomSurface = Enum.SurfaceType.Smooth
359
part_17.Parent = model
360
part_17.CFrame = CFrame.new(-13.35, 6.695, -45.1)
361
part_18.Anchored = true
362
part_18.Size = Vector3.new(0.93, 3.13, 4.77)
363
part_18.Material = Enum.Material.SmoothPlastic
364
part_18.TopSurface = Enum.SurfaceType.Smooth
365
part_18.BottomSurface = Enum.SurfaceType.Smooth
366
part_18.Parent = model
367
part_18.CFrame = CFrame.new(4.825, 11.155, -28.535)
368
part_19.Anchored = true
369
part_19.Shape = Enum.PartType.Cylinder
370
part_19.Size = Vector3.new(0.05, 0.48, 0.48)
371
part_19.Orientation = Vector3.new(0, 90.01, 0)
372
part_19.Material = Enum.Material.SmoothPlastic
373
part_19.BottomSurface = Enum.SurfaceType.Smooth
374
part_19.BrickColor = BrickColor.new("Lime green")
375
part_19.TopSurface = Enum.SurfaceType.Smooth
376
part_19.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
377
part_19.Parent = model
378
part_19.CFrame = CFrame.new(18.12, 10.65, -50.405) * CFrame.Angles(0, 1.571, 0)
379
part_20.Anchored = true
380
part_20.Size = Vector3.new(0.4, 2.36, 7.76)
381
part_20.Material = Enum.Material.SmoothPlastic
382
part_20.TopSurface = Enum.SurfaceType.Smooth
383
part_20.BottomSurface = Enum.SurfaceType.Smooth
384
part_20.Parent = model
385
part_20.CFrame = CFrame.new(19.17, 11.56, -54.11)
386
part_21.Anchored = true
387
part_21.Shape = Enum.PartType.Cylinder
388
part_21.Size = Vector3.new(0.05, 1, 1)
389
part_21.Orientation = Vector3.new(-0.02, 180, -89.99)
390
part_21.Material = Enum.Material.SmoothPlastic
391
part_21.BottomSurface = Enum.SurfaceType.Smooth
392
part_21.BrickColor = BrickColor.new("Lime green")
393
part_21.TopSurface = Enum.SurfaceType.Smooth
394
part_21.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
395
part_21.Parent = model
396
part_21.CFrame = CFrame.new(10.1, 4.355, -54.23) * CFrame.Angles(-3.141, 0, 1.571)
397
part_22.Anchored = true
398
part_22.Size = Vector3.new(27.84, 2.76, 7.07)
399
part_22.Material = Enum.Material.SmoothPlastic
400
part_22.TopSurface = Enum.SurfaceType.Smooth
401
part_22.BottomSurface = Enum.SurfaceType.Smooth
402
part_22.Parent = model
403
part_22.CFrame = CFrame.new(18.46, 2.42, -54.455)
404
bloxy_cola.GripForward = Vector3.new(-0.976, 0, -0.217)
405
bloxy_cola.GripRight = Vector3.new(0.217, 0, -0.976)
406
bloxy_cola.TextureId = "http://www.roblox.com/asset/?id=10472127"
407
bloxy_cola.Grip = CFrame.new(0.03, 0, 0) * CFrame.Angles(0, 1.352, 0)
408
bloxy_cola.Name = "Bloxy Cola"
409
bloxy_cola.GripPos = Vector3.new(0.03, 0, 0)
410
bloxy_cola.Parent = model
411
handle.Size = Vector3.new(1, 1.2, 1)
412
handle.Orientation = Vector3.new(-0.02, 180, -0.02)
413
handle.BottomSurface = Enum.SurfaceType.Smooth
414
handle.Color = Color3.new(0.803922, 0.803922, 0.803922)
415
handle.BrickColor = BrickColor.new("Mid gray")
416
handle.TopSurface = Enum.SurfaceType.Smooth
417
handle.Name = "Handle"
418
handle.Parent = bloxy_cola
419
handle.CFrame = CFrame.new(-21.44, 4.93, -42.26) * CFrame.Angles(-3.141, 0, 3.141)
420
mesh.MeshType = Enum.MeshType.FileMesh
421
mesh.Scale = Vector3.new(1.2, 1.2, 1.2)
422
mesh.MeshId = "http://www.roblox.com/asset/?id=10470609"
423
mesh.TextureId = "http://www.roblox.com/asset/?id=10470600"
424
mesh.Parent = handle
425
part_23.Anchored = true
426-
door.Anchored = true
426+
427-
door.Size = Vector3.new(0.35, 12.05, 13.61)
427+
428-
door.BottomSurface = Enum.SurfaceType.Smooth
428+
429-
door.Material = Enum.Material.SmoothPlastic
429+
430-
door.TopSurface = Enum.SurfaceType.Smooth
430+
431-
door.Name = "Door"
431+
432-
door.Parent = model
432+
433-
door.CFrame = CFrame.new(-30.665, 6.695, -28.185)
433+
434
parttohandle_strong_joint.C1 = CFrame.new(9.54, -0.6, -1.9) * CFrame.Angles(-1.571, 0, 0)
435
parttohandle_strong_joint.Part0 = part_23
436
parttohandle_strong_joint.Name = "Part-to-Handle Strong Joint"
437
parttohandle_strong_joint.Parent = part_23
438
parttopart_strong_joint_3.Part1 = part_24
439
parttopart_strong_joint_3.C0 = CFrame.new(-9.58, 0.29, 2.54) * CFrame.Angles(-1.571, 0, -3.142)
440
parttopart_strong_joint_3.C1 = CFrame.new(-14.456, -0.48, 5.556) * CFrame.Angles(-1.571, 0, -2.957)
441
parttopart_strong_joint_3.Part0 = part_23
442
parttopart_strong_joint_3.Name = "Part-to-Part Strong Joint"
443
parttopart_strong_joint_3.Parent = part_23
444
houseinteriorbed.Name = "houseInteriorBed"
445
houseinteriorbed.Parent = model
446
part_25.Anchored = true
447
part_25.Size = Vector3.new(3, 0.8, 2)
448
part_25.Orientation = Vector3.new(0, -90.01, 0)
449
part_25.Color = Color3.new(0.94902, 0.952941, 0.952941)
450
part_25.BottomSurface = Enum.SurfaceType.Smooth
451
part_25.TopSurface = Enum.SurfaceType.Smooth
452
part_25.BrickColor = BrickColor.new("White")
453
part_25.Parent = houseinteriorbed
454
part_25.CFrame = CFrame.new(57.49, 3.92, -34.23) * CFrame.Angles(0, -1.571, 0)
455
parttopart_strong_joint_4.Part1 = part_26
456
parttopart_strong_joint_4.C0 = CFrame.new(1.5, -0.4, 1) * CFrame.Angles(1.571, 0, 0)
457
parttopart_strong_joint_4.C1 = CFrame.new(-0.1, 0.5, 1) * CFrame.Angles(1.571, 0, 0)
458
parttopart_strong_joint_4.Part0 = part_25
459
parttopart_strong_joint_4.Name = "Part-to-Part Strong Joint"
460
parttopart_strong_joint_4.Parent = part_25
461
part_11.Anchored = true
462
part_11.Size = Vector3.new(8, 4, 1)
463
part_11.Orientation = Vector3.new(0, -90.01, 0)
464
part_11.Color = Color3.new(0.105882, 0.164706, 0.207843)
465
part_11.BottomSurface = Enum.SurfaceType.Smooth
466
part_11.TopSurface = Enum.SurfaceType.Smooth
467
part_11.BrickColor = BrickColor.new("Lime green")
468
part_11.Parent = houseinteriorbed
469
part_11.CFrame = CFrame.new(59.49, 3.12, -32.63) * CFrame.Angles(0, -1.571, 0)
470
parttopart_strong_joint_5.Part1 = part_27
471
parttopart_strong_joint_5.C0 = CFrame.new(-4, -2, 0.5)
472
parttopart_strong_joint_5.C1 = CFrame.new(-4, -1.2, -7.5)
473
parttopart_strong_joint_5.Part0 = part_11
474
parttopart_strong_joint_5.Name = "Part-to-Part Strong Joint"
475
parttopart_strong_joint_5.Parent = part_11
476
part_26.Anchored = true
477
part_26.Size = Vector3.new(7, 1, 3)
478
part_26.Orientation = Vector3.new(0, -90.01, 0)
479
part_26.Color = Color3.new(0.94902, 0.952941, 0.952941)
480
part_26.BottomSurface = Enum.SurfaceType.Smooth
481
part_26.TopSurface = Enum.SurfaceType.Smooth
482
part_26.BrickColor = BrickColor.new("White")
483
part_26.Parent = houseinteriorbed
484
part_26.CFrame = CFrame.new(57.49, 3.02, -32.63) * CFrame.Angles(0, -1.571, 0)
485
parttopart_strong_joint_6.Part1 = part_27
486
parttopart_strong_joint_6.C0 = CFrame.new(3.5, -0.5, 1.5) * CFrame.Angles(1.571, 0, 0)
487
parttopart_strong_joint_6.C1 = CFrame.new(3.5, 0.2, -4.5) * CFrame.Angles(1.571, 0, 0)
488
parttopart_strong_joint_6.Part0 = part_26
489
parttopart_strong_joint_6.Name = "Part-to-Part Strong Joint"
490
parttopart_strong_joint_6.Parent = part_26
491
parttopart_strong_joint_7.Part1 = part_11
492
parttopart_strong_joint_7.C0 = CFrame.new(3.5, -0.5, -1.5) * CFrame.Angles(3.141, 0, 3.141)
493
parttopart_strong_joint_7.C1 = CFrame.new(3.5, -0.6, 0.5) * CFrame.Angles(3.141, 0, 3.141)
494
parttopart_strong_joint_7.Part0 = part_26
495
parttopart_strong_joint_7.Name = "Part-to-Part Strong Joint"
496
parttopart_strong_joint_7.Parent = part_26
497
part_28.Anchored = true
498
part_28.Size = Vector3.new(3, 0.8, 2)
499
part_28.Orientation = Vector3.new(0, -90.01, 0)
500
part_28.Color = Color3.new(0.94902, 0.952941, 0.952941)
501
part_28.BottomSurface = Enum.SurfaceType.Smooth
502
part_28.TopSurface = Enum.SurfaceType.Smooth
503
part_28.BrickColor = BrickColor.new("White")
504
part_28.Parent = houseinteriorbed
505
part_28.CFrame = CFrame.new(57.49, 3.92, -31.03) * CFrame.Angles(0, -1.571, 0)
506
parttopart_strong_joint_8.Part1 = part_26
507
parttopart_strong_joint_8.C0 = CFrame.new(1.5, -0.4, 1) * CFrame.Angles(1.571, 0, 0)
508
parttopart_strong_joint_8.C1 = CFrame.new(3.1, 0.5, 1) * CFrame.Angles(1.571, 0, 0)
509
parttopart_strong_joint_8.Part0 = part_28
510
parttopart_strong_joint_8.Name = "Part-to-Part Strong Joint"
511
parttopart_strong_joint_8.Parent = part_28
512
part_27.Anchored = true
513
part_27.Size = Vector3.new(8, 0.4, 15)
514
part_27.Orientation = Vector3.new(0, -90.01, 0)
515
part_27.Color = Color3.new(0.105882, 0.164706, 0.207843)
516
part_27.BottomSurface = Enum.SurfaceType.Smooth
517
part_27.TopSurface = Enum.SurfaceType.Smooth
518
part_27.BrickColor = BrickColor.new("Black")
519
part_27.Parent = houseinteriorbed
520
part_27.CFrame = CFrame.new(51.49, 2.32, -32.63) * CFrame.Angles(0, -1.571, 0)
521
part_12.Anchored = true
522
part_12.Size = Vector3.new(7, 1, 14.5)
523
part_12.Orientation = Vector3.new(0, -90.01, 0)
524
part_12.Color = Color3.new(0.105882, 0.164706, 0.207843)
525
part_12.BottomSurface = Enum.SurfaceType.Smooth
526
part_12.TopSurface = Enum.SurfaceType.Smooth
527
part_12.BrickColor = BrickColor.new("Black")
528
part_12.Parent = houseinteriorbed
529
part_12.CFrame = CFrame.new(51.74, 1.62, -32.63) * CFrame.Angles(0, -1.571, 0)
530
parttopart_strong_joint_9.Part1 = part_27
531
parttopart_strong_joint_9.C0 = CFrame.new(-3.5, 0.5, 7.25) * CFrame.Angles(-1.571, 0, 3.141)
532
parttopart_strong_joint_9.C1 = CFrame.new(-3.5, -0.2, 7) * CFrame.Angles(-1.571, 0, 3.141)
533
parttopart_strong_joint_9.Part0 = part_12
534
parttopart_strong_joint_9.Name = "Part-to-Part Strong Joint"
535
parttopart_strong_joint_9.Parent = part_12
536
parttopart_strong_joint_10.Part1 = part_11
537
parttopart_strong_joint_10.C0 = CFrame.new(3.5, -0.5, -7.25) * CFrame.Angles(3.141, 0, 3.141)
538
parttopart_strong_joint_10.C1 = CFrame.new(3.5, -2, 0.5) * CFrame.Angles(3.141, 0, 3.141)
539
parttopart_strong_joint_10.Part0 = part_12
540
parttopart_strong_joint_10.Name = "Part-to-Part Strong Joint"
541
parttopart_strong_joint_10.Parent = part_12
542
seat.Anchored = true
543
seat.Size = Vector3.new(7, 1, 11.5)
544
seat.Orientation = Vector3.new(0, 90.01, 0)
545
seat.BrickColor = BrickColor.new("Bright red")
546
seat.BottomSurface = Enum.SurfaceType.Smooth
547
seat.TopSurface = Enum.SurfaceType.Smooth
548
seat.Color = Color3.new(0.768628, 0.156863, 0.109804)
549
seat.Parent = houseinteriorbed
550
seat.CFrame = CFrame.new(50.24, 3.02, -32.63) * CFrame.Angles(0, 1.571, 0)
551
seattopart_strong_joint.Part1 = part_27
552
seattopart_strong_joint.C0 = CFrame.new(3.5, -0.5, 5.75) * CFrame.Angles(1.571, 0, 0)
553
seattopart_strong_joint.C1 = CFrame.new(-3.499, 0.2, -4.5) * CFrame.Angles(1.571, 0, -3.141)
554
seattopart_strong_joint.Part0 = seat
555
seattopart_strong_joint.Name = "Seat-to-Part Strong Joint"
556
seattopart_strong_joint.Parent = seat
557
seattopart_strong_joint_2.Part1 = part_26
558
seattopart_strong_joint_2.C0 = CFrame.new(-3.5, -0.5, 5.75)
559
seattopart_strong_joint_2.C1 = CFrame.new(3.501, -0.5, 1.5) * CFrame.Angles(3.141, 0, 3.141)
560
seattopart_strong_joint_2.Part0 = seat
561
seattopart_strong_joint_2.Name = "Seat-to-Part Strong Joint"
562
seattopart_strong_joint_2.Parent = seat
563
part_29.Anchored = true
564
part_29.Shape = Enum.PartType.Cylinder
565
part_29.Size = Vector3.new(0.05, 0.48, 0.48)
566
part_29.Orientation = Vector3.new(0, 90.01, 0)
567
part_29.Material = Enum.Material.SmoothPlastic
568
part_29.BottomSurface = Enum.SurfaceType.Smooth
569
part_29.BrickColor = BrickColor.new("Really black")
570
part_29.TopSurface = Enum.SurfaceType.Smooth
571
part_29.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
572
part_29.Parent = model
573
part_29.CFrame = CFrame.new(26.79, 3.2, -50.405) * CFrame.Angles(0, 1.571, 0)
574
575
part_30.Anchored = true
576
part_30.Size = Vector3.new(0.4, 2.36, 7.76)
577
part_30.Material = Enum.Material.SmoothPlastic
578
part_30.TopSurface = Enum.SurfaceType.Smooth
579
part_30.BottomSurface = Enum.SurfaceType.Smooth
580
part_30.Parent = model
581
part_30.CFrame = CFrame.new(23.04, 11.56, -54.11)
582
part_31.Anchored = true
583
part_31.Shape = Enum.PartType.Cylinder
584
part_31.Size = Vector3.new(0.05, 0.48, 0.48)
585
part_31.Orientation = Vector3.new(0, 90.01, 0)
586
part_31.Material = Enum.Material.SmoothPlastic
587
part_31.BottomSurface = Enum.SurfaceType.Smooth
588
part_31.BrickColor = BrickColor.new("Really black")
589
part_31.TopSurface = Enum.SurfaceType.Smooth
590
part_31.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
591
part_31.Parent = model
592
part_31.CFrame = CFrame.new(21.99, 10.65, -50.405) * CFrame.Angles(0, 1.571, 0)
593
part_32.Anchored = true
594
part_32.Shape = Enum.PartType.Cylinder
595
part_32.Size = Vector3.new(0.05, 0.48, 0.48)
596
part_32.Orientation = Vector3.new(0, 90.01, 0)
597
part_32.Material = Enum.Material.SmoothPlastic
598
part_32.BottomSurface = Enum.SurfaceType.Smooth
599
part_32.BrickColor = BrickColor.new("Really black")
600
part_32.TopSurface = Enum.SurfaceType.Smooth
601
part_32.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
602
part_32.Parent = model
603
part_32.CFrame = CFrame.new(18.12, 3.2, -50.405) * CFrame.Angles(0, 1.571, 0)
604
part_33.Anchored = true
605
part_33.Size = Vector3.new(8.51, 2.94, 7.2)
606
part_33.Material = Enum.Material.SmoothPlastic
607
part_33.TopSurface = Enum.SurfaceType.Smooth
608
part_33.BottomSurface = Enum.SurfaceType.Smooth
609
part_33.Parent = model
610
part_33.CFrame = CFrame.new(8.795, 2.5, -54.39)
611
part_34.Anchored = true
612
part_34.Size = Vector3.new(6.52, 2.94, 7.3)
613
part_34.Material = Enum.Material.SmoothPlastic
614
part_34.BrickColor = BrickColor.new("Really black")
615
part_34.BottomSurface = Enum.SurfaceType.Smooth
616
part_34.TopSurface = Enum.SurfaceType.Smooth
617
part_34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
618
part_34.Parent = model
619
part_34.CFrame = CFrame.new(9.06, 2.5, -54.34)
620
part_35.Anchored = true
621
part_35.Shape = Enum.PartType.Cylinder
622
part_35.Size = Vector3.new(0.05, 1, 1)
623
part_35.Orientation = Vector3.new(-0.02, 180, -89.99)
624
part_35.Material = Enum.Material.SmoothPlastic
625
part_35.BottomSurface = Enum.SurfaceType.Smooth
626
part_35.BrickColor = BrickColor.new("Really black")
627
part_35.TopSurface = Enum.SurfaceType.Smooth
628
part_35.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
629
part_35.Parent = model
630
part_35.CFrame = CFrame.new(7.24, 4.355, -54.21) * CFrame.Angles(-3.141, 0, 1.571)
631
part_36.Anchored = true
632
part_36.Shape = Enum.PartType.Cylinder
633
part_36.Size = Vector3.new(0.05, 0.48, 0.48)
634
part_36.Orientation = Vector3.new(0, 90.01, 0)
635
part_36.Material = Enum.Material.SmoothPlastic
636
part_36.BottomSurface = Enum.SurfaceType.Smooth
637
part_36.BrickColor = BrickColor.new("Really black")
638
part_36.TopSurface = Enum.SurfaceType.Smooth
639
part_36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
640
part_36.Parent = model
641
part_36.CFrame = CFrame.new(11.42, 4.02, -50.405) * CFrame.Angles(0, 1.571, 0)
642-
snysoda.Name = "Sny-Soda"
642+
643
part_37.Shape = Enum.PartType.Cylinder
644-
snysoda.CanBeDropped = false
644+
645
part_37.Orientation = Vector3.new(0, 90.01, 0)
646
part_37.Material = Enum.Material.SmoothPlastic
647
part_37.BottomSurface = Enum.SurfaceType.Smooth
648
part_37.BrickColor = BrickColor.new("Really black")
649
part_37.TopSurface = Enum.SurfaceType.Smooth
650
part_37.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
651
part_37.Parent = model
652
part_37.CFrame = CFrame.new(10.47, 4.02, -50.405) * CFrame.Angles(0, 1.571, 0)
653-
mesh_2.MeshId = "http://www.roblox.com/asset/?id=10470609"
653+
654
part_38.Shape = Enum.PartType.Cylinder
655-
decal.Texture = "http://www.roblox.com/asset/?id=278162610"
655+
656
part_38.Orientation = Vector3.new(0, 90.01, 0)
657
part_38.Material = Enum.Material.SmoothPlastic
658
part_38.BottomSurface = Enum.SurfaceType.Smooth
659
part_38.BrickColor = BrickColor.new("Really black")
660
part_38.TopSurface = Enum.SurfaceType.Smooth
661
part_38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
662
part_38.Parent = model
663
part_38.CFrame = CFrame.new(9.48, 4.02, -50.405) * CFrame.Angles(0, 1.571, 0)
664
part_39.Anchored = true
665
part_39.Shape = Enum.PartType.Cylinder
666
part_39.Size = Vector3.new(0.05, 0.48, 0.48)
667
part_39.Orientation = Vector3.new(0, 90.01, 0)
668
part_39.Material = Enum.Material.SmoothPlastic
669
part_39.BottomSurface = Enum.SurfaceType.Smooth
670
part_39.BrickColor = BrickColor.new("Really black")
671
part_39.TopSurface = Enum.SurfaceType.Smooth
672
part_39.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
673
part_39.Parent = model
674
part_39.CFrame = CFrame.new(8.66, 4.02, -50.405) * CFrame.Angles(0, 1.571, 0)
675
part_40.Anchored = true
676
part_40.Shape = Enum.PartType.Cylinder
677
part_40.Size = Vector3.new(0.05, 1, 1)
678
part_40.Orientation = Vector3.new(-0.02, 180, -89.99)
679
part_40.Material = Enum.Material.SmoothPlastic
680
part_40.BottomSurface = Enum.SurfaceType.Smooth
681
part_40.BrickColor = BrickColor.new("Really black")
682
part_40.TopSurface = Enum.SurfaceType.Smooth
683
part_40.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
684
part_40.Parent = model
685
part_40.CFrame = CFrame.new(7.24, 4.355, -52.4) * CFrame.Angles(-3.141, 0, 1.571)
686
part_41.Anchored = true
687
part_41.Shape = Enum.PartType.Cylinder
688
part_41.Size = Vector3.new(0.05, 1, 1)
689
part_41.Orientation = Vector3.new(-0.02, 180, -89.99)
690
part_41.Material = Enum.Material.SmoothPlastic
691
part_41.BottomSurface = Enum.SurfaceType.Smooth
692
part_41.BrickColor = BrickColor.new("Really black")
693
part_41.TopSurface = Enum.SurfaceType.Smooth
694
part_41.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
695
part_41.Parent = model
696
part_41.CFrame = CFrame.new(10.1, 4.355, -52.4) * CFrame.Angles(-3.141, 0, 1.571)
697
part_42.Anchored = true
698
part_42.Size = Vector3.new(27.84, 0.58, 7.56)
699
part_42.Material = Enum.Material.SmoothPlastic
700
part_42.TopSurface = Enum.SurfaceType.Smooth
701
part_42.BottomSurface = Enum.SurfaceType.Smooth
702
part_42.Parent = model
703
part_42.CFrame = CFrame.new(18.46, 4.04, -54.21)
704
part_43.Anchored = true
705
part_43.Size = Vector3.new(25.5, 2.36, 7.56)
706
part_43.Material = Enum.Material.SmoothPlastic
707
part_43.TopSurface = Enum.SurfaceType.Smooth
708
part_43.BottomSurface = Enum.SurfaceType.Smooth
709
part_43.Parent = model
710
part_43.CFrame = CFrame.new(17.75, 11.56, -54.21)
711
parttopart_strong_joint_11.Part1 = part_44
712
parttopart_strong_joint_11.C0 = CFrame.new(-12.75, -1.18, 3.78)
713
parttopart_strong_joint_11.C1 = CFrame.new(0.025, -0.27, -20.39) * CFrame.Angles(0, -1.571, 0)
714
parttopart_strong_joint_11.Part0 = part_43
715
parttopart_strong_joint_11.Name = "Part-to-Part Strong Joint"
716
parttopart_strong_joint_11.Parent = part_43
717
parttopart_strong_joint_12.Part1 = part_31
718
parttopart_strong_joint_12.C0 = CFrame.new(-12.75, -1.18, 3.78)
719
parttopart_strong_joint_12.C1 = CFrame.new(0.025, -0.27, -16.99) * CFrame.Angles(0, -1.571, 0)
720
parttopart_strong_joint_12.Part0 = part_43
721
parttopart_strong_joint_12.Name = "Part-to-Part Strong Joint"
722
parttopart_strong_joint_12.Parent = part_43
723
parttopart_strong_joint_13.Part1 = part_19
724
parttopart_strong_joint_13.C0 = CFrame.new(-12.75, -1.18, 3.78)
725
parttopart_strong_joint_13.C1 = CFrame.new(0.025, -0.27, -13.12) * CFrame.Angles(0, -1.571, 0)
726
parttopart_strong_joint_13.Part0 = part_43
727
parttopart_strong_joint_13.Name = "Part-to-Part Strong Joint"
728
parttopart_strong_joint_13.Parent = part_43
729
part_45.Anchored = true
730
part_45.Size = Vector3.new(6.73, 4.11, 5.45)
731
part_45.Material = Enum.Material.SmoothPlastic
732
part_45.TopSurface = Enum.SurfaceType.Smooth
733
part_45.BottomSurface = Enum.SurfaceType.Smooth
734
part_45.Parent = model
735
part_45.CFrame = CFrame.new(8.365, 10.685, -55.265)
736
part_46.Anchored = true
737
part_46.Size = Vector3.new(6.76, 3.21, 6.29)
738
part_46.Material = Enum.Material.SmoothPlastic
739
part_46.TopSurface = Enum.SurfaceType.Smooth
740
part_46.BottomSurface = Enum.SurfaceType.Smooth
741
part_46.Parent = model
742
part_46.CFrame = CFrame.new(8.38, 11.135, -54.845)
743
part_47.Anchored = true
744
part_47.Size = Vector3.new(0.4, 2.36, 7.76)
745
part_47.Material = Enum.Material.SmoothPlastic
746
part_47.TopSurface = Enum.SurfaceType.Smooth
747
part_47.BottomSurface = Enum.SurfaceType.Smooth
748
part_47.Parent = model
749
part_47.CFrame = CFrame.new(26.44, 11.56, -54.11)
750
part_44.Anchored = true
751
part_44.Shape = Enum.PartType.Cylinder
752
part_44.Size = Vector3.new(0.05, 0.48, 0.48)
753
part_44.Orientation = Vector3.new(0, 90.01, 0)
754
part_44.Material = Enum.Material.SmoothPlastic
755
part_44.BottomSurface = Enum.SurfaceType.Smooth
756
part_44.BrickColor = BrickColor.new("Really black")
757
part_44.TopSurface = Enum.SurfaceType.Smooth
758
part_44.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
759
part_44.Parent = model
760
part_44.CFrame = CFrame.new(25.39, 10.65, -50.405) * CFrame.Angles(0, 1.571, 0)
761
part_48.Anchored = true
762
part_48.Size = Vector3.new(0.4, 2.36, 7.76)
763
part_48.Material = Enum.Material.SmoothPlastic
764
part_48.TopSurface = Enum.SurfaceType.Smooth
765
part_48.BottomSurface = Enum.SurfaceType.Smooth
766
part_48.Parent = model
767
part_48.CFrame = CFrame.new(15.33, 11.56, -54.11)
768-
local sounds = {"333225702", "1274746827", "1077911675", "1526834218", "1010092174", "130823281"}
768+
769
part_49.Size = Vector3.new(1.08, 10.91, 7.56)
770
part_49.Material = Enum.Material.SmoothPlastic
771
part_49.TopSurface = Enum.SurfaceType.Smooth
772
part_49.BottomSurface = Enum.SurfaceType.Smooth
773
part_49.Parent = model
774
part_49.CFrame = CFrame.new(22.49, 5.455, -54.21)
775
parttopart_strong_joint_14.Part1 = part_31
776
parttopart_strong_joint_14.C0 = CFrame.new(-0.54, -5.455, 3.78)
777
parttopart_strong_joint_14.C1 = CFrame.new(0.025, -10.65, -0.04) * CFrame.Angles(0, -1.57, 0)
778
parttopart_strong_joint_14.Part0 = part_49
779
parttopart_strong_joint_14.Name = "Part-to-Part Strong Joint"
780
parttopart_strong_joint_14.Parent = part_49
781
snysoda.GripForward = Vector3.new(-0.968, 0, -0.252)
782
snysoda.GripRight = Vector3.new(0.252, 0, -0.968)
783
snysoda.Name = "maddox's hat"
784
snysoda.Grip = CFrame.new(0, 0, 0) * CFrame.Angles(0, 1.316, 0)
785
snysoda.CanBeDropped = true
786
snysoda.Parent = model
787
handle_2.Size = Vector3.new(1, 1, 1)
788
handle_2.Orientation = Vector3.new(0.01, 106.15, -0.04)
789-
createtext.Text = "Hello someone and who are you?"
789+
790
handle_2.Parent = snysoda
791-
local mouse = plr:GetMouse()
791+
792
mesh_2.Scale = Vector3.new(1.2, 1.2, 1.2)
793-
door.ClickDetector.MouseClick:Connect(function(plr)
793+
794-
	for i,v in pairs(whitelist) do
794+
mesh_2.MeshId = "http://www.roblox.com/asset/?id=2711178"
795-
		if plr.Name == v then
795+
796-
			print("YES!")
796+
decal.Texture = "http://www.roblox.com/asset/?id=32935396"
797-
			if open == false then
797+
798-
			
798+
799-
				
799+
800-
				
800+
801-
			for i = 1,30 do
801+
802-
				door.CFrame = door.CFrame * CFrame.new(0,0,.3)
802+
803-
				wait()
803+
804-
			end
804+
805-
			open = true
805+
806-
		
806+
807-
			else
807+
808-
			for i = 1,30 do
808+
809-
				door.CFrame = door.CFrame * CFrame.new(0,0,-.3)
809+
810-
				wait()
810+
811-
			end	
811+
812-
			open = false
812+
813-
			
813+
814-
			
814+
815-
			
815+
816-
			end
816+
817-
		end
817+
818-
	end
818+
819-
end)
819+
820
parttopart_strong_joint_15.Parent = part_24
821
parttopart_strong_joint_16.Part1 = part_52
822
parttopart_strong_joint_16.C0 = CFrame.new(-2, 0.5, 1) * CFrame.Angles(-1.571, 0, -3.142)
823
parttopart_strong_joint_16.C1 = CFrame.new(-2.03, -0.275, 0.93) * CFrame.Angles(-1.571, 0, -3.142)
824
parttopart_strong_joint_16.Part0 = part_24
825
parttopart_strong_joint_16.Name = "Part-to-Part Strong Joint"
826
parttopart_strong_joint_16.Parent = part_24
827
part_51.Anchored = true
828
part_51.Size = Vector3.new(3, 0.5, 2)
829
part_51.BottomSurface = Enum.SurfaceType.Smooth
830
part_51.Material = Enum.Material.SmoothPlastic
831
part_51.TopSurface = Enum.SurfaceType.Smooth
832
part_51.Orientation = Vector3.new(0, -10.57, 0)
833
part_51.Parent = model_2
834
part_51.CFrame = CFrame.new(-15.75, 5.56, -43.169) * CFrame.Angles(0, -0.185, 0)
835
part_53.Anchored = true
836
part_53.Shape = Enum.PartType.Cylinder
837
part_53.Size = Vector3.new(2, 1, 2)
838
part_53.Material = Enum.Material.SmoothPlastic
839
part_53.Orientation = Vector3.new(0, 79.43, 0)
840
part_53.BottomSurface = Enum.SurfaceType.Smooth
841
part_53.TopSurface = Enum.SurfaceType.Smooth
842
part_53.Parent = model_2
843
part_53.CFrame = CFrame.new(-14.275, 5.31, -42.894) * CFrame.Angles(0, 1.386, 0)
844
part_54.Anchored = true
845
part_54.Size = Vector3.new(1.1, 0.31, 0.12)
846
part_54.Orientation = Vector3.new(0, -10.57, 0)
847
part_54.Material = Enum.Material.SmoothPlastic
848
part_54.BottomSurface = Enum.SurfaceType.Smooth
849
part_54.BrickColor = BrickColor.new("Black")
850
part_54.TopSurface = Enum.SurfaceType.Smooth
851
part_54.Color = Color3.new(0.105882, 0.164706, 0.207843)
852
part_54.Parent = model_2
853
part_54.CFrame = CFrame.new(-16.014, 4.805, -42.191) * CFrame.Angles(0, -0.185, 0)
854
part_55.Anchored = true
855
part_55.Size = Vector3.new(1.1, 0.31, 0.12)
856
part_55.Orientation = Vector3.new(0, -10.57, 107.23)
857
part_55.Material = Enum.Material.SmoothPlastic
858
part_55.BottomSurface = Enum.SurfaceType.Smooth
859
part_55.BrickColor = BrickColor.new("Black")
860
part_55.TopSurface = Enum.SurfaceType.Smooth
861
part_55.Color = Color3.new(0.105882, 0.164706, 0.207843)
862
part_55.Parent = model_2
863
part_55.CFrame = CFrame.new(-16.911, 5.995, -43.599) * CFrame.Angles(0, -0.185, 1.871)
864
part_56.Anchored = true
865
part_56.Size = Vector3.new(1.1, 0.31, 0.12)
866
part_56.Orientation = Vector3.new(0, -10.57, 118.33)
867
part_56.Material = Enum.Material.SmoothPlastic
868
part_56.BottomSurface = Enum.SurfaceType.Smooth
869
part_56.BrickColor = BrickColor.new("Black")
870
part_56.TopSurface = Enum.SurfaceType.Smooth
871
part_56.Color = Color3.new(0.105882, 0.164706, 0.207843)
872
part_56.Parent = model_2
873
part_56.CFrame = CFrame.new(-17.314, 6.935, -43.675) * CFrame.Angles(0, -0.185, 2.065)
874
part_57.Anchored = true
875
part_57.Shape = Enum.PartType.Cylinder
876
part_57.Size = Vector3.new(0.14, 1, 2)
877
part_57.Orientation = Vector3.new(0, 79.43, 0)
878
part_57.Material = Enum.Material.SmoothPlastic
879
part_57.BottomSurface = Enum.SurfaceType.Smooth
880
part_57.BrickColor = BrickColor.new("Black")
881
part_57.TopSurface = Enum.SurfaceType.Smooth
882
part_57.Color = Color3.new(0.105882, 0.164706, 0.207843)
883
part_57.Parent = model_2
884
part_57.CFrame = CFrame.new(-17.248, 5.14, -42.391) * CFrame.Angles(0, 1.386, 0)
885
part_52.Anchored = true
886
part_52.Size = Vector3.new(2.22, 0.55, 1.56)
887
part_52.BottomSurface = Enum.SurfaceType.Smooth
888
part_52.Material = Enum.Material.SmoothPlastic
889
part_52.TopSurface = Enum.SurfaceType.Smooth
890
part_52.Orientation = Vector3.new(0, -10.57, 0)
891
part_52.Parent = model_2
892
part_52.CFrame = CFrame.new(-15.733, 5.585, -43.095) * CFrame.Angles(0, -0.185, 0)
893
part_58.Anchored = true
894
part_58.Shape = Enum.PartType.Cylinder
895
part_58.Size = Vector3.new(0.14, 1, 2)
896
part_58.Orientation = Vector3.new(0, 79.43, 0)
897
part_58.Material = Enum.Material.SmoothPlastic
898
part_58.BottomSurface = Enum.SurfaceType.Smooth
899
part_58.BrickColor = BrickColor.new("Black")
900
part_58.TopSurface = Enum.SurfaceType.Smooth
901
part_58.Color = Color3.new(0.105882, 0.164706, 0.207843)
902
part_58.Parent = model_2
903
part_58.CFrame = CFrame.new(-14.728, 5.14, -41.941) * CFrame.Angles(0, 1.386, 0)
904
local cliky = Instance.new("ClickDetector")
905
cliky.Parent = part_51
906
local sound = Instance.new("Sound", part_51)
907
sound.Volume = 6
908
sound.Looped = false
909
local sounds = {"547125234", "710238108", "2516100492", "1571736139", "2385953834", "235817096"}
910
cliky.MouseClick:Connect(function()
911
	sound.SoundId = "rbxassetid://".. sounds[math.random(1,#sounds)]
912
	sound:Play()
913
end)
914
wait(.5)
915
916
local open = false
917
918
local plr = game.Players.LocalPlayer
919
local char = plr.Character
920
921
	local creatortag = Instance.new("BillboardGui")
922
creatortag.Size = UDim2.new(0,200,0,100)
923
creatortag.Parent = plr.Character.Head
924
creatortag.StudsOffset = Vector3.new(0,3,0)
925
local createtext = Instance.new("TextLabel")
926
createtext.Parent = creatortag
927
createtext:TweenSize(UDim2.new(1,0,1,0))
928
createtext.BackgroundTransparency = 1
929
createtext.TextColor3 = Color3.new(255,255,255)
930
createtext.Text = "Yep another day another time to waste"
931
RootJoint = char.HumanoidRootPart["RootJoint"]
932
local mouse = plr:GetMouse()