Advertisement
Confluent

Misc. Scripts

Mar 1st, 2016
10,272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.56 KB | None | 0 0
  1.  
  2. Decal Brick Spam
  3.  
  4. local TextId = "rbxassetid://338700690" -- Decal ID Here
  5. local DecalSpam = 1 -- Number of times you want decal ran
  6. local Victim = game.Players.LocalPlayer.Name -- Who do you want the brick to spawn by; Change LocalPlayer to the name of the player you want it to spawn by!
  7.  
  8. nPart = Instance.new("Part",game.Workspace)
  9. nPart.Name = "DecalPicture"
  10. nPart.Size = Vector3.new(25,1,25)
  11. nPart.Anchored = true
  12. nPart.TopSurface = "Smooth"
  13.  
  14. nPart:MoveTo(game.Workspace.Victim.Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
  15.  
  16. nIntV = Instance.new("IntValue",nPart)
  17. nIntV.Name = "TestedValue"
  18. nIntV.Value = 0
  19.  
  20. while nIntV.Value <= DecalSpam do
  21.  
  22. nDecal = Instance.new("Decal",nPart)
  23. nDecal.Texture = TextId
  24. nDecal.Face = "Top"
  25. nIntV.Value = nIntV.Value + 1
  26. wait()
  27.  
  28. end
  29.  
  30. FFA Aimbot (Rocky2u)
  31.  
  32. loadstring(game:GetObjects('rbxassetid://340856112')[1].Source)()
  33.  
  34. wait()
  35.  
  36. _G.FREE_FOR_ALL = true
  37.  
  38. _G.BIND = 50 -- LEFT CTRL
  39. _G.ESP_BIND = 48 -- LEFT ALT
  40. _G.CHANGE_AIM = 'q'
  41.  
  42. Teams Aimbot (Rocky2u)
  43.  
  44. loadstring(game:GetObjects('rbxassetid://340856112')[1].Source)()
  45.  
  46. wait()
  47.  
  48. _G.FREE_FOR_ALL = false
  49.  
  50. _G.BIND = 50 -- LEFT CTRL
  51. _G.ESP_BIND = 48 -- LEFT ALT
  52. _G.CHANGE_AIM = 'q'
  53.  
  54.  
  55. Filtering Enabled Check
  56.  
  57. print(game.Workspace.FilteringEnabled)
  58.  
  59. Find All GUI's
  60.  
  61. function recurse(x)
  62. if x:isA("ScreenGui") then
  63. print(x.ClassName.." : "..x:GetFullName())
  64. else
  65. for i,v in pairs(x:GetChildren()) do
  66. recurse(v)
  67. end
  68. end
  69. end
  70. recurse(workspace)
  71.  
  72. Guest Chat
  73.  
  74. local player = game.Players.LocalPlayer
  75. player.userId = 261
  76. player.Name = '001'
  77. player.Parent = nil
  78. player.Parent = game.Players
  79. -- CHATLOGS AS DEVCONSOLE --
  80. for i,v in pairs(game.Players:children'') do
  81. v.Chatted:connect(function(m)
  82. print(v.Name..": "..m)
  83. end)
  84. end
  85.  
  86. game.Players.ChildAdded:connect(function(v)
  87. v.Chatted:connect(function(m)
  88. print(v.Name..": "..m)
  89. end)
  90. end)
  91. -- CHATBAR SCRIPT --
  92.  
  93. local plrgui = player.PlayerGui
  94. local mouse = player:GetMouse()
  95. local sgui = Instance.new('ScreenGui',game.CoreGui)
  96. sgui.Name = 'GuestChat'
  97. local createChatBar = function()
  98. local chatbar = Instance.new('TextBox',sgui)
  99. chatbar.Name = 'Chatbar'
  100. chatbar.Size = UDim2.new(1,0,0.03,0)
  101. chatbar.Position = UDim2.new(0,0,0.97,0)
  102. chatbar.BackgroundColor3 = Color3.new(70/255,70/255,70/255)
  103. chatbar.BorderSizePixel = 0
  104. chatbar.TextXAlignment = 'Left'
  105. chatbar.TextColor3 = Color3.new(255/255,255/255,255/255)
  106. chatbar.Font = 'ArialBold'
  107. chatbar.FontSize = 'Size14'
  108. chatbar.Text = "Press 'E' to chat as a guest, press F9 to see chatlogs."
  109. return chatbar
  110. end
  111. local chatbar = createChatBar()
  112. mouse.KeyDown:connect(function(key)
  113. if key:lower():byte() == 101 then
  114. chatbar:CaptureFocus()
  115. end
  116. end)
  117. chatbar.FocusLost:connect(function()
  118. if chatbar.Text ~= "Press 'E' to chat as a guest, press F9 to see chatlogs." or chatbar.Text ~= "" then
  119. game.Players:Chat(chatbar.Text)
  120. chatbar.Text = "Press 'E' to chat as a guest, press F9 to see chatlogs."
  121. end
  122. end)
  123.  
  124. Map Copier
  125.  
  126. -- Made by 001 from v3rmillion.net.
  127. -- Map Copy Script: Rewritten
  128. Settings = {
  129. Copy = true, -- Using this option might cause lag in game but it doesn't remove the game.
  130. Creator = '001', -- Created by 001 from V3rmillion.net.
  131. EverythingAnchored = false, -- Anchors every part.
  132. CopyLightingProperties = true, -- Copy ambient, skybox, timeofday, globalshadows, etc properties from Lighting.
  133. }
  134.  
  135.  
  136. AllowedClassnames = {'Part','WedgePart','SpawnLocation','UnionOperation','Seat','VehicleSeat','TrussPart'}
  137. source = ""
  138. newline = [[
  139.  
  140. ]]
  141. tablecheck = function(t,value) -- Function: tablecheck, Description: checks a table for a value, Variables: table (table), value (string).
  142. for i,v in pairs(t) do
  143. if v==value then
  144. return true
  145. end
  146. end
  147. return nil
  148. end
  149. printFunction = function(str) -- Function: printFunction, Description: Custom print function, Variables: print (string).
  150. source=source..";"..str
  151. end
  152. copy = function(children) -- no time to document this,
  153. local PartClass = children.ClassName
  154. if tablecheck(AllowedClassnames, PartClass) then
  155. local PartName = "P"..math.random(100,999)
  156. printFunction(PartName.."=Instance.new('"..PartClass.."', Workspace)") -- Instance.new
  157. upc=tostring('false')
  158. if children:IsA'UnionOperation' then
  159. upc=tostring(children.UsePartColor)
  160. end
  161. shape='"N"'
  162. if children:IsA'Part' or children:IsA'SpawnLocation' or children:IsA'Seat' then
  163. shape=tostring(children.Shape)
  164. end
  165. formfactor='"N"'
  166. if children:IsA'Part' or children:IsA'WedgePart' or children:IsA'SpawnLocation' or children:IsA'Seat' then
  167. formfactor=tostring(children.FormFactor)
  168. end
  169. local Anchored = tostring(children.Anchored)
  170. local Locked = tostring(children.Locked)
  171. local Name = children.Name
  172. local Size = children.Size
  173. local CanCollide = tostring(children.CanCollide)
  174. local Archivable = tostring(children.Archivable)
  175. local CFrame = children.CFrame
  176. local Transparency = tonumber(children.Transparency)
  177. local Reflectance = tonumber(children.Reflectance)
  178. local Material = children.Material
  179. local BrickColor = children.BrickColor
  180.  
  181. local fc = PartName..",'"..Name.."',"..tostring(Settings.EverythingAnchored)..","..shape..","..upc..","..CanCollide..","..Locked..","..Anchored..","..Archivable..","..formfactor..",{"..tostring(Size).."},{"..tostring(CFrame).."},'"..tostring(BrickColor).."',"..Transparency..","..tostring(Material)..","..Reflectance
  182. printFunction("c("..fc..")")
  183. printFunction("ss("..PartName..","..tostring(children.BackSurface)..","..tostring(children.BottomSurface)..","..tostring(children.FrontSurface)..","..tostring(children.LeftSurface)..","..tostring(children.RightSurface)..","..tostring(children.TopSurface)..")")
  184. for i,v in pairs(children:GetChildren()) do
  185. if v:IsA'Decal' then
  186. printFunction("d("..v.Name..","..tonumber(v.Transparency)..",'"..tostring(v.Texture).."',"..tostring(v.Face)..",'"..tostring(v.Name).."')") -- Decal
  187. elseif v:IsA'SpecialMesh' then
  188. -- For mesh (d): p=part,t=meshid,te=meshtexture,face=size,n=name,ff=meshtype
  189. printFunction("d("..PartName..",'"..tostring(v.MeshId).."','"..tostring(v.TextureId).."',{"..tostring(v.Scale).."},'"..tostring(v.Name).."',"..tostring(v.MeshType)..")") -- Mesh
  190. end
  191. end
  192. end
  193. end
  194. local decryptFunc = [[
  195. c=function(part,name,everythinganchored,shape,usepartcolor,cancollide,locked,anchored,archivable,formfactor,size,cframe,brickcolor,transparency,material,reflectance)
  196. part.Name=name
  197. function tabltostring(tabl)
  198. s=''
  199. for i,v in pairs(tabl) do
  200. s=s..v
  201. end
  202. return s
  203. end
  204. function n(nu)
  205. return tonumber(nu)
  206. end
  207. if part:IsA'Part' or part:IsA'SpawnLocation' or part:IsA'Seat' then
  208. part.Shape=shape
  209. end
  210. if part:IsA'UnionOperation' then
  211. part.UsePartColor=usepartcolor
  212. end
  213. part.CanCollide=cancollide
  214. part.Locked=locked
  215. if everythinganchored == true then
  216. part.Anchored = true
  217. else
  218. part.Anchored = anchored
  219. end
  220. part.Archivable = archivable
  221. if part:IsA'Part' or part:IsA'WedgePart' or part:IsA'SpawnLocation' or part:IsA'Seat' then
  222. part.FormFactor=formfactor
  223. end
  224. part.Size = Vector3.new(n(size[1]),n(size[2]),n(size[3]))
  225. part.CFrame = CFrame.new(n(cframe[1]),n(cframe[2]),n(cframe[3]),n(cframe[4]),n(cframe[5]),n(cframe[6]),n(cframe[7]),n(cframe[8]),n(cframe[9]),n(cframe[10]),n(cframe[11]),n(cframe[12]))
  226. part.BrickColor = BrickColor.new(brickcolor)
  227. part.Material = material
  228. part.Transparency = transparency
  229. part.Reflectance = reflectance
  230. end
  231. ]]
  232. local function magiclines( str )
  233. if str:sub(-1)~="\n" then str=str.."\n" end
  234. return str:gmatch("(.-)\n")
  235. end
  236. function findLoop(childre)
  237. Instance.new('Model',game.Lighting).Name='Copy'
  238. findLoop2 = function(children) -- Function: findLoop, Description: Just a find loop, Variables: children (Part).
  239. for i,v in pairs(children:GetChildren()) do
  240. if tablecheck(AllowedClassnames, v.ClassName) then
  241. if Settings.Copy == true then
  242. v:Clone().Parent = game.Lighting.Copy
  243. else
  244. v.Parent = game.Lighting.Copy
  245. end
  246. end
  247. if v:FindFirstChild'HumanoidRootPart' ~= true then -- Anti player copy.
  248. findLoop2(v)
  249. end
  250. end
  251. end
  252. findLoop2(childre)
  253. wait(2)
  254. for line in magiclines(decryptFunc) do
  255. printFunction(line)
  256. wait()
  257. end
  258. wait(4)
  259. printFunction("d=function(p,t,te,face,n,ff)if type(ff)=='string' then me=Instance.new('SpecialMesh',p);me.MeshType=ff;me.MeshId=t;me.TextureId=te;me.Name=n;me.Scale=Vector3.new(face[1],face[2],face[3]); else xx=Instance.new('Decal',p);xx.Texture=te;xx.Transparency=t;xx.Face=face;xx.Name=n;end;end") -- Decal (d) function.
  260. printFunction("ss=function(p,bs,bz,fs,ls,rs,ts)p.BackSurface=bs;p.BottomSurface=bz;p.FrontSurface=fs;p.LeftSurface=ls;p.RightSurface=rs;p.TopSurface=ts;end") -- SetSurface (ss) function.
  261. if Settings.CopyLightingProperties == true then
  262. printFunction("game.Lighting.Ambient = Color3.new("..tostring(game.Lighting.Ambient)..")")
  263. printFunction("game.Lighting.TimeOfDay = '"..tostring(game.Lighting.TimeOfDay).."'")
  264. printFunction("game.Lighting.Brightness = "..tostring(game.Lighting.Brightness))
  265. printFunction("game.Lighting.ColorShift_Bottom = Color3.new("..tostring(game.Lighting.ColorShift_Bottom)..")")
  266. printFunction("game.Lighting.ColorShift_Top = Color3.new("..tostring(game.Lighting.ColorShift_Top)..")")
  267. printFunction("game.Lighting.GlobalShadows = "..tostring(game.Lighting.GlobalShadows))
  268. printFunction("game.Lighting.OutdoorAmbient = Color3.new("..tostring(game.Lighting.OutdoorAmbient)..")")
  269. printFunction("game.Lighting.ShadowColor = Color3.new("..tostring(game.Lighting.ShadowColor)..")")
  270. printFunction("game.Lighting.FogColor = Color3.new("..tostring(game.Lighting.FogColor)..")")
  271. printFunction("game.Lighting.FogEnd = "..tostring(game.Lighting.FogEnd))
  272. printFunction("game.Lighting.FogStart = "..tostring(game.Lighting.FogStart))
  273. printFunction("game.Lighting.GeographicLatitude = "..tostring(game.Lighting.GeographicLatitude))
  274. for i,v in pairs(game.Lighting:GetChildren()) do
  275. if v:IsA'Sky' then
  276. printFunction("a=Instance.new('Sky',game.Lighting)")
  277. printFunction("a.CelestialBodiesShown="..tostring(v.CelestialBodiesShown))
  278. printFunction("a.SkyboxBk='"..tostring(v.SkyboxBk).."'")
  279. printFunction("a.SkyboxDn='"..tostring(v.SkyboxDn).."'")
  280. printFunction("a.SkyboxFt='"..tostring(v.SkyboxFt).."'")
  281. printFunction("a.SkyboxLf='"..tostring(v.SkyboxLf).."'")
  282. printFunction("a.SkyboxRt='"..tostring(v.SkyboxRt).."'")
  283. printFunction("a.SkyboxUp='"..tostring(v.SkyboxUp).."'")
  284. printFunction("a.StarCount="..tostring(v.StarCount))
  285. printFunction("a.Name='"..tostring(v.Name).."'")
  286. end
  287. end
  288. wait(2)
  289. end
  290. for i,v in pairs(game.Lighting.Copy:GetChildren()) do
  291. copy(v)
  292. end
  293. Clipboard.set(source)
  294. end
  295.  
  296. findLoop(game.Workspace) -- Start the script.
  297.  
  298. Place Teleport
  299.  
  300. local quickPlaceID = 339049565 -- Change this if you want to have your placeID ready in the textbox so you don't have to copy/paste and waste time.
  301. local justGo = true -- Change this if you want to teleport people immediately when the GUI is inserted. Make sure you have a placeID set in quickPlaceID.
  302.  
  303. local whitelistPlayers = {} -- People who you don't want to teleport.
  304.  
  305.  
  306. local GUI = game:GetObjects("rbxassetid://281287169")[1]:Clone()
  307. GUI.Parent = game.Players.LocalPlayer.PlayerGui
  308. script.Parent = GUI
  309.  
  310. local mainWindow = GUI:WaitForChild("Window")
  311. local mainWindowContent = mainWindow:WaitForChild("Main")
  312. local outputBase = mainWindowContent:WaitForChild("OutputText")
  313. local outputBox = mainWindowContent:WaitForChild("Output")
  314. local Settings = mainWindowContent:WaitForChild("Settings")
  315. local ToId = mainWindowContent:WaitForChild("PlaceID")
  316. local GoButton = mainWindowContent:WaitForChild("GOButton")
  317. local AutoButton = Settings:WaitForChild("AutoSetting")
  318.  
  319. local PID = ""
  320. local LocatedTeleporter = ""
  321. local located = false
  322. local foundTele = ""
  323. local speedrun = false
  324.  
  325. ToId.Text = tostring(quickPlaceID)
  326.  
  327. function RecursiveSearch(obj, objname) -- Old ALX Function
  328. local foundObj = false
  329. for i,v in pairs(obj:GetChildren()) do
  330. if v.Name == objname then
  331. foundObj = v
  332. end
  333. end
  334. return foundObj
  335. end
  336.  
  337. function FindTeleporter(root)
  338. for i,v in pairs(root:GetChildren()) do
  339. if RecursiveSearch(v,"TouchScript") and RecursiveSearch(v,"teleBeam1") then
  340. foundTele = v
  341. return
  342. end
  343. FindTeleporter(v)
  344. end
  345. if game.PlaceId == 183364845 then
  346. foundTele = workspace.TpToNextWorld
  347. speedrun = true
  348. return
  349. end
  350. end
  351.  
  352. function printOutput(str)
  353. for i,v in pairs(outputBox:GetChildren()) do
  354. if v.Position.Y.Offset < 10 then
  355. v:Destroy()
  356. end
  357. v.Position = UDim2.new(0,0,0,v.Position.Y.Offset-20)
  358. end
  359. local newOutput = outputBase:Clone()
  360. newOutput.Position = UDim2.new(0,0,0,285)
  361. newOutput.Parent = outputBox
  362. newOutput.Text = str
  363. newOutput.Visible = true
  364. end
  365.  
  366. function locateTeleporter()
  367. FindTeleporter(workspace)
  368. if foundTele == false then
  369. printOutput("Teleporter not found. Cannot continue.")
  370. else
  371. if RecursiveSearch(foundTele,"PlaceId") then
  372. printOutput("Teleporter found... Masking...")
  373. for i,v2 in pairs(foundTele:GetChildren()) do -- Masks your teleporter
  374. if v2:isA("BasePart") then
  375. if RecursiveSearch(v2,"Decal") then
  376. v2.Decal:Destroy()
  377. end
  378. v2.Transparency = 1
  379. v2.Anchored = true
  380. v2.CanCollide = false
  381. end
  382. end
  383. PID = foundTele.PlaceId
  384. print(PID)
  385. LocatedTeleporter = foundTele
  386. located = true
  387. elseif RecursiveSearch(foundTele.TouchScript.TeleportScript, "PlaceId") then
  388. printOutput("Teleporter found... Masking...")
  389. for i,v2 in pairs(foundTele:GetChildren()) do -- Masks your teleporter
  390. if v2:isA("BasePart") then
  391. if RecursiveSearch(v2,"Decal") then
  392. v2.Decal:Destroy()
  393. end
  394. v2.Transparency = 1
  395. v2.Anchored = true
  396. v2.CanCollide = false
  397. end
  398. end
  399. PID = foundTele.TouchScript.TeleportScript.PlaceId
  400. LocatedTeleporter = foundTele
  401. located = true
  402. else
  403. printOutput("Incompatible teleporter.")
  404. end
  405. end
  406. end
  407.  
  408. function checkWhitelist(name)
  409. for i,v in pairs(whitelistPlayers) do
  410. if v == name then
  411. return false
  412. end
  413. end
  414. return true
  415. end
  416.  
  417. function Place()
  418. local placeID = ToId.Text
  419. if #game.Players:GetChildren() - 1 - #whitelistPlayers == 0 then
  420. printOutput("No players to teleport.")
  421. return
  422. elseif placeID == "" or string.find(placeID,"%a") or string.len(placeID) > 9 then
  423. printOutput("Invalid ID")
  424. return
  425. end
  426. print("Teleportation process to "..placeID.." has started on "..#game.Players:GetChildren() - 1 - #whitelistPlayers)
  427. if located then
  428. print("--=Teleporter Found, starting teleport=--")
  429. PID.Value = placeID
  430. if speedrun then
  431. LocatedTeleporter.swagtp.Disabled = true
  432. wait()
  433. LocatedTeleporter.swagtp.Disabled = false
  434. end
  435. for i,v in pairs(game.Players:GetPlayers()) do
  436. if v.Name ~= game.Players.LocalPlayer.Name and checkWhitelist(v.Name) then
  437. if RecursiveSearch(game.Players,v.Name) and RecursiveSearch(game.Workspace,v.Name) then
  438. printOutput("Attempting to teleport "..v.Name.." to "..placeID.."...")
  439. local playerBase = game.Workspace:FindFirstChild(v.Name)
  440. for i,v2 in pairs(playerBase:GetChildren()) do -- Masks the player
  441. if v2:isA("BasePart") then
  442. if RecursiveSearch(v2,"face") then
  443. v2.face:Destroy()
  444. end
  445. v2.Transparency = 1
  446. elseif v:isA("Hat") then
  447. v2:Destroy()
  448. end
  449. end
  450. spawn(function()
  451. while wait() do
  452. if not game.Players:FindFirstChild(v.Name) then return end
  453. if game.Workspace:FindFirstChild(v.Name) then
  454. playerBase = game.Workspace:FindFirstChild(v.Name)
  455. if playerBase:FindFirstChild("Torso") and not speedrun then
  456. playerBase.HumanoidRootPart.CFrame = LocatedTeleporter.teleBeam1.CFrame
  457. else
  458. playerBase.HumanoidRootPart.CFrame = LocatedTeleporter.CFrame
  459. end
  460. end
  461. end
  462. printOutput("Teleported "..v.Name.." to "..placeID.." successfully.")
  463. end)
  464. end
  465. end
  466. end
  467. else
  468. printOutput("Teleporter Not Found")
  469. end
  470. end
  471.  
  472. wait()
  473. printOutput("-==== Limited Placing Gui by Raspberry Pi loaded ===-")
  474. printOutput("Locating teleporter...")
  475. wait(0.5)
  476. locateTeleporter()
  477. if located then
  478. printOutput('Ready. Paste in a PlaceId and click "GO" to start placing.')
  479. if justGo then
  480. Place()
  481. end
  482. GoButton.Active = true
  483. GoButton.TextColor3 = Color3.new(1,1,1)
  484. GoButton.MouseButton1Down:connect(function()
  485. if AutoButton.enabled.Visible then return end
  486. Place()
  487. end)
  488. AutoButton.MouseButton1Down:connect(function()
  489. if AutoButton.enabled.Visible == false then
  490. AutoButton.enabled.Visible = true
  491. printOutput("Auto On.")
  492. else
  493. AutoButton.enabled.Visible = false
  494. printOutput("Auto Off.")
  495. end
  496. end)
  497. spawn(function()
  498. while wait(1) do
  499. if AutoButton.enabled.Visible == true then
  500. GoButton.Active = false
  501. GoButton.TextColor3 = Color3.new(160/255, 160/255, 160/255)
  502. Place()
  503. else
  504. GoButton.Active = true
  505. GoButton.TextColor3 = Color3.new(1,1,1)
  506. end
  507. end
  508. end)
  509. end
  510.  
  511. Rape Script
  512.  
  513. function fWeld(zName, zParent, zPart0, zPart1, zCoco, a, b, c, d, e, f)
  514. local funcw = Instance.new("Weld")
  515. funcw.Name = zName
  516. funcw.Parent = zParent
  517. funcw.Part0 = zPart0
  518. funcw.Part1 = zPart1
  519. if (zCoco == true) then
  520. funcw.C0 = CFrame.new(a, b, c) * CFrame.fromEulerAnglesXYZ(d, e, f)
  521. else
  522. funcw.C1 = CFrame.new(a, b, c) * CFrame.fromEulerAnglesXYZ(d, e, f)
  523. end
  524. return funcw
  525. end
  526. function fun(n1, n2)
  527. pcall(function()
  528. t1 = game.Players[n1].Character.Torso
  529. t2 = game.Players[n2].Character.Torso
  530. t2.Parent.Humanoid.PlatformStand = true
  531. t1["Left Shoulder"]:Remove()
  532. ls1 = Instance.new("Weld")
  533. ls1.Parent = t1
  534. ls1.Part0 = t1
  535. ls1.Part1 = t1.Parent["Left Arm"]
  536. ls1.C0 = CFrame.new(-1.5,0,0)
  537. ls1.Name = "Left Shoulder"
  538. t1["Right Shoulder"]:Remove()
  539. rs1 = Instance.new("Weld")
  540. rs1.Parent = t1
  541. rs1.Part0 = t1
  542. rs1.Part1 = t1.Parent["Right Arm"]
  543. rs1.C0 = CFrame.new(1.5,0,0)
  544. rs1.Name = "Right Shoulder"
  545. t2["Left Shoulder"]:Remove()
  546. ls2 = Instance.new("Weld")
  547. ls2.Parent = t2
  548. ls2.Part0 = t2
  549. ls2.Part1 = t2.Parent["Left Arm"]
  550. ls2.C0 = CFrame.new(-1.5,0,0)
  551. ls2.Name = "Left Shoulder"
  552. t2["Right Shoulder"]:Remove()
  553. rs2 = Instance.new("Weld")
  554. rs2.Parent = t2
  555. rs2.Part0 = t2
  556. rs2.Part1 = t2.Parent["Right Arm"]
  557. rs2.C0 = CFrame.new(1.5,0,0)
  558. rs2.Name = "Right Shoulder"
  559. t2["Left Hip"]:Remove()
  560. lh2 = Instance.new("Weld")
  561. lh2.Parent = t2
  562. lh2.Part0 = t2
  563. lh2.Part1 = t2.Parent["Left Leg"]
  564. lh2.C0 = CFrame.new(-0.5,-2,0)
  565. lh2.Name = "Left Hip"
  566. t2["Right Hip"]:Remove()
  567. rh2 = Instance.new("Weld")
  568. rh2.Parent = t2
  569. rh2.Part0 = t2
  570. rh2.Part1 = t2.Parent["Right Leg"]
  571. rh2.C0 = CFrame.new(0.5,-2,0)
  572. rh2.Name = "Right Hip"
  573. local d = Instance.new("Part")
  574. d.TopSurface = 0
  575. d.BottomSurface = 0
  576. d.BrickColor = BrickColor.new("Medium stone grey")
  577. d.Shape = "Ball"
  578. d.Parent = t1
  579. d.Size = Vector3.new(1,1,1)
  580. local dm = Instance.new("SpecialMesh")
  581. dm.MeshType = "Sphere"
  582. dm.Parent = d
  583. dm.Scale = Vector3.new(0.4,0.4,0.4)
  584. fWeld("weld",t1,t1,d,true,-0.2,-1.3,-0.6,0,0,0)
  585. d2 = d:Clone()
  586. d2.Parent = t1
  587. fWeld("weld",t1,t1,d2,true,0.2,-1.3,-0.6,0,0,0)
  588. local c = Instance.new("Part")
  589. c.TopSurface = 0
  590. c.BottomSurface = 0
  591. c.CanCollide = false
  592. c.BrickColor = BrickColor.new("Pastel brown")
  593. c.Parent = t1
  594. c.formFactor = "Custom"
  595. c.Size = Vector3.new(0.4,1.3,0.4)
  596. cm = Instance.new("CylinderMesh")
  597. cm.Parent = c
  598. a = fWeld("weld",t1,t1,c,true,0,-1,-0.52+(-c.Size.y/2),math.rad(-80),0,0)
  599. c2 = d:Clone()
  600. c2.BrickColor = BrickColor.new("Medium stone grey")
  601. c2.Mesh.Scale = Vector3.new(0.4,0.62,0.4)
  602. c2.Parent = t1
  603. fWeld("weld",c,c,c2,true,0,0+(c.Size.y/2),0,math.rad(-10),0,0)
  604. local bl = Instance.new("Part")
  605. bl.TopSurface = 0
  606. bl.BottomSurface = 0
  607. bl.CanCollide = false
  608. bl.BrickColor = BrickColor.new("Pastel brown")
  609. bl.Shape = "Ball"
  610. bl.Parent = t2
  611. bl.Size = Vector3.new(1,1,1)
  612. local dm = Instance.new("SpecialMesh")
  613. dm.MeshType = "Sphere"
  614. dm.Parent = bl
  615. dm.Scale = Vector3.new(1.2,1.2,1.2)
  616. fWeld("weld",t2,t2,bl,true,-0.5,0.5,-0.6,0,0,0)
  617. local br = Instance.new("Part")
  618. br.TopSurface = 0
  619. br.BottomSurface = 0
  620. br.CanCollide = false
  621. br.BrickColor = BrickColor.new("Pastel brown")
  622. br.Shape = "Ball"
  623. br.Parent = t2
  624. br.Size = Vector3.new(1,1,1)
  625. local dm = Instance.new("SpecialMesh")
  626. dm.MeshType = "Sphere"
  627. dm.Parent = br
  628. dm.Scale = Vector3.new(1.2,1.2,1.2)
  629. fWeld("weld",t2,t2,br,true,0.5,0.5,-0.6,0,0,0)
  630. local bln = Instance.new("Part")
  631. bln.TopSurface = 0
  632. bln.BottomSurface = 0
  633. bln.CanCollide = false
  634. bln.Shape = "Ball"
  635. bln.Parent = t2
  636. bln.Size = Vector3.new(1,1,1)
  637. local dm = Instance.new("SpecialMesh")
  638. dm.MeshType = "Sphere"
  639. dm.Parent = bln
  640. dm.Scale = Vector3.new(0.2,0.2,0.2)
  641. fWeld("weld",t2,t2,bln,true,-0.5,0.5,-1.2,0,0,0)
  642. local brn = Instance.new("Part")
  643. brn.TopSurface = 0
  644. brn.BottomSurface = 0
  645. brn.CanCollide = false
  646. brn.Shape = "Ball"
  647. brn.Parent = t2
  648. brn.Size = Vector3.new(1,1,1)
  649. local dm = Instance.new("SpecialMesh")
  650. dm.MeshType = "Sphere"
  651. dm.Parent = brn
  652. dm.Scale = Vector3.new(0.2,0.2,0.2)
  653. fWeld("weld",t2,t2,brn,true,0.5,0.5,-1.2,0,0,0)
  654. lh2.C1 = CFrame.new(0,-1.5,-0.5) * CFrame.Angles(0.9,-0.4,0)
  655. rh2.C1 = CFrame.new(0,-1.5,-0.5) * CFrame.Angles(0.9,0.4,0)
  656. ls2.C1 = CFrame.new(-0.5,-1.3,-0.5) * CFrame.Angles(0.9,-0.4,0)
  657. rs2.C1 = CFrame.new(0.5,-1.3,-0.5) * CFrame.Angles(0.9,0.4,0)
  658. ls1.C1 = CFrame.new(-0.5,0.7,0) * CFrame.Angles(-0.9,-0.4,0)
  659. rs1.C1 = CFrame.new(0.5,0.7,0) * CFrame.Angles(-0.9,0.4,0)
  660. if t1:findFirstChild("weldx") ~= nil then
  661. t1.weldx:Remove()
  662. end
  663. we = fWeld("weldx", t1, t1, t2, true, 0, -0.9, -1.3, math.rad(-90), 0, 0)
  664. n = t2.Neck
  665. n.C0 = CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-210), math.rad(180), 0)
  666. end)
  667. coroutine.resume(coroutine.create(function()
  668. while wait() do
  669. for i = 1,6 do
  670. we.C1 = we.C1 * CFrame.new(0,-0.3,0)
  671. wait()
  672. end
  673.  
  674. for i = 1,6 do
  675. we.C1 = we.C1 * CFrame.new(0,0.3,0)
  676. wait()
  677. end
  678. end
  679. end))
  680. end
  681. fun("PeIadophobian", "trinitytheauthor")
  682. [/code]
  683. Remote Events & Functions
  684. [code]
  685. function Search(obj)
  686. if obj:isA("RemoteEvent") then
  687. print(obj:GetFullName())
  688. else
  689. for i,v in pairs(obj:GetChildren()) do
  690. Search(v)
  691. end
  692. end
  693.  
  694. end
  695. Search(game)
  696.  
  697.  
  698. Server Lock
  699.  
  700. while true do
  701. for a, xb in pairs(game.Players:children()) do
  702. if xb.Name~=game.Players.LocalPlayer.Name then xb:Destroy() end
  703. end
  704. wait(.69)
  705. end
  706.  
  707. SkyBox Decal (change the ID)
  708.  
  709. s = Instance.new("Sky")
  710. s.Name = "SKY"
  711. s.SkyboxBk = "http://www.roblox.com/asset/?id=78391907"
  712. s.SkyboxDn = "http://www.roblox.com/asset/?id=78391907"
  713. s.SkyboxFt = "http://www.roblox.com/asset/?id=78391907"
  714. s.SkyboxLf = "http://www.roblox.com/asset/?id=78391907"
  715. s.SkyboxRt = "http://www.roblox.com/asset/?id=78391907"
  716. s.SkyboxUp = "http://www.roblox.com/asset/?id=78391907"
  717. s.Parent = game.Lighting
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement