-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnipe
More file actions
147 lines (122 loc) · 4.36 KB
/
snipe
File metadata and controls
147 lines (122 loc) · 4.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
getgenv().SecureMode = true
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "misc bbr script",
LoadingTitle = "hope you are better than your opponent",
LoadingSubtitle = "-some guy 1500 years ago",
ConfigurationSaving = {
Enabled = true,
FolderName = nil, -- Create a custom folder for your hub/game
FileName = "Big Hub"
},
Discord = {
Enabled = false,
Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
RememberJoins = true -- Set this to false to make them join the discord every time they load it up
},
KeySystem = false, -- Set this to true to use our key system
KeySettings = {
Title = "Untitled",
Subtitle = "Key System",
Note = "No method of obtaining the key is provided",
FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
Key = {"Hello"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
}
})
local Tab = Window:CreateTab("bbr things", 4483362458) -- Title, Image
local Button = Tab:CreateButton({
Name = "autosnipe",
Callback = function()
while wait() do
local args = {
[1] = "launch",
[2] = 0.0000000000001,
}
game:GetService("ReplicatedStorage"):WaitForChild("event"):FireServer(unpack(args))
wait(0.4)
local args = {
[1] = "skill",
[2] = 0.00000000000000001,
[3] = 1
}
game:GetService("ReplicatedStorage"):WaitForChild("func"):InvokeServer(unpack(args))
wait()
end
end,
})
local Button = Tab:CreateButton({
Name = "auto tower",
Callback = function()
--// Exploit Check \--
if #{firetouchinterest, isnetworkowner} ~= 2 then
while true do
end
end
--// Services \--
local Workspace = game:GetService("Workspace")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Players = game:GetService("Players")
--// Variables \--
local Player = Players.LocalPlayer
local Event = ReplicatedStorage:WaitForChild("event")
local Trainer = require(ReplicatedStorage:WaitForChild("trainer"))
local Events = require(Player:WaitForChild("PlayerGui"):WaitForChild("framework"):WaitForChild("events"))
--// Folders \--
local Beys = Workspace:WaitForChild("beyblades")
local Battles = Workspace:WaitForChild("battles")
local Specials = Workspace:WaitForChild("specials")
--// Get Beyblade \--
function GetBey()
local Bey = Beys:FindFirstChild(Player.Name)
if Bey and Bey.PrimaryPart then
return Bey
end
return false
end
--// Restart Battle \--
Battles.ChildRemoved:Connect(function(A_1)
if A_1.Name == Player.Name .. "_Target" then
wait()
Event:FireServer("BattleTower")
end
end)
--// Start Battle \--
Event:FireServer("BattleTower")
--// End Battle \--
Events.TrainerBattleResult = function()
wait()
Trainer.close()
end
--// KillAura \--
while wait(0.1) do
-- Check farming conditions
local Bey = GetBey()
if Bey then
-- Attack Target
while Bey.Parent and wait() do
local Enemy = Beys:FindFirstChild(Player.Name .. "_Target")
if Enemy and Enemy.PrimaryPart and isnetworkowner(Enemy.PrimaryPart) then
pcall(function()
Enemy:FindFirstChildOfClass("Humanoid").Health = 0
end)
end
end
end
end
end,
})
local Tab = Window:CreateTab("misc", 4483362458) -- Title, Image
local Button = Tab:CreateButton({
Name = "infinite yield",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source", true))()
end,
})
local Button = Tab:CreateButton({
Name = "destroy gui",
Callback = function()
Rayfield:Destroy()
end,
})