Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.36 KB | None | 0 0
  1. local KiruaGUI = Instance.new("ScreenGui")
  2. KiruaGUI.Name = "KiruaGUI"
  3. KiruaGUI.Parent = game.CoreGui
  4.  
  5. local FrameOne = Instance.new("Frame")
  6. FrameOne.Name = "FrameOne"
  7. FrameOne.Parent = KiruaGUI
  8. FrameOne.Active = true
  9. FrameOne.BackgroundColor3 = Color3.new(195, 226, 239)
  10. FrameOne.BackgroundTransparency = 0.05
  11. FrameOne.Draggable = true
  12. FrameOne.Size = UDim2.new(-0.0255439933, 400, 0.095238097, 200)
  13.  
  14. local Explorer = Instance.new("TextButton")
  15. Explorer.Name = "Explorer"
  16. Explorer.Parent = FrameOne
  17. Explorer.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  18. Explorer.BorderColor3 = Color3.new(0, 0, 0)
  19. Explorer.Position = UDim2.new(0.0199999996, 0, 0.0614583306, 30)
  20. Explorer.Size = UDim2.new(0, 50, 0, 25)
  21. Explorer.Font = Enum.Font.Arial
  22. Explorer.FontSize = Enum.FontSize.Size14
  23. Explorer.Text = "Explorer"
  24. Explorer.TextColor3 = Color3.new()
  25. Explorer.TextScaled = true
  26. Explorer.TextSize = 14
  27. Explorer.TextWrapped = true
  28. Explorer.MouseButton1Click:connect(function()
  29. loadstring(game:GetObjects("rbxassetid://502341914")[1].Source)()
  30. end)
  31.  
  32. local RemoteSpy = Instance.new("TextButton")
  33. RemoteSpy.Name = "RemoteSpy"
  34. RemoteSpy.Parent = FrameOne
  35. RemoteSpy.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  36. RemoteSpy.BorderColor3 = Color3.new(0, 0, 0)
  37. RemoteSpy.Position = UDim2.new(0.0199999996, 0, 0.2, 30)
  38. RemoteSpy.Size = UDim2.new(0, 50, 0, 25)
  39. RemoteSpy.Font = Enum.Font.Arial
  40. RemoteSpy.FontSize = Enum.FontSize.Size14
  41. RemoteSpy.Text = "RemoteSpy"
  42. RemoteSpy.TextColor3 = Color3.new()
  43. RemoteSpy.TextScaled = true
  44. RemoteSpy.TextSize = 14
  45. RemoteSpy.TextWrapped = true
  46. RemoteSpy.MouseButton1Click:connect(function()
  47. loadstring(game:GetObjects("rbxassetid://982417974")[1].Source)()
  48. end)
  49.  
  50. local CfFrame = Instance.new("TextButton")
  51. CfFrame.Name = "CfFrame "
  52. CfFrame.Parent = FrameOne
  53. CfFrame.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  54. CfFrame.BorderColor3 = Color3.new(0, 0, 0)
  55. CfFrame.Position = UDim2.new(0.0199999996, 0, 0.34, 30)
  56. CfFrame.Size = UDim2.new(0, 50, 0, 25)
  57. CfFrame.Font = Enum.Font.Arial
  58. CfFrame.FontSize = Enum.FontSize.Size14
  59. CfFrame.Text = "CFrame"
  60. CfFrame.TextColor3 = Color3.new()
  61. CfFrame.TextScaled = true
  62. CfFrame.TextSize = 14
  63. CfFrame.TextWrapped = true
  64. CfFrame.MouseButton1Click:connect(function()
  65. loadstring(game:GetObjects("rbxassetid://982430678")[1].Source)()
  66. end)
  67.  
  68. local Hello = Instance.new("TextLabel")
  69. Hello.Name = "Hello"
  70. Hello.Parent = FrameOne
  71. Hello.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  72. Hello.BorderColor3 = Color3.new(0, 0, 0)
  73. Hello.Position = UDim2.new(0, 0, 0, 10)
  74. Hello.Size = UDim2.new(0.6, 0.0002, 0.01, 20)
  75. Hello.Font = Enum.Font.Arial
  76. Hello.FontSize = Enum.FontSize.Size14
  77. Hello.Text = "KiruaGUI"
  78. Hello.TextColor3 = Color3.new()
  79. Hello.TextScaled = true
  80. Hello.TextSize = 14
  81. Hello.TextWrapped = true
  82.  
  83. local Teleport = Instance.new("TextButton")
  84. Teleport.Name = "Teleport"
  85. Teleport.Parent = FrameOne
  86. Teleport.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  87. Teleport.BorderColor3 = Color3.new(0, 0, 0)
  88. Teleport.Position = UDim2.new(0.0199999996, 0, 0.49, 30)
  89. Teleport.Size = UDim2.new(0, 50, 0, 25)
  90. Teleport.Font = Enum.Font.Arial
  91. Teleport.FontSize = Enum.FontSize.Size14
  92. Teleport.Text = "Teleport By Pressing F"
  93. Teleport.TextColor3 = Color3.new()
  94. Teleport.TextScaled = true
  95. Teleport.TextSize = 14
  96. Teleport.TextWrapped = true
  97. Teleport.MouseButton1Click:connect(function()
  98. ContextActionService = game:GetService("ContextActionService")
  99. Players = game:GetService("Players")
  100. Part = Players.LocalPlayer.Character.HumanoidRootPart
  101. Mouse = Players.LocalPlayer:GetMouse()
  102.  
  103. function onKeyPress(actionName, userInputState, inputObject)
  104. Part.CFrame = CFrame.new(Mouse.Hit.x, Mouse.Hit.y + 3, Mouse.Hit.z)
  105. end
  106.  
  107. ContextActionService:BindAction("keyPress", onKeyPress, false, "f")
  108. end)
  109.  
  110.  
  111. local Exit = Instance.new("TextButton")
  112. Exit.Name = "Exit"
  113. Exit.Parent = FrameOne
  114. Exit.BackgroundColor3 = Color3.new(23, 83, 99)
  115. Exit.BorderColor3 = Color3.new(0, 0, 0)
  116. Exit.Position = UDim2.new(0.0160857905, 1, 0.676767647, 30)
  117. Exit.Size = UDim2.new(0.308310986, 50, -0.0151515156, 25)
  118. Exit.ZIndex = 4
  119. Exit.Font = Enum.Font.Arial
  120. Exit.FontSize = Enum.FontSize.Size14
  121. Exit.Text = "Close"
  122. Exit.TextColor3 = Color3.new()
  123. Exit.TextScaled = true
  124. Exit.TextSize = 14
  125. Exit.TextWrapped = true
  126. Exit.MouseButton1Click:connect(function()
  127. KiruaGUI:Destroy()
  128. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement