Advertisement
TsakaPremium

kry

Oct 30th, 2020 (edited)
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.90 KB | None | 0 0
  1. game.StarterGui:SetCore("SendNotification", {
  2. Title = "Krypto"; -- title of notification
  3. Text = "F9 for cmds"; -- bottom text
  4. Icon = "rbxassetid://5896682283"; -- icon here
  5. Duration = 10; -- how long notification is on screen
  6. })
  7.  
  8. -- instapickupcash
  9.  
  10. local player = game.Players.LocalPlayer
  11. local mouse = player:GetMouse()
  12.  
  13. bind = "x" -- has to be lowercase
  14.  
  15. mouse.KeyDown:connect(function(key)
  16. if key == bind then
  17. local instapickupcash = game:GetService("Workspace").Filter.SpawnedCash.CashDrop1
  18. local Event = game:GetService("ReplicatedStorage").Events["C_DPU"]
  19. Event:FireServer(instapickupcash)
  20. end
  21. end)
  22.  
  23. -- cmds
  24. print("/e krypto [2 know if its loaded]")
  25. print("/e rj [To rejoin]")
  26. print("/e cesp [cash esp]")
  27. print("/e zesp [zone esp]")
  28. print("/e aesp [ATM esp]")
  29. print("/e sesp [Shop esp]")
  30. print("--- Keybinds ---")
  31. print("PRESS X to insta pick up cash")
  32.  
  33. -- cmds
  34.  
  35. -- just so ik its loaded
  36.  
  37. game:GetService("Players").LocalPlayer.Chatted:connect(function(msg)
  38. if (string.lower(msg) == "/e krypto") then
  39. game.StarterGui:SetCore("SendNotification", {
  40. Title = "Krypto"; -- title of notification
  41. Text = "yes its loaded"; -- bottom text
  42. Icon = "rbxassetid://5896682283"; -- icon here
  43. Duration = 2; -- how long notification is on screen
  44. })
  45. end
  46. end)
  47.  
  48. game:GetService("Players").LocalPlayer.Chatted:connect(function(msg)
  49. if (string.lower(msg) == "/e rj") then
  50. game:GetService('TeleportService'):Teleport(game.PlaceId)
  51. end
  52. end)
  53.  
  54. game:GetService("Players").LocalPlayer.Chatted:connect(function(msg)
  55. if (string.lower(msg) == "/e cesp") then
  56. for __,v in pairs(game.Workspace.Map.CashRegisters:GetChildren()) do
  57. if v:IsA("Model") or v:IsA("Part") or v:IsA("MeshPart") then
  58. local a = Instance.new("BillboardGui",v)
  59. a.Size = UDim2.new(1,0, 1,0)
  60. a.Name = "A"
  61. a.AlwaysOnTop = true
  62. local b = Instance.new("Frame",a)
  63. b.Size = UDim2.new(1,0, 1,0)
  64. b.BackgroundTransparency = 1
  65. b.BorderSizePixel = 1
  66. local c = Instance.new("TextLabel",b)
  67. c.Text = v.Name
  68. c.Size = UDim2.new(1,0, 1,0)
  69. c.BackgroundTransparency = 1
  70. c.BorderSizePixel = 1
  71. end
  72. end
  73. end
  74. end)
  75.  
  76. game:GetService("Players").LocalPlayer.Chatted:connect(function(msg)
  77. if (string.lower(msg) == "/e zesp") then
  78. for __,v in pairs(game.Workspace.Filter.CombatZones:GetChildren()) do
  79. if v:IsA("Model") or v:IsA("Part") or v:IsA("MeshPart") then
  80. local a = Instance.new("BillboardGui",v)
  81. a.Size = UDim2.new(1,0, 1,0)
  82. a.Name = "A"
  83. a.AlwaysOnTop = true
  84. local b = Instance.new("Frame",a)
  85. b.Size = UDim2.new(1,0, 1,0)
  86. b.BackgroundTransparency = 1
  87. b.BorderSizePixel = 1
  88. local c = Instance.new("TextLabel",b)
  89. c.Text = v.Name
  90. c.Size = UDim2.new(1,0, 1,0)
  91. c.BackgroundTransparency = 1
  92. c.BorderSizePixel = 1
  93. end
  94. end
  95. end
  96. end)
  97.  
  98. game:GetService("Players").LocalPlayer.Chatted:connect(function(msg)
  99. if (string.lower(msg) == "/e aesp") then
  100. for __,v in pairs(game.Workspace.Map.ATMs:GetChildren()) do
  101. if v:IsA("Model") or v:IsA("Part") or v:IsA("MeshPart") then
  102. local a = Instance.new("BillboardGui",v)
  103. a.Size = UDim2.new(1,0, 1,0)
  104. a.Name = "A"
  105. a.AlwaysOnTop = true
  106. local b = Instance.new("Frame",a)
  107. b.Size = UDim2.new(1,0, 1,0)
  108. b.BackgroundTransparency = 1
  109. b.BorderSizePixel = 1
  110. local c = Instance.new("TextLabel",b)
  111. c.Text = v.Name
  112. c.Size = UDim2.new(1,0, 1,0)
  113. c.BackgroundTransparency = 1
  114. c.BorderSizePixel = 1
  115. end
  116. end
  117. end
  118. end)
  119.  
  120. game:GetService("Players").LocalPlayer.Chatted:connect(function(msg)
  121. if (string.lower(msg) == "/e sesp") then
  122. for __,v in pairs(game.Workspace.Map.Shops:GetChildren()) do
  123. if v:IsA("Model") or v:IsA("Part") or v:IsA("MeshPart") then
  124. local a = Instance.new("BillboardGui",v)
  125. a.Size = UDim2.new(1,0, 1,0)
  126. a.Name = "A"
  127. a.AlwaysOnTop = true
  128. local b = Instance.new("Frame",a)
  129. b.Size = UDim2.new(1,0, 1,0)
  130. b.BackgroundTransparency = 1
  131. b.BorderSizePixel = 1
  132. local c = Instance.new("TextLabel",b)
  133. c.Text = v.Name
  134. c.Size = UDim2.new(1,0, 1,0)
  135. c.BackgroundTransparency = 1
  136. c.BorderSizePixel = 1
  137. end
  138. end
  139. end
  140. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement