Advertisement
SHADOWCRAFTER666

big oof roghosty

Aug 27th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.52 KB | None | 0 0
  1. gui = Instance.new("ScreenGui",game.CoreGui)
  2. gui.Name = "Tokyo Ghoul Gui"
  3. gui.ResetOnSpawn = false
  4. box = Instance.new("ScrollingFrame",gui)
  5. box.Name = "Box"
  6. box.Size = UDim2.new(0,360,0,210)
  7. box.Position = UDim2.new(0,0,0,0)
  8. box.CanvasSize = UDim2.new(0,0,0,0)
  9. box.BackgroundColor3 = Color3.new(0,0,0)
  10. box.BackgroundTransparency = 1
  11. box.BorderSizePixel = 0
  12. box.ScrollBarThickness = 0
  13. box.Active = true
  14. box.Draggable = true
  15. top = Instance.new("TextLabel",box)
  16. top.Name = "TopBar"
  17. top.Size = UDim2.new(0,360,0,25)
  18. top.BackgroundColor3 = Color3.new(255,255,255)
  19. top.BackgroundTransparency = .4
  20. top.BorderSizePixel = 0
  21. top.Font = "Fantasy"
  22. top.FontSize = "Size14"
  23. top.Text = "Tokyo Ghoul"
  24. top.TextColor3 = Color3.new(0,0,0)
  25. pos1 = 28
  26. img = Instance.new("ImageLabel",box)
  27. img.BorderSizePixel = 0
  28. img.Size = UDim2.new(1,1,1)
  29. img.Position = UDim2.new(0,0,0,25)
  30. img.BackgroundTransparency = 0
  31. img.ZIndex = 2
  32. img.Image = "http://www.roblox.com/asset/?id=795137454"
  33. function c1(txt)
  34. local a = Instance.new("TextButton",box)
  35. a.Name = (txt)
  36. a.Size = UDim2.new(0,150,0,40)
  37. a.Position = UDim2.new(0,15,0,pos1)
  38. a.BackgroundColor3 = Color3.new(200/255,200/255,200/255)
  39. a.BackgroundTransparency = 0.1
  40. a.BorderSizePixel = 0
  41. a.Font = "Fantasy"
  42. a.TextSize = 20
  43. a.FontSize = "Size24"
  44. a.Text = (txt)
  45. a.TextColor3 = Color3.new(0,0,0)
  46. a.ZIndex = 4
  47. pos1 = pos1+43
  48. return a
  49. end
  50. pos2 = 28
  51. function c2(txt)
  52. local a = Instance.new("TextButton",box)
  53. a.Name = (txt)
  54. a.Size = UDim2.new(0,150,0,40)
  55. a.Position = UDim2.new(0,170,0,pos2)
  56. a.BackgroundColor3 = Color3.new(200/255,200/255,200/255)
  57. a.BackgroundTransparency = 0.1
  58. a.BorderSizePixel = 0
  59. a.Font = "Fantasy"
  60. a.TextSize = 20
  61. a.FontSize = "Size24"
  62. a.ZIndex = 4
  63. a.Text = (txt)
  64. a.TextColor3 = Color3.new(0,0,0)
  65. pos2 = pos2+43
  66. return a
  67. end
  68. prnt = c1("Walk Speed +40")
  69. prnt.MouseButton1Down:connect(function()
  70. top.Text = "+40 Speed Activated"
  71. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 40
  72. end)
  73. prnt = c2("Tp to Low Rank Aogiri Member")
  74. prnt.TextScaled = true
  75. prnt.MouseButton1Down:connect(function()
  76. top.TextScaled = true
  77. top.Text = "TP to all Aogiri Activated"
  78. repeat wait()
  79. for _,v in ipairs(game.Workspace.HumanSpawns:GetChildren()) do
  80. if v:FindFirstChild("Low Rank Aogiri Member") and v["Low Rank Aogiri Member"]:FindFirstChild("HumanoidRootPart") then
  81. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v["Low Rank Aogiri Member"].HumanoidRootPart.CFrame
  82. end
  83. end
  84. until script == nil
  85. end)
  86. prnt = c2("Tp to Rank 2 Investigator")
  87. prnt.TextScaled = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement