Advertisement
Guest User

Untitled

a guest
Jan 21st, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.11 KB | None | 0 0
  1. local service = setmetatable({}, {
  2. __index = function(t, k)
  3. return game:GetService(k)
  4. end
  5. })
  6.  
  7. local Walk=200
  8. local Jump=200
  9. function config()
  10. game.Players.LocalPlayer.Character.Humanoid.Name = "1"
  11. local l = game.Players.LocalPlayer.Character["1"]
  12. l.Parent = game.Players.LocalPlayer.Character
  13. l.Name = "Humanoid"
  14. wait(0.1)
  15. game.Players.LocalPlayer.Character["1"]:Destroy()
  16. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  17. game.Players.LocalPlayer.Character.Animate.Disabled = true
  18. l.Changed:Connect(function()
  19. if l then
  20. l.WalkSpeed=Walk
  21. l.JumpPower=Jump
  22. end
  23. end)
  24. end
  25.  
  26. -- Objects
  27.  
  28. local LT2Dupe = Instance.new("ScreenGui")
  29. local loginframe = Instance.new("Frame")
  30. local loginsign = Instance.new("TextLabel")
  31. local logincredits = Instance.new("TextLabel")
  32. local password = Instance.new("TextBox")
  33. local username = Instance.new("TextBox")
  34. local loginbutton = Instance.new("TextButton")
  35. local scriptsframe = Instance.new("Frame")
  36. local lt2dupegui = Instance.new("TextLabel")
  37. local speed = Instance.new("TextButton")
  38. local tpplanks = Instance.new("TextButton")
  39. local sellplanks = Instance.new("TextButton")
  40. local dupe = Instance.new("TextButton")
  41. local jpower = Instance.new("TextButton")
  42.  
  43. -- Properties
  44.  
  45. LT2Dupe.Name = "LT2 Dupe"
  46. LT2Dupe.Parent = game.CoreGui
  47.  
  48. loginframe.Name = "loginframe"
  49. loginframe.Parent = LT2Dupe
  50. loginframe.BackgroundColor3 = Color3.new(1, 1, 1)
  51. loginframe.BorderSizePixel = 0
  52. loginframe.Draggable = true
  53. loginframe.Position = UDim2.new(0.282097638, 0, 0.123342216, 0)
  54. loginframe.Selectable = true
  55. loginframe.Size = UDim2.new(0, 204, 0, 284)
  56. loginframe.Style = Enum.FrameStyle.RobloxRound
  57.  
  58. loginsign.Name = "loginsign"
  59. loginsign.Parent = loginframe
  60. loginsign.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  61. loginsign.BorderSizePixel = 0
  62. loginsign.Position = UDim2.new(0.0147058833, 0, 0.0281690136, 0)
  63. loginsign.Size = UDim2.new(0, 182, 0, 50)
  64. loginsign.Font = Enum.Font.SciFi
  65. loginsign.FontSize = Enum.FontSize.Size14
  66. loginsign.Text = "Login"
  67. loginsign.TextColor3 = Color3.new(1, 0, 0.0156863)
  68. loginsign.TextScaled = true
  69. loginsign.TextSize = 14
  70. loginsign.TextWrapped = true
  71.  
  72. logincredits.Name = "logincredits"
  73. logincredits.Parent = loginframe
  74. logincredits.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  75. logincredits.BorderSizePixel = 0
  76. logincredits.Position = UDim2.new(0, 0, 0.943661988, 0)
  77. logincredits.Size = UDim2.new(0, 190, 0, 14)
  78. logincredits.Font = Enum.Font.Arial
  79. logincredits.FontSize = Enum.FontSize.Size32
  80. logincredits.Text = "Credits: KevinPlayLT2"
  81. logincredits.TextColor3 = Color3.new(1, 1, 1)
  82. logincredits.TextScaled = true
  83. logincredits.TextSize = 30
  84. logincredits.TextWrapped = true
  85.  
  86. password.Name = "password"
  87. password.Parent = loginframe
  88. password.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  89. password.Position = UDim2.new(0.125, 0, 0.556338012, 0)
  90. password.Size = UDim2.new(0, 141, 0, 40)
  91. password.Font = Enum.Font.Bodoni
  92. password.FontSize = Enum.FontSize.Size28
  93. password.Text = "Password"
  94. password.TextColor3 = Color3.new(0.14902, 0, 1)
  95. password.TextSize = 25
  96. password.TextWrapped = true
  97.  
  98. username.Name = "username"
  99. username.Parent = loginframe
  100. username.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  101. username.Position = UDim2.new(0.127450988, 0, 0.28873238, 0)
  102. username.Size = UDim2.new(0, 141, 0, 40)
  103. username.Font = Enum.Font.Bodoni
  104. username.FontSize = Enum.FontSize.Size28
  105. username.Text = "Username"
  106. username.TextColor3 = Color3.new(0.14902, 0, 1)
  107. username.TextSize = 25
  108. username.TextWrapped = true
  109.  
  110. loginbutton.Name = "loginbutton"
  111. loginbutton.Parent = loginframe
  112. loginbutton.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  113. loginbutton.Position = UDim2.new(0.208333328, 0, 0.781690121, 0)
  114. loginbutton.Size = UDim2.new(0, 103, 0, 25)
  115. loginbutton.Font = Enum.Font.Bodoni
  116. loginbutton.FontSize = Enum.FontSize.Size14
  117. loginbutton.Text = "Login"
  118. loginbutton.TextColor3 = Color3.new(0.207843, 1, 0.937255)
  119. loginbutton.TextScaled = true
  120. loginbutton.TextSize = 14
  121. loginbutton.TextWrapped = true
  122. loginbutton.MouseButton1Down:connect(function()
  123. if username.Text == "subscribe" and password.Text == "now" then
  124. loginframe.Visible = false
  125. scriptsframe.Visible = true
  126. end
  127. end)
  128.  
  129. scriptsframe.Name = "scriptsframe"
  130. scriptsframe.Parent = LT2Dupe
  131. scriptsframe.Active = true
  132. scriptsframe.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  133. scriptsframe.BorderSizePixel = 0
  134. scriptsframe.Draggable = true
  135. scriptsframe.Position = UDim2.new(0.620253146, 0, 0.0716180801, 0)
  136. scriptsframe.Selectable = true
  137. scriptsframe.Size = UDim2.new(0, 197, 0, 340)
  138. scriptsframe.Visible = false
  139.  
  140. lt2dupegui.Name = "lt2dupegui"
  141. lt2dupegui.Parent = scriptsframe
  142. lt2dupegui.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  143. lt2dupegui.BorderSizePixel = 0
  144. lt2dupegui.Position = UDim2.new(0, 0, -0.00294117653, 0)
  145. lt2dupegui.Size = UDim2.new(0, 197, 0, 56)
  146. lt2dupegui.Font = Enum.Font.SciFi
  147. lt2dupegui.FontSize = Enum.FontSize.Size14
  148. lt2dupegui.Text = "LT2 DupeGui"
  149. lt2dupegui.TextColor3 = Color3.new(1, 0, 0.0156863)
  150. lt2dupegui.TextScaled = true
  151. lt2dupegui.TextSize = 14
  152. lt2dupegui.TextWrapped = true
  153.  
  154. speed.Name = "speed"
  155. speed.Parent = scriptsframe
  156. speed.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  157. speed.BorderSizePixel = 0
  158. speed.Position = UDim2.new(0.0939086303, 0, 0.670588255, 0)
  159. speed.Size = UDim2.new(0, 160, 0, 39)
  160. speed.Font = Enum.Font.Bodoni
  161. speed.FontSize = Enum.FontSize.Size32
  162. speed.Text = "100 Speed"
  163. speed.TextColor3 = Color3.new(0, 0.0980392, 1)
  164. speed.TextSize = 30
  165. speed.MouseButton1Down:connect(function()
  166. while wait()do
  167. service.Players.LocalPlayer.Character.Humanoid.WalkSpeed=Walk
  168. end
  169. end)
  170.  
  171. tpplanks.Name = "tpplanks"
  172. tpplanks.Parent = scriptsframe
  173. tpplanks.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  174. tpplanks.BorderSizePixel = 0
  175. tpplanks.Position = UDim2.new(0.093908608, 0, 0.350000024, 0)
  176. tpplanks.Size = UDim2.new(0, 160, 0, 39)
  177. tpplanks.Font = Enum.Font.Bodoni
  178. tpplanks.FontSize = Enum.FontSize.Size32
  179. tpplanks.Text = "TP Planks"
  180. tpplanks.TextColor3 = Color3.new(0, 0.0980392, 1)
  181. tpplanks.TextSize = 30
  182. tpplanks.MouseButton1Down:connect(function()
  183. for _, Plank in pairs(service.Workspace.PlayerModels:GetChildren()) do
  184. if Plank.Name == "Plank" and Plank.Owner.Value==service.Players.LocalPlayer then
  185. Plank:MoveTo(service.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0, 20, 0))
  186. for i=1,100 do
  187. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  188. end
  189. end
  190. end
  191. end)
  192.  
  193. sellplanks.Name = "sellplanks"
  194. sellplanks.Parent = scriptsframe
  195. sellplanks.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  196. sellplanks.BorderSizePixel = 0
  197. sellplanks.Position = UDim2.new(0.0939086303, 0, 0.505882382, 0)
  198. sellplanks.Size = UDim2.new(0, 160, 0, 39)
  199. sellplanks.Font = Enum.Font.Bodoni
  200. sellplanks.FontSize = Enum.FontSize.Size32
  201. sellplanks.Text = "Sell Planks"
  202. sellplanks.TextColor3 = Color3.new(0, 0.0980392, 1)
  203. sellplanks.TextSize = 30
  204. sellplanks.MouseButton1Down:connect(function()
  205. for _, Plank in pairs(service.Workspace.PlayerModels:GetChildren()) do
  206. if Plank.Name=="Plank" and Plank.Owner.Value==service.Players.LocalPlayer then
  207. for i,v in pairs(Plank:GetChildren()) do
  208. if v.Name=="WoodSection" then
  209. spawn(function()
  210. for i=1,10 do
  211. wait()
  212. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  213. end
  214. end)
  215. end
  216. end
  217. spawn(function()
  218. for i=1,20 do
  219. wait()
  220. service.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Plank)
  221. end
  222. end)
  223. end
  224. end
  225. end)
  226.  
  227. dupe.Name = "dupe"
  228. dupe.Parent = scriptsframe
  229. dupe.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  230. dupe.BorderSizePixel = 0
  231. dupe.Position = UDim2.new(0.0939086676, 0, 0.200000003, 0)
  232. dupe.Size = UDim2.new(0, 160, 0, 39)
  233. dupe.Font = Enum.Font.Bodoni
  234. dupe.FontSize = Enum.FontSize.Size32
  235. dupe.Text = "Dupe"
  236. dupe.TextColor3 = Color3.new(0, 0.0980392, 1)
  237. dupe.TextSize = 30
  238. dupe.MouseButton1Down:connect(function()
  239. local option = true
  240.  
  241. a = game.Players.LocalPlayer.CurrentSaveSlot
  242. a.RobloxLocked = option
  243. a.Set.RobloxLocked = option
  244. print(a.Value)
  245.  
  246. if a.RobloxLocked == true then
  247. print("CurrentSaveSlot RobloxLocked = true, save file won't save")
  248. print("Set RobloxLocked = true, save file won't save")
  249.  
  250. else
  251.  
  252. print("CurrentSaveSlot RobloxLocked = false, save file will save")
  253. print("Set RobloxLocked = false, save file will save")
  254. end
  255. end)
  256.  
  257. jpower.Name = "jpower"
  258. jpower.Parent = scriptsframe
  259. jpower.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  260. jpower.BorderSizePixel = 0
  261. jpower.Position = UDim2.new(0.0939086303, 0, 0.832352936, 0)
  262. jpower.Size = UDim2.new(0, 160, 0, 39)
  263. jpower.Font = Enum.Font.Bodoni
  264. jpower.FontSize = Enum.FontSize.Size32
  265. jpower.Text = "Jump High"
  266. jpower.TextColor3 = Color3.new(0, 0.0980392, 1)
  267. jpower.TextSize = 30
  268. jpower.MouseButton1Down:connect(function()
  269. while wait()do
  270. service.Players.LocalPlayer.Character.Humanoid.JumpPower=Jump
  271. end
  272. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement