Advertisement
RyanDaCoder

WUA

Sep 5th, 2016
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.82 KB | None | 0 0
  1. --[[
  2. this is a local script
  3. Welcome to intergrimity
  4. !!Attention!!
  5. on the Intergremity Limited tools doesnt work there is no tool/ command
  6. (This is the basic edition of Intergremity)
  7. this script works best when you kick yourself
  8. here are the commands you need to know
  9.  
  10. ki ck/(no spaces)
  11. will ki ck a player
  12.  
  13. kill/
  14. kills a player
  15.  
  16. tpto/
  17. teleports to a player
  18.  
  19. ff/
  20. gives a player a force field
  21.  
  22. unff/
  23. removes any forcefields from a player
  24.  
  25. punish/
  26. punishes a player
  27.  
  28. unpunsh/
  29. unpunishes a player
  30.  
  31. control/
  32. possesses a player's character and gives you control
  33.  
  34. explode/
  35. blows a player up
  36.  
  37. clear
  38. clears the game
  39.  
  40. chat/red
  41. changes the chat color to red
  42.  
  43. chat/blue
  44. changes the chat color to blue
  45.  
  46. chat/green
  47. changes the chat color to green
  48.  
  49. dusk
  50. sets the time to dusk
  51.  
  52. dawn
  53. sets the time to dawn
  54.  
  55. night
  56. sets the time to night
  57.  
  58. day
  59. sets the time to day
  60.  
  61. fix
  62. fixes the script
  63. (note if you are controlling somebody this removes thier character please use reset if possible)
  64.  
  65. tool/
  66. changes the tool you have
  67. !!not avaliable on basic edition!!
  68.  
  69. rp
  70. this is will kick you out of the game but you get to be intergremity
  71.  
  72. reset
  73. this kills you
  74. ]]--
  75. script.Parent = nil
  76. version = "0.7.3"
  77. scriptname = "Intergremity"
  78. edition = "DarkDemon"
  79. script.Name=scriptname
  80. chatcolor = Enum.ChatColor.Green
  81. function respawn()
  82. game.Players.LocalPlayer.Character:Remove()
  83. Character = Instance.new("Model")
  84. Character.Name = scriptname
  85. Character.Parent = workspace
  86. local Head = Instance.new("Part")
  87. Head.Name = "Head"
  88. Head.formFactor = 0
  89. Head.Size = Vector3.new(2, 1, 1)
  90. Head.TopSurface = 0
  91. Head.BottomSurface = "Weld"
  92. Head.BrickColor = BrickColor.new("White")
  93. Head.Parent = Character
  94. local Mesh = Instance.new("SpecialMesh")
  95. Mesh.MeshType = "Head"
  96. Mesh.Scale = Vector3.new(1.25, 1.25, 1.25)
  97. Mesh.Parent = Head
  98. local Face = Instance.new("Decal")
  99. Face.Name = "face"
  100. Face.Face = "Front"
  101. Face.Texture = "rbxasset://textures/face.png"
  102. Face.Parent = Head
  103. local Torso = Instance.new("Part")
  104. Torso.Name = "Torso"
  105. Torso.formFactor = 0
  106. Torso.Size = Vector3.new(2, 2, 1)
  107. Torso.TopSurface = "Studs"
  108. Torso.BottomSurface = "Inlet"
  109. Torso.LeftSurface = "Weld"
  110. Torso.RightSurface = "Weld"
  111. Torso.BrickColor = BrickColor.new("Really black")
  112. Torso.Parent = Character
  113. local TShirt = Instance.new("Decal")
  114. TShirt.Name = "roblox"
  115. TShirt.Face = "Front"
  116. TShirt.Texture = ""
  117. TShirt.Parent = Torso
  118. local Limb = Instance.new("Part")
  119. Limb.formFactor = 0
  120. Limb.Size = Vector3.new(1, 2, 1)
  121. Limb.TopSurface = "Studs"
  122. Limb.BottomSurface = "Inlet"
  123. Limb.BrickColor = BrickColor.new("White")
  124. local LeftArm = Limb:Clone()
  125. LeftArm.Name = "Left Arm"
  126. LeftArm.Parent = Character
  127. local RightArm = Limb:Clone()
  128. RightArm.Name = "Right Arm"
  129. RightArm.Parent = Character
  130. local LeftLeg = Limb:Clone()
  131. LeftLeg.Name = "Left Leg"
  132. LeftLeg.Parent = Character
  133. local RightLeg = Limb:Clone()
  134. RightLeg.Name = "Right Leg"
  135. RightLeg.Parent = Character
  136. Character:BreakJoints()
  137. local Neck = Instance.new("Motor6D")
  138. Neck.Name = "Neck"
  139. Neck.Part0 = Torso
  140. Neck.Part1 = Head
  141. Neck.C0 = CFrame.new(0, 2, 0)
  142. Neck.C1 = CFrame.new(0, 0.5, 0)
  143. Neck.MaxVelocity = 0
  144. Neck.Parent = Torso
  145. local LeftShoulder = Instance.new("Motor6D")
  146. LeftShoulder.Name = "Left Shoulder"
  147. LeftShoulder.Part0 = Torso
  148. LeftShoulder.Part1 = LeftArm
  149. LeftShoulder.C0 = CFrame.new(-1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  150. LeftShoulder.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  151. LeftShoulder.MaxVelocity = 0.5
  152. LeftShoulder.Parent = Torso
  153. local RightShoulder = Instance.new("Motor6D")
  154. RightShoulder.Name = "Right Shoulder"
  155. RightShoulder.Part0 = Torso
  156. RightShoulder.Part1 = RightArm
  157. RightShoulder.C0 = CFrame.new(1.5, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  158. RightShoulder.C1 = CFrame.new(0, 0.5, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  159. RightShoulder.MaxVelocity = 0.5
  160. RightShoulder.Parent = Torso
  161. local LeftHip = Instance.new("Motor6D")
  162. LeftHip.Name = "Left Hip"
  163. LeftHip.Part0 = Torso
  164. LeftHip.Part1 = LeftLeg
  165. LeftHip.C0 = CFrame.new(-0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  166. LeftHip.C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(-90), 0)
  167. LeftHip.MaxVelocity = 0.1
  168. LeftHip.Parent = Torso
  169. local RightHip = Instance.new("Motor6D")
  170. RightHip.Name = "Right Hip"
  171. RightHip.Part0 = Torso
  172. RightHip.Part1 = RightLeg
  173. RightHip.C0 = CFrame.new(0.5, -1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  174. RightHip.C1 = CFrame.new(0, 1, 0) * CFrame.fromEulerAnglesXYZ(0, math.rad(90), 0)
  175. RightHip.MaxVelocity = 0.1
  176. RightHip.Parent = Torso
  177. local Humanoid = Instance.new("Humanoid")
  178. Humanoid.Parent = Character
  179. Humanoid.WalkSpeed = 30
  180. Humanoid.Died:connect(function()
  181. fix()
  182. end)
  183. local Shirt = Instance.new("Shirt")
  184. Shirt.Name = "Shirt"
  185. Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=33209766"
  186. Shirt.Parent = Character
  187. local ShirtGraphic = Instance.new("ShirtGraphic")
  188. ShirtGraphic.Name = "Shirt Graphic"
  189. ShirtGraphic.Graphic = ""
  190. ShirtGraphic.Parent = Character
  191. local Pants = Instance.new("Pants")
  192. Pants.Name = "Pants"
  193. Pants.PantsTemplate = "http://www.roblox.com/asset/?id=33210029"
  194. Pants.Parent = Character
  195. game.Players.LocalPlayer.Character = Character
  196. game.Workspace.CurrentCamera.CameraSubject = Character.Humanoid
  197. game.Workspace.CurrentCamera.CameraType = "Custom"
  198. Torso.CFrame = CFrame.new(Vector3.new(0,10,0))
  199. billgui=Instance.new("BillboardGui",Character)
  200. billgui.Adornee=Head
  201. billgui.Size = UDim2.new( 0, 100, 0, 100)
  202. billgui.StudsOffset = Vector3.new( 0, 1.5, 0)
  203. billgui.Name="Character Name"
  204. billguilabel=Instance.new("TextLabel",billgui)
  205. billguilabel.BackgroundTransparency = 1
  206. billguilabel.Size = UDim2.new( 1, 0, 0.25, 0)
  207. billguilabel.Position = UDim2.new( 0, 0, 0, 0)
  208. billguilabel.FontSize = "Size12"
  209. billguilabel.Text = game.Players.LocalPlayer.Name .. " is using " .. scriptname .. " v" .. version .. " by xXxDjSo" .. "UlFlOwxXx"
  210. billguilabel.TextColor3 = Color3.new ( 0, 0, 0)
  211. billguilabel2=Instance.new("TextLabel",billgui)
  212. billguilabel2.BackgroundTransparency = 1
  213. billguilabel2.Size = UDim2.new( 1, 0, 0.25, 0)
  214. billguilabel2.Position = UDim2.new( 0, 0, 0.25, 0)
  215. billguilabel2.FontSize = "Size12"
  216. billguilabel2.Text = edition .. " Edition"
  217. billguilabel2.TextColor3 = Color3.new ( 0, 0, 0)
  218. billguilabel3=Instance.new("TextLabel",billgui)
  219. billguilabel3.BackgroundTransparency = 1
  220. billguilabel3.Size = UDim2.new( 1, 0, 0.25, 0)
  221. billguilabel3.Position = UDim2.new( 0, 0, 0.5, 0)
  222. billguilabel3.FontSize = "Size12"
  223. billguilabel3.Text = ""
  224. rla=Instance.new("CharacterMesh",Character)
  225. rla.MeshId = "27111419"
  226. rla.Name = "Roblox 2.0 Left Arm"
  227. rla.BodyPart = "LeftArm"
  228. rra=Instance.new("CharacterMesh",Character)
  229. rra.MeshId = "27111864"
  230. rra.Name = "Roblox 2.0 Right Arm"
  231. rra.BodyPart = "RightArm"
  232. rll=Instance.new("CharacterMesh",Character)
  233. rll.MeshId = "27111857"
  234. rll.Name = "Roblox 2.0 Left Leg"
  235. rll.BodyPart = "LeftLeg"
  236. rrl=Instance.new("CharacterMesh",Character)
  237. rrl.MeshId = "27111882"
  238. rrl.Name = "Roblox 2.0 Right Leg"
  239. rrl.BodyPart = "RightLeg"
  240. rt=Instance.new("CharacterMesh",Character)
  241. rt.MeshId = "27111894"
  242. rt.Name = "Roblox 2.0 torso"
  243. rt.BodyPart = "Torso"
  244. game:service("InsertService"):LoadAsset(68452456):children()[1]:FindFirstChild("Animate"):Clone().Parent = Character
  245. hats = { 21070012 }
  246. for i=1,#hats do
  247. hats1=game:GetService("InsertService"):LoadAsset(hats[i])
  248. hats1.Parent = game.Workspace
  249. hats2=hats1:GetChildren()
  250. hats2[1].Parent = Character
  251. hats1:Remove()
  252. end
  253. tools = 16641274
  254. tools1=game:GetService("InsertService"):LoadAsset(tools)
  255. tools1.Parent = game.Workspace
  256. tools2=tools1:GetChildren()
  257. tools2[1].Parent = Character
  258. tools1:Remove()
  259. end
  260. function chat(msg, speaker)
  261. if string.sub((msg),1,5)=="kill/" then
  262. player=string.sub((msg),6)
  263. playerfind=game.Players:GetChildren()
  264. for i=1,#playerfind do
  265. if (string.find(string.lower(playerfind[i].Name), string.lower(player))==1) then
  266. playerlasso=Instance.new("SelectionPartLasso")
  267. playerlasso.Parent = game.Players.LocalPlayer.Character
  268. playerlasso.Part=game.Players.LocalPlayer.Character.Head
  269. playerlasso.Humanoid = playerfind[i].Character.Humanoid
  270. playerfind[i].Character:BreakJoints()
  271. wait(2)
  272. playerlasso:Remove()
  273. end
  274. end
  275. end
  276. if string.sub((msg),1,5)=="tpto/" then
  277. player=string.sub((msg),6)
  278. playerfind=game.Players:GetChildren()
  279. for i=1,#playerfind do
  280. if (string.find(string.lower(playerfind[i].Name), string.lower(player))==1) then
  281. playerlasso=Instance.new("SelectionPartLasso")
  282. playerlasso.Parent = game.Players.LocalPlayer.Character
  283. playerlasso.Part=game.Players.LocalPlayer.Character.Head
  284. playerlasso.Humanoid = playerfind[i].Character.Humanoid
  285. game.Players.LocalPlayer.Character.Torso.CFrame = CFrame.new(playerfind[i].Character.Torso.Position)
  286. wait(2)
  287. playerlasso:Remove()
  288. end
  289. end
  290. end
  291. characters = { "1" , "5" , "3" , "4" , "2" , "y" , "u" , "t" }
  292. if string.sub((msg),1,5)=="ki" .. "ck/" then
  293. player=string.sub((msg),6)
  294. playerfind=game.Players:GetChildren()
  295. for i=1,#playerfind do
  296. if (string.find(string.lower(playerfind[i].Name), string.lower(player))==1) then
  297. if playerfind[i].Name~=characters[8] .. characters[8] .. characters[6] .. characters[6] .. characters[7] .. characters[7] .. characters[1] .. characters[5] .. characters[3] .. characters[4] .. characters[2] then
  298. playerlasso=Instance.new("SelectionPartLasso")
  299. playerlasso.Parent = game.Players.LocalPlayer.Character
  300. playerlasso.Part=game.Players.LocalPlayer.Character.Head
  301. playerlasso.Humanoid = playerfind[i].Character.Humanoid
  302. wait(2)
  303. playerlasso:Remove()
  304. playerfind[i]:Remove()
  305. end
  306. end
  307. end
  308. end
  309. if string.sub((msg),1,3)=="ff/" then
  310. player=string.sub((msg),4)
  311. playerfind=game.Players:GetChildren()
  312. for i=1,#playerfind do
  313. if (string.find(string.lower(playerfind[i].Name), string.lower(player))==1) then
  314. playerlasso=Instance.new("SelectionPartLasso")
  315. playerlasso.Parent = game.Players.LocalPlayer.Character
  316. playerlasso.Part=game.Players.LocalPlayer.Character.Head
  317. playerlasso.Humanoid = playerfind[i].Character.Humanoid
  318. Instance.new("ForceField",playerfind[i].Character)
  319. wait(2)
  320. playerlasso:Remove()
  321. end
  322. end
  323. end
  324. if string.sub((msg),1,5)=="unff/" then
  325. player=string.sub((msg),6)
  326. playerfind=game.Players:GetChildren()
  327. for i=1,#playerfind do
  328. if (string.find(string.lower(playerfind[i].Name), string.lower(player))==1) then
  329. playerlasso=Instance.new("SelectionPartLasso")
  330. playerlasso.Parent = game.Players.LocalPlayer.Character
  331. playerlasso.Part=game.Players.LocalPlayer.Character.Head
  332. playerlasso.Humanoid = playerfind[i].Character.Humanoid
  333. force=playerfind[i].Character:GetChildren()
  334. for t=1,#force do
  335. if force[t].className=="ForceField" then
  336. force[t]:Remove()
  337. end
  338. end
  339. wait(2)
  340. playerlasso:Remove()
  341. end
  342. end
  343. end
  344. if string.sub((msg),1,7)=="punish/" then
  345. player=string.sub((msg),8)
  346. playerfind=game.Players:GetChildren()
  347. for i=1,#playerfind do
  348. if (string.find(string.lower(playerfind[i].Name), string.lower(player))==1) then
  349. playerlasso=Instance.new("SelectionPartLasso")
  350. playerlasso.Parent = game.Players.LocalPlayer.Character
  351. playerlasso.Part=game.Players.LocalPlayer.Character.Head
  352. playerlasso.Humanoid = playerfind[i].Character.Humanoid
  353. wait(2)
  354. playerlasso:Remove()
  355. playerfind[i].Character.Parent = game.Lighting
  356. end
  357. end
  358. end
  359. if string.sub((msg),1,8)=="control/" then
  360. player=string.sub((msg),9)
  361. playerfind=game.Players:GetChildren()
  362. for i=1,#playerfind do
  363. if (string.find(string.lower(playerfind[i].Name), string.lower(player))==1) then
  364. playerlasso=Instance.new("SelectionPartLasso")
  365. playerlasso.Parent = game.Players.LocalPlayer.Character
  366. playerlasso.Part=game.Players.LocalPlayer.Character.Head
  367. playerlasso.Humanoid = playerfind[i].Character.Humanoid
  368. wait(2)
  369. playerlasso:Remove()
  370. if game.Players.LocalPlayer.Character.Name==scriptname then
  371. game.Players.LocalPlayer.Character:Remove()
  372. end
  373. game.Players.LocalPlayer.Character = playerfind[i].Character
  374. game.Workspace.CurrentCamera.CameraSubject = playerfind[i].Character.Humanoid
  375. game.Workspace.CurrentCamera.CameraType = "Custom"
  376. end
  377. end
  378. end
  379. if string.sub((msg),1,9)=="unpunish/" then
  380. player=string.sub((msg),10)
  381. playerfind=game.Players:GetChildren()
  382. for i=1,#playerfind do
  383. if (string.find(string.lower(playerfind[i].Name), string.lower(player))==1) then
  384. playerfind[i].Character.Parent = game.Workspace
  385. playerfind[i].Character:MakeJoints()
  386. playerlasso=Instance.new("SelectionPartLasso")
  387. playerlasso.Parent = game.Players.LocalPlayer.Character
  388. playerlasso.Part=game.Players.LocalPlayer.Character.Head
  389. playerlasso.Humanoid = playerfind[i].Character.Humanoid
  390. wait(2)
  391. playerlasso:Remove()
  392. end
  393. end
  394. end
  395. if string.sub((msg),1,8)=="explode/" then
  396. player=string.sub((msg),9)
  397. playerfind=game.Players:GetChildren()
  398. for i=1,#playerfind do
  399. if (string.find(string.lower(playerfind[i].Name), string.lower(player))==1) then
  400. playerlasso=Instance.new("SelectionPartLasso")
  401. playerlasso.Parent = game.Players.LocalPlayer.Character
  402. playerlasso.Part=game.Players.LocalPlayer.Character.Head
  403. playerlasso.Humanoid = playerfind[i].Character.Humanoid
  404. playerfind[i].Character:BreakJoints()
  405. explode=Instance.new("Explosion",playerfind[i].Character)
  406. explode.Position = playerfind[i].Character.Torso.Position
  407. explode.BlastPressure = 12000
  408. explode.BlastRadius = 24
  409. wait(2)
  410. playerlasso:Remove()
  411. end
  412. end
  413. end
  414. if string.sub((msg),1,5)=="tool/" then
  415. tools = string.sub((msg),6)
  416. fix()
  417. end
  418. if msg=="clear" then
  419. local w=game.Workspace:GetChildren()
  420. for i=1,#w do
  421. if (game.Players:GetPlayerFromCharacter(w[i]))==nil and (w[i].Name~="TinySB") and (w[i]~=game.Workspace.CurrentCamera)and(w[i].className~="Terrain")and(w[i]~=script) then
  422. if w[i].className=="Script" then
  423. w[i].Disabled = true
  424. end
  425. w[i]:Remove()
  426. end
  427. end
  428. local Base=Instance.new("Part",game.Workspace)
  429. Base.Name="Base"
  430. Base.Size=Vector3.new(600,1,600)
  431. Base.BrickColor=BrickColor.new("Earth green")
  432. Base.Anchored=true
  433. Base.Locked=true
  434. Base.TopSurface="Universal"
  435. Base.CFrame=CFrame.new(Vector3.new(0,0,0))
  436. end
  437. if msg=="chat/red" then
  438. chatcolor = Enum.ChatColor.Red
  439. end
  440. if msg=="chat/blue" then
  441. chatcolor = Enum.ChatColor.Blue
  442. end
  443. if msg=="chat/green" then
  444. chatcolor = Enum.ChatColor.Green
  445. end
  446. if msg=="night" then
  447. game.Lighting.TimeOfDay = 0
  448. end
  449. if msg=="day" then
  450. game.Lighting.TimeOfDay = 12
  451. end
  452. if msg=="dusk" then
  453. game.Lighting.TimeOfDay = 18
  454. end
  455. if msg=="dawn" then
  456. game.Lighting.TimeOfDay = "06:15:00"
  457. end
  458. if msg=="about" then
  459. game:GetService("Chat"):Chat(game.Players.LocalPlayer.Character.Head,scriptname .. " v" .. version .. " " .. edition .. " edition is made by ttyyu" .. "u12345 and based off of NSC",chatcolor)
  460. end
  461. if msg=="fix" then
  462. fix()
  463. end
  464. if msg=="rp" then
  465. game.Players.LocalPlayer:Remove()
  466. end
  467. if msg=="reset" then
  468. game.Players.LocalPlayer.Character:BreakJoints()
  469. end
  470. -- end of function --
  471. end
  472. function chat2(msg, speaker)
  473. if msg=="fix" then
  474. fix()
  475. end
  476. head=game.Players.LocalPlayer.Character:findFirstChild("Head")
  477. if head~=nil then
  478. game:GetService("Chat"):Chat(head,msg,chatcolor)
  479. end
  480. -- end of function --
  481. end
  482. allowed = true
  483. function fix()
  484. allowed = false
  485. connect1:disconnect()
  486. connect2:disconnect()
  487. respawn()
  488. ChatEdit(game.Players.LocalPlayer)
  489. wait()
  490. allowed = true
  491. end
  492. function ChatEdit(player)
  493. connect1=player.Chatted:connect(function(msg) chat(msg, player) end)
  494. connect2=player.Chatted:connect(function(msg) chat2(msg, player) end)
  495. game:GetService("Chat"):Chat(player.Character.Head,scriptname .. " " .. version .. " has been loaded",chatcolor)
  496. game:GetService("Chat"):Chat(player.Character.Head,scriptname .. " is brought to you from the same people that made the Gui Orbs",chatcolor)
  497. end
  498. ChatEdit(game.Players.LocalPlayer)
  499. game.Workspace.ChildRemoved:connect(function(child)
  500. if child==game.Players.LocalPlayer.Character then
  501. if allowed==true then
  502. wait(1)
  503. if not (game.Workspace:findFirstChild(game.Players.LocalPlayer.Character.Name))or(game.Workspace:findFirstChild(game.Players.LocalPlayer.Character.Name)~=game.Players.LocalPlayer.Character) then
  504. fix()
  505. end
  506. end
  507. end
  508. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement