View difference between Paste ID: evEnBqBV and iuvxzc0m
SHOW: | | - or go back to the newest paste.
1
2-
USE ONE AT A TIME.
2+
3-
Also, change "PLAYERNAME" with your ROBLOX username.
3+
4-
(Forgot how the Companions one works, sorry.)
4+
5
Code:
6
game.Players.LocalPlayer.Backpack.keyinput:FireServer("changestat", "ryo", 99999999)
7
Code:
8
game.Players.LocalPlayer.Backpack.keyinput:FireServer("changestat", "ryo2", 99999999)
9
(Remove Code:)
10
Spins:
11
game.Players.DeltaDminor.Backpack.keyinput:FireServer("changestat", "spins", 2145483647)
12
Green Coins:
13
game.Players.DeltaDminor.Backpack.keyinput:FireServer("changestat", "ryo1", 2145483647)
14
Gold Coins:
15
game.Players.DeltaDminor.Backpack.keyinput:FireServer("changestat", "ryo2", 2145483647)
16
EXP:
17
while wait(1) do
18
game.Players.DeltaDminor.Backpack.keyinput:FireServer("changestat", "exp", 10000000)
19
end
20
Companions:
21
game.Players.DeltaDminor.Backpack.keyinput:FireServer("changestat", "comp", "pain")
22
Bounty:
23
game.Players.DeltaDminor.Backpack.keyinput:FireServer("changestat", "bounty", 10000)
24
GUI!:
25
--Define le values list by victiny1223
26
players = game:GetService('Players')
27
lplr = players.LocalPlayer
28
lchar = lplr.Character
29
lhum = lchar:FindFirstChild("Humanoid")
30
lrootpart = lchar:FindFirstChild("HumanoidRootPart")
31
backpack = lplr.Backpack
32
v3 = Vector3.new
33
cf = CFrame
34
create = Instance.new
35
pgui = game.CoreGui
36
contextActionService = game.ContextActionService
37
38
-- Objects
39
40
local ShinobiLifeGui = Instance.new("ScreenGui")
41
local MainFrame = Instance.new("ScrollingFrame")
42
local TitleLabel = Instance.new("TextLabel")
43
local Underlining = Instance.new("Frame")
44
local InfoChangestat = Instance.new("TextLabel")
45
local Underlining_2 = Instance.new("Frame")
46
local ChangestatStat = Instance.new("TextBox")
47
local ChangestatValue = Instance.new("TextBox")
48
local ChangestatExecute = Instance.new("TextButton")
49
local AutoHit = Instance.new("TextButton")
50
local InfoAutoHit = Instance.new("TextLabel")
51
local Underlining_3 = Instance.new("Frame")
52
53
-- Properties
54
55
ShinobiLifeGui.Name = "Shinobi Life Gui"
56
ShinobiLifeGui.Parent = pgui
57
58
MainFrame.Name = "MainFrame"
59
MainFrame.Parent = ShinobiLifeGui
60
MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
61
MainFrame.Active = true
62
MainFrame.Draggable = true
63
MainFrame.BackgroundTransparency = 0.25
64
MainFrame.BorderColor3 = Color3.new(0.690196, 0.690196, 0.690196)
65
MainFrame.Position = UDim2.new(0.745000005, 0, 0.745000005, 0)
66
MainFrame.Size = UDim2.new(0.25, 0, 0.25, 0)
67
MainFrame.ScrollBarThickness = 7
68
69
TitleLabel.Name = "TitleLabel"
70
TitleLabel.Parent = MainFrame
71
TitleLabel.BackgroundColor3 = Color3.new(1, 1, 1)
72
TitleLabel.BackgroundTransparency = 1
73
TitleLabel.Size = UDim2.new(1, 0, 0.0250000004, 0)
74
TitleLabel.Font = Enum.Font.Fantasy
75
TitleLabel.FontSize = Enum.FontSize.Size14
76
TitleLabel.Text = "Shinobi Life Gui"
77
TitleLabel.TextColor3 = Color3.new(1, 1, 1)
78
TitleLabel.TextScaled = true
79
TitleLabel.TextSize = 14
80
TitleLabel.TextStrokeTransparency = 0.25
81
TitleLabel.TextWrapped = true
82
83
Underlining.Name = "Underlining"
84
Underlining.Parent = TitleLabel
85
Underlining.BackgroundColor3 = Color3.new(1, 1, 1)
86
Underlining.BackgroundTransparency = 0.25
87
Underlining.BorderColor3 = Color3.new(0, 0, 0)
88
Underlining.Position = UDim2.new(0.0500000007, 0, 0.899999976, 0)
89
Underlining.Size = UDim2.new(0.899999976, 0, 0.0250000004, 0)
90
91
InfoChangestat.Name = "Info/Changestat"
92
InfoChangestat.Parent = MainFrame
93
InfoChangestat.BackgroundColor3 = Color3.new(1, 1, 1)
94
InfoChangestat.BackgroundTransparency = 1
95
InfoChangestat.Position = UDim2.new(0.0500000007, 0, 0.0299999993, 0)
96
InfoChangestat.Size = UDim2.new(0.899999976, 0, 0.0149999997, 0)
97
InfoChangestat.Font = Enum.Font.Fantasy
98
InfoChangestat.FontSize = Enum.FontSize.Size14
99
InfoChangestat.Text = "Changestat"
100
InfoChangestat.TextColor3 = Color3.new(1, 1, 1)
101
InfoChangestat.TextScaled = true
102
InfoChangestat.TextSize = 14
103
InfoChangestat.TextStrokeTransparency = 0.25
104
InfoChangestat.TextWrapped = true
105
106
Underlining_2.Name = "Underlining"
107
Underlining_2.Parent = InfoChangestat
108
Underlining_2.BackgroundColor3 = Color3.new(1, 1, 1)
109
Underlining_2.Position = UDim2.new(0.0500000007, 0, 1, 0)
110
Underlining_2.Size = UDim2.new(0.899999976, 0, 0.0250000004, 0)
111
112
ChangestatStat.Name = "Changestat/Stat"
113
ChangestatStat.Parent = MainFrame
114
ChangestatStat.BackgroundColor3 = Color3.new(1, 1, 1)
115
ChangestatStat.BackgroundTransparency = 0.25
116
ChangestatStat.BorderSizePixel = 0
117
ChangestatStat.Position = UDim2.new(0.0500000007, 0, 0.0500000007, 0)
118
ChangestatStat.Size = UDim2.new(0.400000006, 0, 0.0250000004, 0)
119
ChangestatStat.Font = Enum.Font.Fantasy
120
ChangestatStat.FontSize = Enum.FontSize.Size14
121
ChangestatStat.Text = "Stat"
122
ChangestatStat.TextColor3 = Color3.new(1, 1, 1)
123
ChangestatStat.TextScaled = true
124
ChangestatStat.TextSize = 14
125
ChangestatStat.TextStrokeTransparency = 0.40000000596046
126
ChangestatStat.TextWrapped = true
127
128
ChangestatValue.Name = "Changestat/Value"
129
ChangestatValue.Parent = MainFrame
130
ChangestatValue.BackgroundColor3 = Color3.new(1, 1, 1)
131
ChangestatValue.BackgroundTransparency = 0.25
132
ChangestatValue.BorderSizePixel = 0
133
ChangestatValue.Position = UDim2.new(0.524999976, 0, 0.0500000007, 0)
134
ChangestatValue.Size = UDim2.new(0.400000006, 0, 0.0250000004, 0)
135
ChangestatValue.Font = Enum.Font.Fantasy
136
ChangestatValue.FontSize = Enum.FontSize.Size14
137
ChangestatValue.Text = "Value"
138
ChangestatValue.TextColor3 = Color3.new(1, 1, 1)
139
ChangestatValue.TextScaled = true
140
ChangestatValue.TextSize = 14
141
ChangestatValue.TextStrokeTransparency = 0.40000000596046
142
ChangestatValue.TextWrapped = true
143
144
ChangestatExecute.Name = "Changestat/Execute"
145
ChangestatExecute.Parent = MainFrame
146
ChangestatExecute.BackgroundColor3 = Color3.new(1, 1, 1)
147
ChangestatExecute.BackgroundTransparency = 0.25
148
ChangestatExecute.BorderSizePixel = 0
149
ChangestatExecute.Position = UDim2.new(0.0500000007, 0, 0.0799999982, 0)
150
ChangestatExecute.Size = UDim2.new(0.875, 0, 0.0149999997, 0)
151
ChangestatExecute.Font = Enum.Font.Fantasy
152
ChangestatExecute.FontSize = Enum.FontSize.Size14
153
ChangestatExecute.Text = "Change"
154
ChangestatExecute.TextColor3 = Color3.new(1, 1, 1)
155
ChangestatExecute.TextScaled = true
156
ChangestatExecute.TextSize = 14
157
ChangestatExecute.TextStrokeTransparency = 0.25
158
ChangestatExecute.TextWrapped = true
159
160
AutoHit.Name = "AutoHit"
161
AutoHit.Parent = MainFrame
162
AutoHit.BackgroundColor3 = Color3.new(1, 1, 1)
163
AutoHit.BackgroundTransparency = 0.25
164
AutoHit.BorderSizePixel = 0
165
AutoHit.Position = UDim2.new(0.0500000007, 0, 0.119999997, 0)
166
AutoHit.Size = UDim2.new(0.875, 0, 0.0175, 0)
167
AutoHit.Font = Enum.Font.Fantasy
168
AutoHit.FontSize = Enum.FontSize.Size14
169
AutoHit.Text = "Activate AutoHit"
170
AutoHit.TextColor3 = Color3.new(1, 1, 1)
171
AutoHit.TextScaled = true
172
AutoHit.TextSize = 14
173
AutoHit.TextStrokeTransparency = 0.25
174
AutoHit.TextWrapped = true
175
176
InfoAutoHit.Name = "Info/AutoHit"
177
InfoAutoHit.Parent = MainFrame
178
InfoAutoHit.BackgroundColor3 = Color3.new(1, 1, 1)
179
InfoAutoHit.BackgroundTransparency = 1
180
InfoAutoHit.Position = UDim2.new(0.0500000007, 0, 0.100000001, 0)
181
InfoAutoHit.Size = UDim2.new(0.899999976, 0, 0.0149999997, 0)
182
InfoAutoHit.Font = Enum.Font.Fantasy
183
InfoAutoHit.FontSize = Enum.FontSize.Size14
184
InfoAutoHit.Text = "AutoHit"
185
InfoAutoHit.TextColor3 = Color3.new(1, 1, 1)
186
InfoAutoHit.TextScaled = true
187
InfoAutoHit.TextSize = 14
188
InfoAutoHit.TextStrokeTransparency = 0.25
189
InfoAutoHit.TextWrapped = true
190
191
Underlining_3.Name = "Underlining"
192
Underlining_3.Parent = InfoAutoHit
193
Underlining_3.BackgroundColor3 = Color3.new(1, 1, 1)
194
Underlining_3.Position = UDim2.new(0.0500000007, 0, 1, 0)
195
Underlining_3.Size = UDim2.new(0.899999976, 0, 0.0250000004, 0)
196
197
--[[Script Variables]]--
198
prefix = Enum.KeyCode.Quote
199
autohit_enabled = false
200
gui_enabled = true
201
202
--[[Inputs]]--
203
function SlideGui(actionName, inputState, inputObject)
204
	if inputState == Enum.UserInputState.Begin then
205
		if gui_enabled == true then
206
			MainFrame:TweenPosition(UDim2.new(-0.25, 0, .745, 0), 'In', 'Quad')
207
			gui_enabled = false
208
		elseif gui_enabled == false then
209
			MainFrame:TweenPosition(UDim2.new(.745, 0, .745, 0), 'Out', 'Quad')
210
			gui_enabled = true
211
		end
212
	end
213
end
214
contextActionService:BindAction('SlideGUI', SlideGui, false, prefix)
215
216
--[[Buttons]]--
217
ChangestatExecute.MouseButton1Down:connect(function()
218
	local stat = ChangestatStat.Text:match('(%a+)')
219
	local value = ChangestatValue.Text:match('(.+)')
220
	local numvalue = tonumber(value)
221
	if stat:lower() == 'exp' then
222
		local function exp()
223
			while wait(1) do
224
				backpack.keyinput:FireServer("changestat", "exp", 10000000)
225
			end
226
		end
227
		local expCoroutine = coroutine.create(exp)
228
		coroutine.resume(expCoroutine)
229
	elseif stat:lower() == 'lvl' and numvalue then
230
		backpack.keyinput:FireServer("changestat", "lvl", numvalue)
231
	elseif stat:lower() == 'bounty' and numvalue then
232
		backpack.keyinput:FireServer("changestat", "bounty", numvalue)
233
	elseif stat:lower() == 'kekkeigenkai' then
234
		backpack.keyinput:FireServer("changestat", "kg1", value)
235
	elseif stat:lower() == 'money' and numvalue then
236
		backpack.keyinput:FireServer("changestat", "ryo1", numvalue)
237
		backpack.keyinput:FireServer("changestat", "ryo2", numvalue)
238
	elseif stat:lower() == 'companion' then
239
		backpack.keyinput:FireServer("changestat", "comp", value)
240
	elseif stat:lower() == 'spins' then
241
		backpack.keyinput:FireServer("changestat", "spins", numvalue)
242
	elseif stat:lower() == 'exp' then
243
		spawn(function()
244
			while wait(1) do
245
				backpack.keyinput:FireServer("changestat", "exp", 10000000)
246
			end
247
		end)
248
	elseif stat:lower() == 'element' then
249
		backpack.keyinput:FireServer("changeelement", 1, value)
250
	end
251
end)
252
AutoHit.MouseButton1Down:connect(function()
253
	if autohit_enabled == true then
254
		AutoHit.Text = 'Activate AutoHit'
255
		autohit_enabled = false
256
	elseif autohit_enabled == false then
257
		AutoHit.Text = 'Deactivate AutoHit'
258
		autohit_enabled = true
259
	end
260
end)
261
function AutoHitFunc()
262
	while wait() do
263
		if autohit_enabled == true then
264
			game.Players.LocalPlayer.Backpack.keyinput:FireServer("Q")
265
			wait()
266
			game.Players.LocalPlayer.Backpack.keyinput:FireServer("Qend")
267
		end
268
	end
269
end
270
local autohitCoroutine = coroutine.create(AutoHitFunc)
271
coroutine.resume(autohitCoroutine)