Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Tp Script:
- Code:
- -- Settings
- local targets = {
- ["Immortal Bone Lord"] = CFrame.new(418.845795, 301.952881, -87.0185776);
- ["The Bone Lord"] = CFrame.new(1252.41711, 634.311829, 1296.42688);
- ["The Currupted Bone Lord"] = CFrame.new(889.415344, 134.573166, -796.304321);
- ["The Bone Lord's Son"] = CFrame.new(-3207.92969, -22.9497356, -46.0395622);
- ["Togarmah Bone Lord"] = CFrame.new(-1655.9231, 272.089569, -953.731018);
- ["Titan Volcanus"] = CFrame.new(-307.934082, 468.891418, 1169.38232);
- ["Titan Fulmen"] = CFrame.new(-320.062347, 468.891418, 1735.12219);
- ["Titan Glacies"] = CFrame.new(-328.104004, 468.891418, 2224.52539);
- ["Titan Terra"] = CFrame.new(-332.205444, 468.891418, 2689.16235);
- ["Titan Venenum"] = CFrame.new(-1880.53491, 362.692108, 2665.90332);
- ["Titan Inanis"] = CFrame.new(-308.255737, 492.378632, 3282.45044);
- ["Horseless Headman"] = CFrame.new(1111.41504, 530.446716, -1707.05554);
- ["GOD"] = CFrame.new(2298.39258, 303.93866, -892.633179);
- ["DEVIL"] = CFrame.new(2251.33643, 462.782562, -445.206116);
- ["3tcyGDh8a57eKYasvw2haG9tWAr8qpZsXc8WGwT17s"] = CFrame.new(1668.94775, 241.221237, 109.730064);
- ["Neon Boss"] = CFrame.new(-151.036209, 772.825745, 452.247253);
- ["The Sun"] = CFrame.new(885.015381, 321.131439, 2312.57153);
- ["Rezokar, Ex-Dev"] = CFrame.new(1279.10474, 613.814575, 2009.51587);
- ["The Loyal King"] = CFrame.new(-1080.84448, 1290.51184, 368.369141);
- }
- -- UI Library
- local library = loadstring(game:HttpGetAsync('https://pastebin.com/raw/edJT9EGX'))()
- local window = library:CreateWindow("TP To Bosses")
- window:AddLabel({text="Click To TP A Boss"})
- for i,v in pairs(targets) do
- window:AddButton({text=i,callback=function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v
- end})
- end
- library:Init()
- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
- Bonus Sword Reach Script:
- Have your sword equipped that you wish to give it extra long reach, you can edit the values on line 34.
- Code:
- local Reach = Instance.new("ScreenGui")
- local ReachButton = Instance.new("TextButton")
- Reach.Name = "Reach"
- Reach.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ReachButton.Name = "ReachButton"
- ReachButton.Parent = Reach
- ReachButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- ReachButton.BackgroundTransparency = 0.30000001192093
- ReachButton.BorderSizePixel = 0
- ReachButton.Position = UDim2.new(0.0591057241, 0, 0.126617789, 0)
- ReachButton.Size = UDim2.new(0, 100, 0, 34)
- ReachButton.Font = Enum.Font.SourceSans
- ReachButton.Text = "Sword Reach"
- ReachButton.TextColor3 = Color3.new(1, 1, 1)
- ReachButton.TextSize = 20
- ReachButton.Draggable = true
- ReachButton.MouseButton1Click:connect(function()
- Players = game:GetService("Players")
- local plr = Players.LocalPlayer
- for i,v in pairs(plr.Character:GetDescendants()) do
- if v:IsA("Tool") then
- currentToolSize = v.Handle.Size
- currentGripPos = v.GripPos
- local a = Instance.new("SelectionBox")
- a.Name = "SelectionBoxCreated"
- a.Parent = v.Handle
- a.Adornee = v.Handle
- v.Handle.Massless = true
- v.Handle.CanCollide = false
- v.Handle.Size = Vector3.new(20,5,1100)
- v.GripPos = Vector3.new(0,0,0)
- plr.Character.Humanoid:UnequipTools()
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement